diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 11e69e2a13..71a1f32da1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -90,7 +90,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - - name: Create Jars + - name: Create Jars for JNet run: mvn --file ./src/jvm/jnet/pom.xml --no-transfer-progress package env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 41e0a8e16e..a0e0d9375c 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -38,7 +38,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - - name: Create Jars + - name: Create Jars for JNet run: mvn --file ./src/jvm/jnet/pom.xml --no-transfer-progress package env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} diff --git a/.github/workflows/generateclasses.yaml b/.github/workflows/generateclasses.yaml index a72ae3aded..8389f3a61c 100644 --- a/.github/workflows/generateclasses.yaml +++ b/.github/workflows/generateclasses.yaml @@ -47,7 +47,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - - name: Create Jars + - name: Create Jars for JNet run: mvn "-Djcobridgepath=../../../binReflector/net8.0/JCOBridge.jar" --file ./src/jvm/jnet/pom.xml --no-transfer-progress package env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} @@ -58,7 +58,9 @@ jobs: run: Remove-Item .\src\net\JNet\Generated\* -Recurse -Force -Exclude README.md - name: Clear Java generated files - run: Remove-Item .\src\jvm\jnet\src\main\java\org\mases\jnet\generated\* -Recurse -Force -Exclude README.md + run: | + Remove-Item .\src\jvm\jnetcore\src\main\java\org\mases\jnet\generated\* -Recurse -Force -Exclude README.md + Remove-Item .\src\jvm\jnet\src\main\java\org\mases\jnet\generated\* -Recurse -Force -Exclude README.md - run: dotnet build --no-incremental --configuration Release src\net\JNetReflector\JNetReflector.csproj @@ -75,13 +77,13 @@ jobs: run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030%3B0618" src\net\JNet.sln - name: Extract commit SHA - if: ${{ github.repository_owner == 'masesgroup' && inputs.GeneratePR == true }} + if: ${{ inputs.GeneratePR == true }} run: | echo "GITHUB_COMMIT_MESSAGE=$(echo $GITHUB_SHA | cut -c 1-7)" >> $GITHUB_ENV shell: bash - name: Request a PR to commit changes - if: ${{ github.repository_owner == 'masesgroup' && inputs.GeneratePR == true }} #do not push any changes outside main repo or GeneratePR is false + if: ${{ inputs.GeneratePR == true }} uses: peter-evans/create-pull-request@v6 with: branch-suffix: short-commit-hash diff --git a/.github/workflows/pullrequest.yaml b/.github/workflows/pullrequest.yaml index e7682576a4..d300a66bf2 100644 --- a/.github/workflows/pullrequest.yaml +++ b/.github/workflows/pullrequest.yaml @@ -90,7 +90,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - - name: Create Jars + - name: Create Jars for JNet run: mvn --file ./src/jvm/jnet/pom.xml --no-transfer-progress package env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} @@ -139,7 +139,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - - name: Create Jars + - name: Create Jars for JNet run: mvn --file ./src/jvm/jnet/pom.xml --no-transfer-progress package env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ca3dd028f7..1b060a4852 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -45,7 +45,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase - - name: Create Jars + - name: Create Jars for JNet run: mvn --file ./src/jvm/jnet/pom.xml --no-transfer-progress package env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} diff --git a/src/jvm/jnet/src/main/java/org/mases/jnet/developed/java/lang/UncaughtExceptionHandler.java b/src/jvm/jnet/src/main/java/org/mases/jnet/developed/java/lang/Thread_UncaughtExceptionHandler.java similarity index 79% rename from src/jvm/jnet/src/main/java/org/mases/jnet/developed/java/lang/UncaughtExceptionHandler.java rename to src/jvm/jnet/src/main/java/org/mases/jnet/developed/java/lang/Thread_UncaughtExceptionHandler.java index 548142aa12..c0ca8eee8f 100644 --- a/src/jvm/jnet/src/main/java/org/mases/jnet/developed/java/lang/UncaughtExceptionHandler.java +++ b/src/jvm/jnet/src/main/java/org/mases/jnet/developed/java/lang/Thread_UncaughtExceptionHandler.java @@ -23,11 +23,11 @@ import org.mases.jcobridge.JCObject; /** - * The {@link UncaughtExceptionHandler} class represents a generic implementation of + * The {@link Thread_UncaughtExceptionHandler} class represents a generic implementation of * {@link Thread.UncaughtExceptionHandler} */ -public class UncaughtExceptionHandler extends JCListener implements Thread.UncaughtExceptionHandler { - public UncaughtExceptionHandler(String key) throws JCNativeException { +public class Thread_UncaughtExceptionHandler extends JCListener implements Thread.UncaughtExceptionHandler { + public Thread_UncaughtExceptionHandler(String key) throws JCNativeException { super(key); } diff --git a/src/jvm/jnet/src/main/java/org/mases/jnet/generated/README.md b/src/jvm/jnet/src/main/java/org/mases/jnet/generated/README.md new file mode 100644 index 0000000000..84ad5853d5 --- /dev/null +++ b/src/jvm/jnet/src/main/java/org/mases/jnet/generated/README.md @@ -0,0 +1,3 @@ +## Java Generated classes + +This folder contains the Java classes generated using JNetReflector at the same version of JNet. diff --git a/src/net/JNet/Developed/Java/Lang/Reflect/WildcardType.cs b/src/net/JNet/Developed/Java/Lang/Reflect/WildcardType.cs index 869a6c361e..406043d49c 100644 --- a/src/net/JNet/Developed/Java/Lang/Reflect/WildcardType.cs +++ b/src/net/JNet/Developed/Java/Lang/Reflect/WildcardType.cs @@ -44,5 +44,5 @@ public partial class WildcardType { #endif -} + } } diff --git a/src/net/JNet/Developed/Java/Lang/Thread.cs b/src/net/JNet/Developed/Java/Lang/Thread.cs index 65b870df5c..4a4647adb8 100644 --- a/src/net/JNet/Developed/Java/Lang/Thread.cs +++ b/src/net/JNet/Developed/Java/Lang/Thread.cs @@ -40,7 +40,7 @@ public class UncaughtExceptionHandler : JVMBridgeListener /// /// /// - public override string BridgeClassName => "org.mases.jnet.developed.java.lang.UncaughtExceptionHandler"; + public override string BridgeClassName => "org.mases.jnet.developed.java.lang.Thread_UncaughtExceptionHandler"; /// /// The to be executed diff --git a/src/net/JNet/Generated/Java/Applet/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Applet/AllPackageClasses.cs deleted file mode 100644 index 831c635b31..0000000000 --- a/src/net/JNet/Generated/Java/Applet/AllPackageClasses.cs +++ /dev/null @@ -1,30 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Applet -{ - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/AWTError.cs b/src/net/JNet/Generated/Java/Awt/AWTError.cs index 053e85356f..d71ff15175 100644 --- a/src/net/JNet/Generated/Java/Awt/AWTError.cs +++ b/src/net/JNet/Generated/Java/Awt/AWTError.cs @@ -25,7 +25,24 @@ namespace Java.Awt { - #region AWTError + #region AWTError declaration + /// + /// + /// + public partial class AWTError : Java.Lang.Error + { + const string _bridgeClassName = "java.awt.AWTError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AWTError implementation public partial class AWTError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/AWTEvent.cs b/src/net/JNet/Generated/Java/Awt/AWTEvent.cs index e7c135a519..5ab01c92e3 100644 --- a/src/net/JNet/Generated/Java/Awt/AWTEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/AWTEvent.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region AWTEvent + #region AWTEvent declaration + /// + /// + /// + public partial class AWTEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.awt.AWTEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AWTEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AWTEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AWTEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AWTEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AWTEvent implementation public partial class AWTEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/AWTEventMulticaster.cs b/src/net/JNet/Generated/Java/Awt/AWTEventMulticaster.cs index d7e6708c82..c9da2cbb93 100644 --- a/src/net/JNet/Generated/Java/Awt/AWTEventMulticaster.cs +++ b/src/net/JNet/Generated/Java/Awt/AWTEventMulticaster.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region AWTEventMulticaster + #region AWTEventMulticaster declaration + /// + /// + /// + public partial class AWTEventMulticaster : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.AWTEventMulticaster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AWTEventMulticaster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AWTEventMulticaster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AWTEventMulticaster implementation public partial class AWTEventMulticaster { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/AWTException.cs b/src/net/JNet/Generated/Java/Awt/AWTException.cs index 160c6092f4..7dd6512fbc 100644 --- a/src/net/JNet/Generated/Java/Awt/AWTException.cs +++ b/src/net/JNet/Generated/Java/Awt/AWTException.cs @@ -25,7 +25,24 @@ namespace Java.Awt { - #region AWTException + #region AWTException declaration + /// + /// + /// + public partial class AWTException : Java.Lang.Exception + { + const string _bridgeClassName = "java.awt.AWTException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AWTException implementation public partial class AWTException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/AWTKeyStroke.cs b/src/net/JNet/Generated/Java/Awt/AWTKeyStroke.cs index 9f5ff92363..3bbad1e29f 100644 --- a/src/net/JNet/Generated/Java/Awt/AWTKeyStroke.cs +++ b/src/net/JNet/Generated/Java/Awt/AWTKeyStroke.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region AWTKeyStroke + #region AWTKeyStroke declaration + /// + /// + /// + public partial class AWTKeyStroke : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.AWTKeyStroke"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AWTKeyStroke() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AWTKeyStroke(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AWTKeyStroke implementation public partial class AWTKeyStroke { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/AWTPermission.cs b/src/net/JNet/Generated/Java/Awt/AWTPermission.cs index c7a553e4cc..ff3e076f7f 100644 --- a/src/net/JNet/Generated/Java/Awt/AWTPermission.cs +++ b/src/net/JNet/Generated/Java/Awt/AWTPermission.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region AWTPermission + #region AWTPermission declaration + /// + /// + /// + public partial class AWTPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.awt.AWTPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AWTPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AWTPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AWTPermission implementation public partial class AWTPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ActiveEvent.cs b/src/net/JNet/Generated/Java/Awt/ActiveEvent.cs index 8bb3c6c1b7..149c538df4 100644 --- a/src/net/JNet/Generated/Java/Awt/ActiveEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/ActiveEvent.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region ActiveEvent declaration + /// + /// + /// + public partial class ActiveEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.ActiveEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ActiveEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActiveEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ActiveEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActiveEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IActiveEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IActiveEvent } #endregion - #region ActiveEvent + #region ActiveEvent implementation public partial class ActiveEvent : Java.Awt.IActiveEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Adjustable.cs b/src/net/JNet/Generated/Java/Awt/Adjustable.cs index ce2fd40b8b..0ea7302700 100644 --- a/src/net/JNet/Generated/Java/Awt/Adjustable.cs +++ b/src/net/JNet/Generated/Java/Awt/Adjustable.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region Adjustable declaration + /// + /// + /// + public partial class Adjustable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Adjustable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Adjustable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Adjustable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Adjustable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Adjustable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAdjustable /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IAdjustable } #endregion - #region Adjustable + #region Adjustable implementation public partial class Adjustable : Java.Awt.IAdjustable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/AllPackageClasses.cs deleted file mode 100644 index cbbe2f0b93..0000000000 --- a/src/net/JNet/Generated/Java/Awt/AllPackageClasses.cs +++ /dev/null @@ -1,5853 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt -{ - #region ActiveEvent - /// - /// - /// - public partial class ActiveEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.ActiveEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ActiveEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActiveEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ActiveEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActiveEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Adjustable - /// - /// - /// - public partial class Adjustable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Adjustable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Adjustable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Adjustable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Adjustable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Adjustable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AlphaComposite - /// - /// - /// - public partial class AlphaComposite : Java.Awt.Composite - { - const string _bridgeClassName = "java.awt.AlphaComposite"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AlphaComposite() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AlphaComposite(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AWTError - /// - /// - /// - public partial class AWTError : Java.Lang.Error - { - const string _bridgeClassName = "java.awt.AWTError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AWTEvent - /// - /// - /// - public partial class AWTEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.awt.AWTEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AWTEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AWTEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AWTEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AWTEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AWTEventMulticaster - /// - /// - /// - public partial class AWTEventMulticaster : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.AWTEventMulticaster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AWTEventMulticaster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AWTEventMulticaster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AWTException - /// - /// - /// - public partial class AWTException : Java.Lang.Exception - { - const string _bridgeClassName = "java.awt.AWTException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AWTKeyStroke - /// - /// - /// - public partial class AWTKeyStroke : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.AWTKeyStroke"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AWTKeyStroke() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AWTKeyStroke(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AWTPermission - /// - /// - /// - public partial class AWTPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.awt.AWTPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AWTPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AWTPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicStroke - /// - /// - /// - public partial class BasicStroke : Java.Awt.Stroke - { - const string _bridgeClassName = "java.awt.BasicStroke"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicStroke() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicStroke(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BorderLayout - /// - /// - /// - public partial class BorderLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.BorderLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BorderLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BorderLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferCapabilities - /// - /// - /// - public partial class BufferCapabilities : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.BufferCapabilities"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferCapabilities() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferCapabilities(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FlipContents - /// - /// - /// - public partial class FlipContents : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.BufferCapabilities$FlipContents"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FlipContents() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FlipContents(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Button - /// - /// - /// - public partial class Button : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Button"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Button() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Button(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Canvas - /// - /// - /// - public partial class Canvas : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Canvas"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Canvas() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Canvas(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CardLayout - /// - /// - /// - public partial class CardLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.CardLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CardLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CardLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Checkbox - /// - /// - /// - public partial class Checkbox : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Checkbox"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Checkbox() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Checkbox(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CheckboxGroup - /// - /// - /// - public partial class CheckboxGroup : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.CheckboxGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CheckboxGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CheckboxGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CheckboxMenuItem - /// - /// - /// - public partial class CheckboxMenuItem : Java.Awt.MenuItem - { - const string _bridgeClassName = "java.awt.CheckboxMenuItem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CheckboxMenuItem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CheckboxMenuItem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Choice - /// - /// - /// - public partial class Choice : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Choice"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Choice() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Choice(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Color - /// - /// - /// - public partial class Color : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Color"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Color() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Color(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Component - /// - /// - /// - public partial class Component : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Component"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Component class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Component() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Component class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Component(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BaselineResizeBehavior - /// - /// - /// - public partial class BaselineResizeBehavior : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Component$BaselineResizeBehavior"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BaselineResizeBehavior() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BaselineResizeBehavior(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ComponentOrientation - /// - /// - /// - public partial class ComponentOrientation : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.ComponentOrientation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentOrientation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentOrientation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Composite - /// - /// - /// - public partial class Composite : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Composite"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Composite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Composite() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Composite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Composite(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeContext - /// - /// - /// - public partial class CompositeContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.CompositeContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompositeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompositeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Container - /// - /// - /// - public partial class Container : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Container"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Container() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Container(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ContainerOrderFocusTraversalPolicy - /// - /// - /// - public partial class ContainerOrderFocusTraversalPolicy : Java.Awt.FocusTraversalPolicy - { - const string _bridgeClassName = "java.awt.ContainerOrderFocusTraversalPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ContainerOrderFocusTraversalPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ContainerOrderFocusTraversalPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Cursor - /// - /// - /// - public partial class Cursor : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.Cursor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Cursor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Cursor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultFocusTraversalPolicy - /// - /// - /// - public partial class DefaultFocusTraversalPolicy : Java.Awt.ContainerOrderFocusTraversalPolicy - { - const string _bridgeClassName = "java.awt.DefaultFocusTraversalPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultFocusTraversalPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultFocusTraversalPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultKeyboardFocusManager - /// - /// - /// - public partial class DefaultKeyboardFocusManager : Java.Awt.KeyboardFocusManager - { - const string _bridgeClassName = "java.awt.DefaultKeyboardFocusManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultKeyboardFocusManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultKeyboardFocusManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Desktop - /// - /// - /// - public partial class Desktop : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Desktop"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Desktop() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Desktop(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Action - /// - /// - /// - public partial class Action : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Desktop$Action"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Action() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Action(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Dialog - /// - /// - /// - public partial class Dialog : Java.Awt.Window - { - const string _bridgeClassName = "java.awt.Dialog"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Dialog() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Dialog(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ModalExclusionType - /// - /// - /// - public partial class ModalExclusionType : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Dialog$ModalExclusionType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModalExclusionType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModalExclusionType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ModalityType - /// - /// - /// - public partial class ModalityType : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Dialog$ModalityType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModalityType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModalityType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Dimension - /// - /// - /// - public partial class Dimension : Java.Awt.Geom.Dimension2D - { - const string _bridgeClassName = "java.awt.Dimension"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Dimension() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Dimension(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DisplayMode - /// - /// - /// - public partial class DisplayMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.DisplayMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DisplayMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DisplayMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventQueue - /// - /// - /// - public partial class EventQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.EventQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileDialog - /// - /// - /// - public partial class FileDialog : Java.Awt.Dialog - { - const string _bridgeClassName = "java.awt.FileDialog"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileDialog() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileDialog(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FlowLayout - /// - /// - /// - public partial class FlowLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.FlowLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FlowLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FlowLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FocusTraversalPolicy - /// - /// - /// - public partial class FocusTraversalPolicy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.FocusTraversalPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FocusTraversalPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FocusTraversalPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Font - /// - /// - /// - public partial class Font : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.Font"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Font() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Font(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FontFormatException - /// - /// - /// - public partial class FontFormatException : Java.Lang.Exception - { - const string _bridgeClassName = "java.awt.FontFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FontMetrics - /// - /// - /// - public partial class FontMetrics : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.FontMetrics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FontMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FontMetrics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FontMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FontMetrics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Frame - /// - /// - /// - public partial class Frame : Java.Awt.Window - { - const string _bridgeClassName = "java.awt.Frame"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Frame() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Frame(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GradientPaint - /// - /// - /// - public partial class GradientPaint : Java.Awt.Paint - { - const string _bridgeClassName = "java.awt.GradientPaint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GradientPaint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GradientPaint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Graphics - /// - /// - /// - public partial class Graphics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Graphics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Graphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Graphics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Graphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Graphics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Graphics2D - /// - /// - /// - public partial class Graphics2D : Java.Awt.Graphics - { - const string _bridgeClassName = "java.awt.Graphics2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Graphics2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Graphics2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Graphics2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Graphics2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GraphicsConfigTemplate - /// - /// - /// - public partial class GraphicsConfigTemplate : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.GraphicsConfigTemplate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GraphicsConfigTemplate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsConfigTemplate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GraphicsConfigTemplate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsConfigTemplate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GraphicsConfiguration - /// - /// - /// - public partial class GraphicsConfiguration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.GraphicsConfiguration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GraphicsConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsConfiguration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GraphicsConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsConfiguration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GraphicsDevice - /// - /// - /// - public partial class GraphicsDevice : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.GraphicsDevice"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GraphicsDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsDevice() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GraphicsDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsDevice(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region WindowTranslucency - /// - /// - /// - public partial class WindowTranslucency : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.GraphicsDevice$WindowTranslucency"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WindowTranslucency() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WindowTranslucency(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region GraphicsEnvironment - /// - /// - /// - public partial class GraphicsEnvironment : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.GraphicsEnvironment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GraphicsEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsEnvironment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GraphicsEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicsEnvironment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GridBagConstraints - /// - /// - /// - public partial class GridBagConstraints : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.GridBagConstraints"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GridBagConstraints() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GridBagConstraints(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GridBagLayout - /// - /// - /// - public partial class GridBagLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.GridBagLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GridBagLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GridBagLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GridBagLayoutInfo - /// - /// - /// - public partial class GridBagLayoutInfo : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.GridBagLayoutInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GridBagLayoutInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GridBagLayoutInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GridLayout - /// - /// - /// - public partial class GridLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.GridLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GridLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GridLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HeadlessException - /// - /// - /// - public partial class HeadlessException : Java.Lang.UnsupportedOperationException - { - const string _bridgeClassName = "java.awt.HeadlessException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalComponentStateException - /// - /// - /// - public partial class IllegalComponentStateException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.awt.IllegalComponentStateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Image - /// - /// - /// - public partial class Image : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Image"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Image class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Image() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Image class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Image(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageCapabilities - /// - /// - /// - public partial class ImageCapabilities : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.ImageCapabilities"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageCapabilities() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageCapabilities(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Insets - /// - /// - /// - public partial class Insets : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Insets"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Insets() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Insets(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ItemSelectable - /// - /// - /// - public partial class ItemSelectable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.ItemSelectable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ItemSelectable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ItemSelectable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ItemSelectable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ItemSelectable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobAttributes - /// - /// - /// - public partial class JobAttributes : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.JobAttributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobAttributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobAttributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DefaultSelectionType - /// - /// - /// - public partial class DefaultSelectionType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.JobAttributes$DefaultSelectionType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultSelectionType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultSelectionType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DestinationType - /// - /// - /// - public partial class DestinationType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.JobAttributes$DestinationType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DestinationType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DestinationType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DialogType - /// - /// - /// - public partial class DialogType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.JobAttributes$DialogType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DialogType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DialogType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MultipleDocumentHandlingType - /// - /// - /// - public partial class MultipleDocumentHandlingType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.JobAttributes$MultipleDocumentHandlingType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultipleDocumentHandlingType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultipleDocumentHandlingType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SidesType - /// - /// - /// - public partial class SidesType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.JobAttributes$SidesType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SidesType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SidesType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region KeyboardFocusManager - /// - /// - /// - public partial class KeyboardFocusManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.KeyboardFocusManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyboardFocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyboardFocusManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyboardFocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyboardFocusManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyEventDispatcher - /// - /// - /// - public partial class KeyEventDispatcher : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.KeyEventDispatcher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyEventDispatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyEventDispatcher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyEventDispatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyEventDispatcher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyEventPostProcessor - /// - /// - /// - public partial class KeyEventPostProcessor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.KeyEventPostProcessor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyEventPostProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyEventPostProcessor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyEventPostProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyEventPostProcessor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Label - /// - /// - /// - public partial class Label : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Label"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Label() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Label(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayoutManager - /// - /// - /// - public partial class LayoutManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.LayoutManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LayoutManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LayoutManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayoutManager2 - /// - /// - /// - public partial class LayoutManager2 : Java.Awt.LayoutManager - { - const string _bridgeClassName = "java.awt.LayoutManager2"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LayoutManager2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutManager2() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LayoutManager2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutManager2(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinearGradientPaint - /// - /// - /// - public partial class LinearGradientPaint : Java.Awt.MultipleGradientPaint - { - const string _bridgeClassName = "java.awt.LinearGradientPaint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinearGradientPaint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinearGradientPaint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region List - /// - /// - /// - public partial class List : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.List"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public List() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public List(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MediaTracker - /// - /// - /// - public partial class MediaTracker : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.MediaTracker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaTracker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaTracker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Menu - /// - /// - /// - public partial class Menu : Java.Awt.MenuItem - { - const string _bridgeClassName = "java.awt.Menu"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Menu() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Menu(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuBar - /// - /// - /// - public partial class MenuBar : Java.Awt.MenuComponent - { - const string _bridgeClassName = "java.awt.MenuBar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuBar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuBar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuComponent - /// - /// - /// - public partial class MenuComponent : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.MenuComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MenuComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MenuComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuContainer - /// - /// - /// - public partial class MenuContainer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.MenuContainer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MenuContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuContainer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MenuContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuContainer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuItem - /// - /// - /// - public partial class MenuItem : Java.Awt.MenuComponent - { - const string _bridgeClassName = "java.awt.MenuItem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuItem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuItem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuShortcut - /// - /// - /// - public partial class MenuShortcut : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.MenuShortcut"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuShortcut() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuShortcut(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseInfo - /// - /// - /// - public partial class MouseInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.MouseInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultipleGradientPaint - /// - /// - /// - public partial class MultipleGradientPaint : Java.Awt.Paint - { - const string _bridgeClassName = "java.awt.MultipleGradientPaint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MultipleGradientPaint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultipleGradientPaint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MultipleGradientPaint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultipleGradientPaint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ColorSpaceType - /// - /// - /// - public partial class ColorSpaceType : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.MultipleGradientPaint$ColorSpaceType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorSpaceType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorSpaceType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CycleMethod - /// - /// - /// - public partial class CycleMethod : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.MultipleGradientPaint$CycleMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CycleMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CycleMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region PageAttributes - /// - /// - /// - public partial class PageAttributes : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.PageAttributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PageAttributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PageAttributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ColorType - /// - /// - /// - public partial class ColorType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PageAttributes$ColorType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MediaType - /// - /// - /// - public partial class MediaType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PageAttributes$MediaType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OrientationRequestedType - /// - /// - /// - public partial class OrientationRequestedType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PageAttributes$OrientationRequestedType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OrientationRequestedType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OrientationRequestedType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OriginType - /// - /// - /// - public partial class OriginType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PageAttributes$OriginType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OriginType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OriginType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PrintQualityType - /// - /// - /// - public partial class PrintQualityType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PageAttributes$PrintQualityType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintQualityType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintQualityType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Paint - /// - /// - /// - public partial class Paint : Java.Awt.Transparency - { - const string _bridgeClassName = "java.awt.Paint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Paint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Paint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Paint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Paint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PaintContext - /// - /// - /// - public partial class PaintContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PaintContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PaintContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PaintContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PaintContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PaintContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Panel - /// - /// - /// - public partial class Panel : Java.Awt.Container - { - const string _bridgeClassName = "java.awt.Panel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Panel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Panel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Point - /// - /// - /// - public partial class Point : Java.Awt.Geom.Point2D - { - const string _bridgeClassName = "java.awt.Point"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Point() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Point(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PointerInfo - /// - /// - /// - public partial class PointerInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PointerInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PointerInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PointerInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Polygon - /// - /// - /// - public partial class Polygon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Polygon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Polygon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Polygon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PopupMenu - /// - /// - /// - public partial class PopupMenu : Java.Awt.Menu - { - const string _bridgeClassName = "java.awt.PopupMenu"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PopupMenu() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PopupMenu(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintGraphics - /// - /// - /// - public partial class PrintGraphics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PrintGraphics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintGraphics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintGraphics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintJob - /// - /// - /// - public partial class PrintJob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.PrintJob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintJob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintJob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RadialGradientPaint - /// - /// - /// - public partial class RadialGradientPaint : Java.Awt.MultipleGradientPaint - { - const string _bridgeClassName = "java.awt.RadialGradientPaint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RadialGradientPaint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RadialGradientPaint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Rectangle - /// - /// - /// - public partial class Rectangle : Java.Awt.Geom.Rectangle2D - { - const string _bridgeClassName = "java.awt.Rectangle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Rectangle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Rectangle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderingHints - /// - /// - /// - public partial class RenderingHints : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.RenderingHints"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RenderingHints() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RenderingHints(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Key - /// - /// - /// - public partial class Key : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.RenderingHints$Key"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Key() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Key(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Robot - /// - /// - /// - public partial class Robot : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Robot"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Robot() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Robot(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Scrollbar - /// - /// - /// - public partial class Scrollbar : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.Scrollbar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Scrollbar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Scrollbar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScrollPane - /// - /// - /// - public partial class ScrollPane : Java.Awt.Container - { - const string _bridgeClassName = "java.awt.ScrollPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScrollPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScrollPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScrollPaneAdjustable - /// - /// - /// - public partial class ScrollPaneAdjustable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.ScrollPaneAdjustable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScrollPaneAdjustable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScrollPaneAdjustable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecondaryLoop - /// - /// - /// - public partial class SecondaryLoop : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.SecondaryLoop"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecondaryLoop class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecondaryLoop() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecondaryLoop class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecondaryLoop(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Shape - /// - /// - /// - public partial class Shape : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Shape"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Shape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Shape() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Shape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Shape(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SplashScreen - /// - /// - /// - public partial class SplashScreen : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.SplashScreen"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SplashScreen() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SplashScreen(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Stroke - /// - /// - /// - public partial class Stroke : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Stroke"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Stroke class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Stroke() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Stroke class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Stroke(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SystemColor - /// - /// - /// - public partial class SystemColor : Java.Awt.Color - { - const string _bridgeClassName = "java.awt.SystemColor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemColor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SystemColor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SystemTray - /// - /// - /// - public partial class SystemTray : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.SystemTray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemTray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SystemTray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Taskbar - /// - /// - /// - public partial class Taskbar : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Taskbar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Taskbar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Taskbar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Feature - /// - /// - /// - public partial class Feature : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Taskbar$Feature"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Feature() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Feature(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region State - /// - /// - /// - public partial class State : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Taskbar$State"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public State() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public State(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region TextArea - /// - /// - /// - public partial class TextArea : Java.Awt.TextComponent - { - const string _bridgeClassName = "java.awt.TextArea"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextArea() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextArea(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextComponent - /// - /// - /// - public partial class TextComponent : Java.Awt.Component - { - const string _bridgeClassName = "java.awt.TextComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextField - /// - /// - /// - public partial class TextField : Java.Awt.TextComponent - { - const string _bridgeClassName = "java.awt.TextField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TexturePaint - /// - /// - /// - public partial class TexturePaint : Java.Awt.Paint - { - const string _bridgeClassName = "java.awt.TexturePaint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TexturePaint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TexturePaint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Toolkit - /// - /// - /// - public partial class Toolkit : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Toolkit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Toolkit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Toolkit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Toolkit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Toolkit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Transparency - /// - /// - /// - public partial class Transparency : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.Transparency"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Transparency class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transparency() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Transparency class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transparency(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TrayIcon - /// - /// - /// - public partial class TrayIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.TrayIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TrayIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TrayIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region MessageType - /// - /// - /// - public partial class MessageType : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.TrayIcon$MessageType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MessageType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MessageType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Window - /// - /// - /// - public partial class Window : Java.Awt.Container - { - const string _bridgeClassName = "java.awt.Window"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Window() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Window(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.Window$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/AlphaComposite.cs b/src/net/JNet/Generated/Java/Awt/AlphaComposite.cs index 8999049e84..105ca0707e 100644 --- a/src/net/JNet/Generated/Java/Awt/AlphaComposite.cs +++ b/src/net/JNet/Generated/Java/Awt/AlphaComposite.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region AlphaComposite + #region AlphaComposite declaration + /// + /// + /// + public partial class AlphaComposite : Java.Awt.Composite + { + const string _bridgeClassName = "java.awt.AlphaComposite"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AlphaComposite() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AlphaComposite(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AlphaComposite implementation public partial class AlphaComposite { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/BasicStroke.cs b/src/net/JNet/Generated/Java/Awt/BasicStroke.cs index 8d95965894..2f50fd41f8 100644 --- a/src/net/JNet/Generated/Java/Awt/BasicStroke.cs +++ b/src/net/JNet/Generated/Java/Awt/BasicStroke.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region BasicStroke + #region BasicStroke declaration + /// + /// + /// + public partial class BasicStroke : Java.Awt.Stroke + { + const string _bridgeClassName = "java.awt.BasicStroke"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicStroke() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicStroke(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicStroke implementation public partial class BasicStroke { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/BorderLayout.cs b/src/net/JNet/Generated/Java/Awt/BorderLayout.cs index c70c5bf984..9ab9cca25b 100644 --- a/src/net/JNet/Generated/Java/Awt/BorderLayout.cs +++ b/src/net/JNet/Generated/Java/Awt/BorderLayout.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region BorderLayout + #region BorderLayout declaration + /// + /// + /// + public partial class BorderLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.BorderLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BorderLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BorderLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BorderLayout implementation public partial class BorderLayout { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/BufferCapabilities.cs b/src/net/JNet/Generated/Java/Awt/BufferCapabilities.cs index 912ae00cb1..1f274aa7cb 100644 --- a/src/net/JNet/Generated/Java/Awt/BufferCapabilities.cs +++ b/src/net/JNet/Generated/Java/Awt/BufferCapabilities.cs @@ -25,7 +25,97 @@ namespace Java.Awt { - #region BufferCapabilities + #region BufferCapabilities declaration + /// + /// + /// + public partial class BufferCapabilities : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.BufferCapabilities"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferCapabilities() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferCapabilities(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FlipContents declaration + /// + /// + /// + public partial class FlipContents : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.BufferCapabilities$FlipContents"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FlipContents() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FlipContents(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BufferCapabilities implementation public partial class BufferCapabilities { #region Constructors @@ -104,7 +194,7 @@ public bool IsPageFlipping() #endregion #region Nested classes - #region FlipContents + #region FlipContents implementation public partial class FlipContents { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Button.cs b/src/net/JNet/Generated/Java/Awt/Button.cs index a64244f3b5..9d65db6220 100644 --- a/src/net/JNet/Generated/Java/Awt/Button.cs +++ b/src/net/JNet/Generated/Java/Awt/Button.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Button + #region Button declaration + /// + /// + /// + public partial class Button : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Button"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Button() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Button(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Button implementation public partial class Button { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Canvas.cs b/src/net/JNet/Generated/Java/Awt/Canvas.cs index f393969231..3b17625e74 100644 --- a/src/net/JNet/Generated/Java/Awt/Canvas.cs +++ b/src/net/JNet/Generated/Java/Awt/Canvas.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Canvas + #region Canvas declaration + /// + /// + /// + public partial class Canvas : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Canvas"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Canvas() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Canvas(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Canvas implementation public partial class Canvas { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/CardLayout.cs b/src/net/JNet/Generated/Java/Awt/CardLayout.cs index 8e2fc7589f..207d3c81b2 100644 --- a/src/net/JNet/Generated/Java/Awt/CardLayout.cs +++ b/src/net/JNet/Generated/Java/Awt/CardLayout.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region CardLayout + #region CardLayout declaration + /// + /// + /// + public partial class CardLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.CardLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CardLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CardLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CardLayout implementation public partial class CardLayout { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Checkbox.cs b/src/net/JNet/Generated/Java/Awt/Checkbox.cs index 607ce87c7e..19f20902ff 100644 --- a/src/net/JNet/Generated/Java/Awt/Checkbox.cs +++ b/src/net/JNet/Generated/Java/Awt/Checkbox.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Checkbox + #region Checkbox declaration + /// + /// + /// + public partial class Checkbox : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Checkbox"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Checkbox() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Checkbox(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Checkbox implementation public partial class Checkbox { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/CheckboxGroup.cs b/src/net/JNet/Generated/Java/Awt/CheckboxGroup.cs index 5ef457e113..0fc44dc81a 100644 --- a/src/net/JNet/Generated/Java/Awt/CheckboxGroup.cs +++ b/src/net/JNet/Generated/Java/Awt/CheckboxGroup.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region CheckboxGroup + #region CheckboxGroup declaration + /// + /// + /// + public partial class CheckboxGroup : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.CheckboxGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CheckboxGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CheckboxGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CheckboxGroup implementation public partial class CheckboxGroup { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/CheckboxMenuItem.cs b/src/net/JNet/Generated/Java/Awt/CheckboxMenuItem.cs index a177a3db93..ee01462b2d 100644 --- a/src/net/JNet/Generated/Java/Awt/CheckboxMenuItem.cs +++ b/src/net/JNet/Generated/Java/Awt/CheckboxMenuItem.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region CheckboxMenuItem + #region CheckboxMenuItem declaration + /// + /// + /// + public partial class CheckboxMenuItem : Java.Awt.MenuItem + { + const string _bridgeClassName = "java.awt.CheckboxMenuItem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CheckboxMenuItem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CheckboxMenuItem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CheckboxMenuItem implementation public partial class CheckboxMenuItem { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Choice.cs b/src/net/JNet/Generated/Java/Awt/Choice.cs index 419c20d539..b789c6af99 100644 --- a/src/net/JNet/Generated/Java/Awt/Choice.cs +++ b/src/net/JNet/Generated/Java/Awt/Choice.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Choice + #region Choice declaration + /// + /// + /// + public partial class Choice : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Choice"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Choice() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Choice(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Choice implementation public partial class Choice { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Color.cs b/src/net/JNet/Generated/Java/Awt/Color.cs index 6a776432d6..9b98337cb1 100644 --- a/src/net/JNet/Generated/Java/Awt/Color.cs +++ b/src/net/JNet/Generated/Java/Awt/Color.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Color + #region Color declaration + /// + /// + /// + public partial class Color : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Color"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Color() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Color(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Color implementation public partial class Color { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/AllPackageClasses.cs deleted file mode 100644 index 9bdfef5c02..0000000000 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/AllPackageClasses.cs +++ /dev/null @@ -1,291 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.ColorNs -{ - #region CMMException - /// - /// - /// - public partial class CMMException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.awt.color.CMMException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ColorSpace - /// - /// - /// - public partial class ColorSpace : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.color.ColorSpace"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ColorSpace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorSpace() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ColorSpace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorSpace(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ICC_ColorSpace - /// - /// - /// - public partial class ICC_ColorSpace : Java.Awt.ColorNs.ColorSpace - { - const string _bridgeClassName = "java.awt.color.ICC_ColorSpace"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ICC_ColorSpace() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ICC_ColorSpace(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ICC_Profile - /// - /// - /// - public partial class ICC_Profile : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.color.ICC_Profile"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ICC_Profile() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ICC_Profile(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ICC_ProfileGray - /// - /// - /// - public partial class ICC_ProfileGray : Java.Awt.ColorNs.ICC_Profile - { - const string _bridgeClassName = "java.awt.color.ICC_ProfileGray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ICC_ProfileGray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ICC_ProfileGray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ICC_ProfileRGB - /// - /// - /// - public partial class ICC_ProfileRGB : Java.Awt.ColorNs.ICC_Profile - { - const string _bridgeClassName = "java.awt.color.ICC_ProfileRGB"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ICC_ProfileRGB() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ICC_ProfileRGB(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProfileDataException - /// - /// - /// - public partial class ProfileDataException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.awt.color.ProfileDataException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/CMMException.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/CMMException.cs index ca4e805d96..0aaf955640 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/CMMException.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/CMMException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.ColorNs { - #region CMMException + #region CMMException declaration + /// + /// + /// + public partial class CMMException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.awt.color.CMMException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CMMException implementation public partial class CMMException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/ColorSpace.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/ColorSpace.cs index 7061f86f96..ed9c5448f2 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/ColorSpace.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/ColorSpace.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ColorNs { - #region ColorSpace + #region ColorSpace declaration + /// + /// + /// + public partial class ColorSpace : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.color.ColorSpace"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ColorSpace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorSpace() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ColorSpace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorSpace(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorSpace implementation public partial class ColorSpace { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ColorSpace.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ColorSpace.cs index fb731af6c4..f19f4d9437 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ColorSpace.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ColorSpace.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ColorNs { - #region ICC_ColorSpace + #region ICC_ColorSpace declaration + /// + /// + /// + public partial class ICC_ColorSpace : Java.Awt.ColorNs.ColorSpace + { + const string _bridgeClassName = "java.awt.color.ICC_ColorSpace"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ICC_ColorSpace() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ICC_ColorSpace(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ICC_ColorSpace implementation public partial class ICC_ColorSpace { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_Profile.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_Profile.cs index de1972d4bd..bdb7bb283c 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_Profile.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_Profile.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ColorNs { - #region ICC_Profile + #region ICC_Profile declaration + /// + /// + /// + public partial class ICC_Profile : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.color.ICC_Profile"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ICC_Profile() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ICC_Profile(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ICC_Profile implementation public partial class ICC_Profile { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileGray.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileGray.cs index 1f89671d5a..2c182be838 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileGray.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileGray.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ColorNs { - #region ICC_ProfileGray + #region ICC_ProfileGray declaration + /// + /// + /// + public partial class ICC_ProfileGray : Java.Awt.ColorNs.ICC_Profile + { + const string _bridgeClassName = "java.awt.color.ICC_ProfileGray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ICC_ProfileGray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ICC_ProfileGray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ICC_ProfileGray implementation public partial class ICC_ProfileGray { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileRGB.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileRGB.cs index ac6bef78a2..bc5595fa7d 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileRGB.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/ICC_ProfileRGB.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ColorNs { - #region ICC_ProfileRGB + #region ICC_ProfileRGB declaration + /// + /// + /// + public partial class ICC_ProfileRGB : Java.Awt.ColorNs.ICC_Profile + { + const string _bridgeClassName = "java.awt.color.ICC_ProfileRGB"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ICC_ProfileRGB() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ICC_ProfileRGB(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ICC_ProfileRGB implementation public partial class ICC_ProfileRGB { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ColorNs/ProfileDataException.cs b/src/net/JNet/Generated/Java/Awt/ColorNs/ProfileDataException.cs index 9c0bd4d9e2..83bbdd96a9 100644 --- a/src/net/JNet/Generated/Java/Awt/ColorNs/ProfileDataException.cs +++ b/src/net/JNet/Generated/Java/Awt/ColorNs/ProfileDataException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.ColorNs { - #region ProfileDataException + #region ProfileDataException declaration + /// + /// + /// + public partial class ProfileDataException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.awt.color.ProfileDataException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ProfileDataException implementation public partial class ProfileDataException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Component.cs b/src/net/JNet/Generated/Java/Awt/Component.cs index 987cccdaa4..fc068eb8c8 100644 --- a/src/net/JNet/Generated/Java/Awt/Component.cs +++ b/src/net/JNet/Generated/Java/Awt/Component.cs @@ -25,7 +25,99 @@ namespace Java.Awt { - #region Component + #region Component declaration + /// + /// + /// + public partial class Component : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Component"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Component class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Component() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Component class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Component(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BaselineResizeBehavior declaration + /// + /// + /// + public partial class BaselineResizeBehavior : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Component$BaselineResizeBehavior"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BaselineResizeBehavior() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BaselineResizeBehavior(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Component implementation public partial class Component { #region Constructors @@ -1342,7 +1434,7 @@ public void Validate() #endregion #region Nested classes - #region BaselineResizeBehavior + #region BaselineResizeBehavior implementation public partial class BaselineResizeBehavior { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ComponentOrientation.cs b/src/net/JNet/Generated/Java/Awt/ComponentOrientation.cs index ff42d95f76..ac65152d56 100644 --- a/src/net/JNet/Generated/Java/Awt/ComponentOrientation.cs +++ b/src/net/JNet/Generated/Java/Awt/ComponentOrientation.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region ComponentOrientation + #region ComponentOrientation declaration + /// + /// + /// + public partial class ComponentOrientation : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.ComponentOrientation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentOrientation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentOrientation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentOrientation implementation public partial class ComponentOrientation { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Composite.cs b/src/net/JNet/Generated/Java/Awt/Composite.cs index 155d15db4c..3bce02f479 100644 --- a/src/net/JNet/Generated/Java/Awt/Composite.cs +++ b/src/net/JNet/Generated/Java/Awt/Composite.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region Composite declaration + /// + /// + /// + public partial class Composite : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Composite"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Composite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Composite() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Composite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Composite(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IComposite /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IComposite } #endregion - #region Composite + #region Composite implementation public partial class Composite : Java.Awt.IComposite { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/CompositeContext.cs b/src/net/JNet/Generated/Java/Awt/CompositeContext.cs index d90d37dd08..b924604d08 100644 --- a/src/net/JNet/Generated/Java/Awt/CompositeContext.cs +++ b/src/net/JNet/Generated/Java/Awt/CompositeContext.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region CompositeContext declaration + /// + /// + /// + public partial class CompositeContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.CompositeContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompositeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompositeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICompositeContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface ICompositeContext } #endregion - #region CompositeContext + #region CompositeContext implementation public partial class CompositeContext : Java.Awt.ICompositeContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Container.cs b/src/net/JNet/Generated/Java/Awt/Container.cs index b50eb614c7..77413c26ab 100644 --- a/src/net/JNet/Generated/Java/Awt/Container.cs +++ b/src/net/JNet/Generated/Java/Awt/Container.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Container + #region Container declaration + /// + /// + /// + public partial class Container : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Container"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Container() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Container(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Container implementation public partial class Container { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ContainerOrderFocusTraversalPolicy.cs b/src/net/JNet/Generated/Java/Awt/ContainerOrderFocusTraversalPolicy.cs index 2dfe0ec0ba..c2da05fedb 100644 --- a/src/net/JNet/Generated/Java/Awt/ContainerOrderFocusTraversalPolicy.cs +++ b/src/net/JNet/Generated/Java/Awt/ContainerOrderFocusTraversalPolicy.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region ContainerOrderFocusTraversalPolicy + #region ContainerOrderFocusTraversalPolicy declaration + /// + /// + /// + public partial class ContainerOrderFocusTraversalPolicy : Java.Awt.FocusTraversalPolicy + { + const string _bridgeClassName = "java.awt.ContainerOrderFocusTraversalPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ContainerOrderFocusTraversalPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ContainerOrderFocusTraversalPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ContainerOrderFocusTraversalPolicy implementation public partial class ContainerOrderFocusTraversalPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Cursor.cs b/src/net/JNet/Generated/Java/Awt/Cursor.cs index 3dadf00592..eba8ca977b 100644 --- a/src/net/JNet/Generated/Java/Awt/Cursor.cs +++ b/src/net/JNet/Generated/Java/Awt/Cursor.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Cursor + #region Cursor declaration + /// + /// + /// + public partial class Cursor : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.Cursor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Cursor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Cursor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Cursor implementation public partial class Cursor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/AllPackageClasses.cs deleted file mode 100644 index d81adb9c79..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/AllPackageClasses.cs +++ /dev/null @@ -1,544 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Datatransfer -{ - #region Clipboard - /// - /// - /// - public partial class Clipboard : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.Clipboard"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Clipboard() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Clipboard(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClipboardOwner - /// - /// - /// - public partial class ClipboardOwner : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.ClipboardOwner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClipboardOwner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClipboardOwner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClipboardOwner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClipboardOwner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataFlavor - /// - /// - /// - public partial class DataFlavor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.DataFlavor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataFlavor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataFlavor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FlavorEvent - /// - /// - /// - public partial class FlavorEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.awt.datatransfer.FlavorEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FlavorEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FlavorEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FlavorListener - /// - /// - /// - public partial class FlavorListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FlavorListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.datatransfer.FlavorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region FlavorListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class FlavorListenerDirect : FlavorListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.datatransfer.FlavorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region FlavorMap - /// - /// - /// - public partial class FlavorMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.FlavorMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FlavorMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlavorMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FlavorMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlavorMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FlavorTable - /// - /// - /// - public partial class FlavorTable : Java.Awt.Datatransfer.FlavorMap - { - const string _bridgeClassName = "java.awt.datatransfer.FlavorTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FlavorTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlavorTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FlavorTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlavorTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MimeTypeParseException - /// - /// - /// - public partial class MimeTypeParseException : Java.Lang.Exception - { - const string _bridgeClassName = "java.awt.datatransfer.MimeTypeParseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StringSelection - /// - /// - /// - public partial class StringSelection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.StringSelection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringSelection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringSelection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SystemFlavorMap - /// - /// - /// - public partial class SystemFlavorMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.SystemFlavorMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemFlavorMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SystemFlavorMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Transferable - /// - /// - /// - public partial class Transferable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.datatransfer.Transferable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Transferable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transferable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Transferable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transferable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedFlavorException - /// - /// - /// - public partial class UnsupportedFlavorException : Java.Lang.Exception - { - const string _bridgeClassName = "java.awt.datatransfer.UnsupportedFlavorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/Clipboard.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/Clipboard.cs index 43d465e205..4e07b9528e 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/Clipboard.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/Clipboard.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Datatransfer { - #region Clipboard + #region Clipboard declaration + /// + /// + /// + public partial class Clipboard : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.Clipboard"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Clipboard() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Clipboard(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Clipboard implementation public partial class Clipboard { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/ClipboardOwner.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/ClipboardOwner.cs index 9ffe6f0e93..0995e54f72 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/ClipboardOwner.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/ClipboardOwner.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Datatransfer { + #region ClipboardOwner declaration + /// + /// + /// + public partial class ClipboardOwner : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.ClipboardOwner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClipboardOwner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClipboardOwner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClipboardOwner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClipboardOwner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IClipboardOwner /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IClipboardOwner } #endregion - #region ClipboardOwner + #region ClipboardOwner implementation public partial class ClipboardOwner : Java.Awt.Datatransfer.IClipboardOwner { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/DataFlavor.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/DataFlavor.cs index ebe1908a13..a82f352b23 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/DataFlavor.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/DataFlavor.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Datatransfer { - #region DataFlavor + #region DataFlavor declaration + /// + /// + /// + public partial class DataFlavor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.DataFlavor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataFlavor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataFlavor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataFlavor implementation public partial class DataFlavor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorEvent.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorEvent.cs index de75e6de99..7d4a801580 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Datatransfer { - #region FlavorEvent + #region FlavorEvent declaration + /// + /// + /// + public partial class FlavorEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.awt.datatransfer.FlavorEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FlavorEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FlavorEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FlavorEvent implementation public partial class FlavorEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorListener.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorListener.cs index de5f199fd2..05a23281e5 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorListener.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.Datatransfer { + #region FlavorListener declaration + /// + /// + /// + public partial class FlavorListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FlavorListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.datatransfer.FlavorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region FlavorListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class FlavorListenerDirect : FlavorListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.datatransfer.FlavorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IFlavorListener /// /// .NET interface for org.mases.jnet.generated.java.awt.datatransfer.FlavorListener implementing @@ -48,7 +115,7 @@ public partial interface IFlavorListener } #endregion - #region FlavorListener + #region FlavorListener implementation public partial class FlavorListener : Java.Awt.Datatransfer.IFlavorListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void FlavorsChanged(Java.Awt.Datatransfer.FlavorEvent arg0) } #endregion - #region FlavorListenerDirect + #region FlavorListenerDirect implementation public partial class FlavorListenerDirect : Java.Awt.Datatransfer.IFlavorListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorMap.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorMap.cs index 690c23fbf5..9d148dd102 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorMap.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorMap.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Datatransfer { + #region FlavorMap declaration + /// + /// + /// + public partial class FlavorMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.FlavorMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FlavorMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlavorMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FlavorMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlavorMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFlavorMap /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IFlavorMap } #endregion - #region FlavorMap + #region FlavorMap implementation public partial class FlavorMap : Java.Awt.Datatransfer.IFlavorMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorTable.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorTable.cs index 278976613d..0cb9fdfcbd 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorTable.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/FlavorTable.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Datatransfer { + #region FlavorTable declaration + /// + /// + /// + public partial class FlavorTable : Java.Awt.Datatransfer.FlavorMap + { + const string _bridgeClassName = "java.awt.datatransfer.FlavorTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FlavorTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlavorTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FlavorTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlavorTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFlavorTable /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IFlavorTable : Java.Awt.Datatransfer.IFlavorMap } #endregion - #region FlavorTable + #region FlavorTable implementation public partial class FlavorTable : Java.Awt.Datatransfer.IFlavorTable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/MimeTypeParseException.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/MimeTypeParseException.cs index 263e282154..201ec39b1e 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/MimeTypeParseException.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/MimeTypeParseException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Datatransfer { - #region MimeTypeParseException + #region MimeTypeParseException declaration + /// + /// + /// + public partial class MimeTypeParseException : Java.Lang.Exception + { + const string _bridgeClassName = "java.awt.datatransfer.MimeTypeParseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MimeTypeParseException implementation public partial class MimeTypeParseException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/StringSelection.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/StringSelection.cs index 4052195f37..6e09044dff 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/StringSelection.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/StringSelection.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Datatransfer { - #region StringSelection + #region StringSelection declaration + /// + /// + /// + public partial class StringSelection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.StringSelection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringSelection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringSelection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringSelection implementation public partial class StringSelection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/SystemFlavorMap.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/SystemFlavorMap.cs index 4c2129b882..d8ea932d7d 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/SystemFlavorMap.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/SystemFlavorMap.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Datatransfer { - #region SystemFlavorMap + #region SystemFlavorMap declaration + /// + /// + /// + public partial class SystemFlavorMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.SystemFlavorMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemFlavorMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SystemFlavorMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SystemFlavorMap implementation public partial class SystemFlavorMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/Transferable.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/Transferable.cs index 4ea85a01e0..2631758832 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/Transferable.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/Transferable.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Datatransfer { + #region Transferable declaration + /// + /// + /// + public partial class Transferable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.datatransfer.Transferable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Transferable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transferable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Transferable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transferable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransferable /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface ITransferable } #endregion - #region Transferable + #region Transferable implementation public partial class Transferable : Java.Awt.Datatransfer.ITransferable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Datatransfer/UnsupportedFlavorException.cs b/src/net/JNet/Generated/Java/Awt/Datatransfer/UnsupportedFlavorException.cs index c459bd165c..70f9bd7056 100644 --- a/src/net/JNet/Generated/Java/Awt/Datatransfer/UnsupportedFlavorException.cs +++ b/src/net/JNet/Generated/Java/Awt/Datatransfer/UnsupportedFlavorException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Datatransfer { - #region UnsupportedFlavorException + #region UnsupportedFlavorException declaration + /// + /// + /// + public partial class UnsupportedFlavorException : Java.Lang.Exception + { + const string _bridgeClassName = "java.awt.datatransfer.UnsupportedFlavorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedFlavorException implementation public partial class UnsupportedFlavorException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DefaultFocusTraversalPolicy.cs b/src/net/JNet/Generated/Java/Awt/DefaultFocusTraversalPolicy.cs index 185df2ff7a..924aa34661 100644 --- a/src/net/JNet/Generated/Java/Awt/DefaultFocusTraversalPolicy.cs +++ b/src/net/JNet/Generated/Java/Awt/DefaultFocusTraversalPolicy.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region DefaultFocusTraversalPolicy + #region DefaultFocusTraversalPolicy declaration + /// + /// + /// + public partial class DefaultFocusTraversalPolicy : Java.Awt.ContainerOrderFocusTraversalPolicy + { + const string _bridgeClassName = "java.awt.DefaultFocusTraversalPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultFocusTraversalPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultFocusTraversalPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultFocusTraversalPolicy implementation public partial class DefaultFocusTraversalPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DefaultKeyboardFocusManager.cs b/src/net/JNet/Generated/Java/Awt/DefaultKeyboardFocusManager.cs index af58d1e05d..5e41000df9 100644 --- a/src/net/JNet/Generated/Java/Awt/DefaultKeyboardFocusManager.cs +++ b/src/net/JNet/Generated/Java/Awt/DefaultKeyboardFocusManager.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region DefaultKeyboardFocusManager + #region DefaultKeyboardFocusManager declaration + /// + /// + /// + public partial class DefaultKeyboardFocusManager : Java.Awt.KeyboardFocusManager + { + const string _bridgeClassName = "java.awt.DefaultKeyboardFocusManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultKeyboardFocusManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultKeyboardFocusManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultKeyboardFocusManager implementation public partial class DefaultKeyboardFocusManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Desktop.cs b/src/net/JNet/Generated/Java/Awt/Desktop.cs index b9b3fda09d..2b5796db38 100644 --- a/src/net/JNet/Generated/Java/Awt/Desktop.cs +++ b/src/net/JNet/Generated/Java/Awt/Desktop.cs @@ -25,7 +25,97 @@ namespace Java.Awt { - #region Desktop + #region Desktop declaration + /// + /// + /// + public partial class Desktop : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Desktop"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Desktop() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Desktop(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Action declaration + /// + /// + /// + public partial class Action : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Desktop$Action"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Action() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Action(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Desktop implementation public partial class Desktop { #region Constructors @@ -252,7 +342,7 @@ public void SetQuitStrategy(Java.Awt.DesktopNs.QuitStrategy arg0) #endregion #region Nested classes - #region Action + #region Action implementation public partial class Action { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutEvent.cs index 5ff24577f2..3e4979482a 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region AboutEvent + #region AboutEvent declaration + /// + /// + /// + public partial class AboutEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.AboutEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AboutEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AboutEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AboutEvent implementation public partial class AboutEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutHandler.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutHandler.cs index b7d623ea29..d2cb7f9b13 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutHandler.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AboutHandler.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region AboutHandler declaration + /// + /// + /// + public partial class AboutHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.AboutHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AboutHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AboutHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AboutHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AboutHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAboutHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IAboutHandler } #endregion - #region AboutHandler + #region AboutHandler implementation public partial class AboutHandler : Java.Awt.DesktopNs.IAboutHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AllPackageClasses.cs deleted file mode 100644 index e88af7fa55..0000000000 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AllPackageClasses.cs +++ /dev/null @@ -1,1548 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.DesktopNs -{ - #region AboutEvent - /// - /// - /// - public partial class AboutEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.AboutEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AboutEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AboutEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AboutHandler - /// - /// - /// - public partial class AboutHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.AboutHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AboutHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AboutHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AboutHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AboutHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AppEvent - /// - /// - /// - public partial class AppEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.awt.desktop.AppEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AppEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AppForegroundEvent - /// - /// - /// - public partial class AppForegroundEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.AppForegroundEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppForegroundEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AppForegroundEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AppForegroundListener - /// - /// - /// - public partial class AppForegroundListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppForegroundListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.AppForegroundListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region AppForegroundListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class AppForegroundListenerDirect : AppForegroundListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.AppForegroundListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region AppHiddenEvent - /// - /// - /// - public partial class AppHiddenEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.AppHiddenEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppHiddenEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AppHiddenEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AppHiddenListener - /// - /// - /// - public partial class AppHiddenListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppHiddenListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.AppHiddenListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region AppHiddenListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class AppHiddenListenerDirect : AppHiddenListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.AppHiddenListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region AppReopenedEvent - /// - /// - /// - public partial class AppReopenedEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.AppReopenedEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppReopenedEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AppReopenedEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AppReopenedListener - /// - /// - /// - public partial class AppReopenedListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppReopenedListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.AppReopenedListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region AppReopenedListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class AppReopenedListenerDirect : AppReopenedListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.AppReopenedListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region FilesEvent - /// - /// - /// - public partial class FilesEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.FilesEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilesEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilesEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenFilesEvent - /// - /// - /// - public partial class OpenFilesEvent : Java.Awt.DesktopNs.FilesEvent - { - const string _bridgeClassName = "java.awt.desktop.OpenFilesEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenFilesEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenFilesEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenFilesHandler - /// - /// - /// - public partial class OpenFilesHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.OpenFilesHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenFilesHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenFilesHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenURIEvent - /// - /// - /// - public partial class OpenURIEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.OpenURIEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenURIEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenURIEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenURIHandler - /// - /// - /// - public partial class OpenURIHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.OpenURIHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenURIHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenURIHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenURIHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenURIHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PreferencesEvent - /// - /// - /// - public partial class PreferencesEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.PreferencesEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PreferencesEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PreferencesEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PreferencesHandler - /// - /// - /// - public partial class PreferencesHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.PreferencesHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PreferencesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PreferencesHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PreferencesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PreferencesHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintFilesEvent - /// - /// - /// - public partial class PrintFilesEvent : Java.Awt.DesktopNs.FilesEvent - { - const string _bridgeClassName = "java.awt.desktop.PrintFilesEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintFilesEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintFilesEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintFilesHandler - /// - /// - /// - public partial class PrintFilesHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.PrintFilesHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintFilesHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintFilesHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QuitEvent - /// - /// - /// - public partial class QuitEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.QuitEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public QuitEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public QuitEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QuitHandler - /// - /// - /// - public partial class QuitHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.QuitHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("QuitHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QuitHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("QuitHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QuitHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QuitResponse - /// - /// - /// - public partial class QuitResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.desktop.QuitResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("QuitResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QuitResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("QuitResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QuitResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QuitStrategy - /// - /// - /// - public partial class QuitStrategy : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.desktop.QuitStrategy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public QuitStrategy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public QuitStrategy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScreenSleepEvent - /// - /// - /// - public partial class ScreenSleepEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.ScreenSleepEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScreenSleepEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScreenSleepEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScreenSleepListener - /// - /// - /// - public partial class ScreenSleepListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScreenSleepListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.ScreenSleepListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ScreenSleepListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ScreenSleepListenerDirect : ScreenSleepListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.ScreenSleepListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region SystemEventListener - /// - /// - /// - public partial class SystemEventListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemEventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.SystemEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region SystemEventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class SystemEventListenerDirect : SystemEventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.SystemEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region SystemSleepEvent - /// - /// - /// - public partial class SystemSleepEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.SystemSleepEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemSleepEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SystemSleepEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SystemSleepListener - /// - /// - /// - public partial class SystemSleepListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemSleepListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.SystemSleepListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region SystemSleepListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class SystemSleepListenerDirect : SystemSleepListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.SystemSleepListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region UserSessionEvent - /// - /// - /// - public partial class UserSessionEvent : Java.Awt.DesktopNs.AppEvent - { - const string _bridgeClassName = "java.awt.desktop.UserSessionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UserSessionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UserSessionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Reason - /// - /// - /// - public partial class Reason : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.desktop.UserSessionEvent$Reason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Reason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Reason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region UserSessionListener - /// - /// - /// - public partial class UserSessionListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UserSessionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.UserSessionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region UserSessionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class UserSessionListenerDirect : UserSessionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.desktop.UserSessionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppEvent.cs index ec2a2d7c61..040ce988a1 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region AppEvent + #region AppEvent declaration + /// + /// + /// + public partial class AppEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.awt.desktop.AppEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AppEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AppEvent implementation public partial class AppEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundEvent.cs index f22b0039da..61376fb280 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region AppForegroundEvent + #region AppForegroundEvent declaration + /// + /// + /// + public partial class AppForegroundEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.AppForegroundEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppForegroundEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AppForegroundEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AppForegroundEvent implementation public partial class AppForegroundEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundListener.cs index 53b6d889b5..a3e9cd9d95 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppForegroundListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region AppForegroundListener declaration + /// + /// + /// + public partial class AppForegroundListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppForegroundListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.AppForegroundListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region AppForegroundListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class AppForegroundListenerDirect : AppForegroundListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.AppForegroundListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAppForegroundListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.AppForegroundListener implementing @@ -53,7 +120,7 @@ public partial interface IAppForegroundListener } #endregion - #region AppForegroundListener + #region AppForegroundListener implementation public partial class AppForegroundListener : Java.Awt.DesktopNs.IAppForegroundListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void AppRaisedToForeground(Java.Awt.DesktopNs.AppForegroundEvent } #endregion - #region AppForegroundListenerDirect + #region AppForegroundListenerDirect implementation public partial class AppForegroundListenerDirect : Java.Awt.DesktopNs.IAppForegroundListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenEvent.cs index 75771511f1..331ff855dc 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region AppHiddenEvent + #region AppHiddenEvent declaration + /// + /// + /// + public partial class AppHiddenEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.AppHiddenEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppHiddenEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AppHiddenEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AppHiddenEvent implementation public partial class AppHiddenEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenListener.cs index 37c42bbbd9..f7cc7e5f20 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppHiddenListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region AppHiddenListener declaration + /// + /// + /// + public partial class AppHiddenListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppHiddenListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.AppHiddenListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region AppHiddenListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class AppHiddenListenerDirect : AppHiddenListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.AppHiddenListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAppHiddenListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.AppHiddenListener implementing @@ -53,7 +120,7 @@ public partial interface IAppHiddenListener } #endregion - #region AppHiddenListener + #region AppHiddenListener implementation public partial class AppHiddenListener : Java.Awt.DesktopNs.IAppHiddenListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void AppUnhidden(Java.Awt.DesktopNs.AppHiddenEvent arg0) } #endregion - #region AppHiddenListenerDirect + #region AppHiddenListenerDirect implementation public partial class AppHiddenListenerDirect : Java.Awt.DesktopNs.IAppHiddenListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedEvent.cs index 7a8afd3d7d..b2fbf1e1d4 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region AppReopenedEvent + #region AppReopenedEvent declaration + /// + /// + /// + public partial class AppReopenedEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.AppReopenedEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppReopenedEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AppReopenedEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AppReopenedEvent implementation public partial class AppReopenedEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedListener.cs index 8972b5960a..f6119d4d53 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/AppReopenedListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region AppReopenedListener declaration + /// + /// + /// + public partial class AppReopenedListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppReopenedListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.AppReopenedListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region AppReopenedListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class AppReopenedListenerDirect : AppReopenedListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.AppReopenedListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAppReopenedListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.AppReopenedListener implementing @@ -48,7 +115,7 @@ public partial interface IAppReopenedListener } #endregion - #region AppReopenedListener + #region AppReopenedListener implementation public partial class AppReopenedListener : Java.Awt.DesktopNs.IAppReopenedListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void AppReopened(Java.Awt.DesktopNs.AppReopenedEvent arg0) } #endregion - #region AppReopenedListenerDirect + #region AppReopenedListenerDirect implementation public partial class AppReopenedListenerDirect : Java.Awt.DesktopNs.IAppReopenedListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/FilesEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/FilesEvent.cs index 80c00116a8..5eaa0c0c7e 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/FilesEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/FilesEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region FilesEvent + #region FilesEvent declaration + /// + /// + /// + public partial class FilesEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.FilesEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilesEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilesEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilesEvent implementation public partial class FilesEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesEvent.cs index 58a37f4bfb..0cb70a5d41 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region OpenFilesEvent + #region OpenFilesEvent declaration + /// + /// + /// + public partial class OpenFilesEvent : Java.Awt.DesktopNs.FilesEvent + { + const string _bridgeClassName = "java.awt.desktop.OpenFilesEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenFilesEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenFilesEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenFilesEvent implementation public partial class OpenFilesEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesHandler.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesHandler.cs index a2f41e69c6..956eb176f0 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesHandler.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenFilesHandler.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region OpenFilesHandler declaration + /// + /// + /// + public partial class OpenFilesHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.OpenFilesHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenFilesHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenFilesHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenFilesHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IOpenFilesHandler } #endregion - #region OpenFilesHandler + #region OpenFilesHandler implementation public partial class OpenFilesHandler : Java.Awt.DesktopNs.IOpenFilesHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIEvent.cs index 1f5d59eb54..fa38a96091 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region OpenURIEvent + #region OpenURIEvent declaration + /// + /// + /// + public partial class OpenURIEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.OpenURIEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenURIEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenURIEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenURIEvent implementation public partial class OpenURIEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIHandler.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIHandler.cs index 62cccd35e2..0b461af59a 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIHandler.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/OpenURIHandler.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region OpenURIHandler declaration + /// + /// + /// + public partial class OpenURIHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.OpenURIHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenURIHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenURIHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenURIHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenURIHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenURIHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IOpenURIHandler } #endregion - #region OpenURIHandler + #region OpenURIHandler implementation public partial class OpenURIHandler : Java.Awt.DesktopNs.IOpenURIHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesEvent.cs index feba8f259d..a0027d7636 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region PreferencesEvent + #region PreferencesEvent declaration + /// + /// + /// + public partial class PreferencesEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.PreferencesEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PreferencesEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PreferencesEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PreferencesEvent implementation public partial class PreferencesEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesHandler.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesHandler.cs index f347ee2e2b..28c56942ab 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesHandler.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/PreferencesHandler.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region PreferencesHandler declaration + /// + /// + /// + public partial class PreferencesHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.PreferencesHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PreferencesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PreferencesHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PreferencesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PreferencesHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPreferencesHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IPreferencesHandler } #endregion - #region PreferencesHandler + #region PreferencesHandler implementation public partial class PreferencesHandler : Java.Awt.DesktopNs.IPreferencesHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesEvent.cs index c0734a8083..95e7442f7f 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region PrintFilesEvent + #region PrintFilesEvent declaration + /// + /// + /// + public partial class PrintFilesEvent : Java.Awt.DesktopNs.FilesEvent + { + const string _bridgeClassName = "java.awt.desktop.PrintFilesEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintFilesEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintFilesEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintFilesEvent implementation public partial class PrintFilesEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesHandler.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesHandler.cs index 73d7a52ab7..acc38631b1 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesHandler.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/PrintFilesHandler.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region PrintFilesHandler declaration + /// + /// + /// + public partial class PrintFilesHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.PrintFilesHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintFilesHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintFilesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintFilesHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintFilesHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IPrintFilesHandler } #endregion - #region PrintFilesHandler + #region PrintFilesHandler implementation public partial class PrintFilesHandler : Java.Awt.DesktopNs.IPrintFilesHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitEvent.cs index ab1e1f460e..f2f3b4de0d 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region QuitEvent + #region QuitEvent declaration + /// + /// + /// + public partial class QuitEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.QuitEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public QuitEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public QuitEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region QuitEvent implementation public partial class QuitEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitHandler.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitHandler.cs index d7f1b59ce6..5a5f31cec4 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitHandler.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitHandler.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region QuitHandler declaration + /// + /// + /// + public partial class QuitHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.QuitHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("QuitHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QuitHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("QuitHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QuitHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IQuitHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IQuitHandler } #endregion - #region QuitHandler + #region QuitHandler implementation public partial class QuitHandler : Java.Awt.DesktopNs.IQuitHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitResponse.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitResponse.cs index 37be4d8f60..cbe8e970cc 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitResponse.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitResponse.cs @@ -25,6 +25,53 @@ namespace Java.Awt.DesktopNs { + #region QuitResponse declaration + /// + /// + /// + public partial class QuitResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.desktop.QuitResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("QuitResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QuitResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("QuitResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QuitResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IQuitResponse /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IQuitResponse } #endregion - #region QuitResponse + #region QuitResponse implementation public partial class QuitResponse : Java.Awt.DesktopNs.IQuitResponse { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitStrategy.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitStrategy.cs index 1370d6504a..a6dd1948bd 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitStrategy.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/QuitStrategy.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region QuitStrategy + #region QuitStrategy declaration + /// + /// + /// + public partial class QuitStrategy : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.desktop.QuitStrategy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public QuitStrategy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public QuitStrategy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region QuitStrategy implementation public partial class QuitStrategy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepEvent.cs index fd6dd2e317..3e07abe475 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region ScreenSleepEvent + #region ScreenSleepEvent declaration + /// + /// + /// + public partial class ScreenSleepEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.ScreenSleepEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScreenSleepEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScreenSleepEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScreenSleepEvent implementation public partial class ScreenSleepEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepListener.cs index 2c3a48cee9..791e74dd34 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/ScreenSleepListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region ScreenSleepListener declaration + /// + /// + /// + public partial class ScreenSleepListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScreenSleepListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.ScreenSleepListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ScreenSleepListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ScreenSleepListenerDirect : ScreenSleepListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.ScreenSleepListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IScreenSleepListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.ScreenSleepListener implementing @@ -53,7 +120,7 @@ public partial interface IScreenSleepListener } #endregion - #region ScreenSleepListener + #region ScreenSleepListener implementation public partial class ScreenSleepListener : Java.Awt.DesktopNs.IScreenSleepListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ScreenAwoke(Java.Awt.DesktopNs.ScreenSleepEvent arg0) } #endregion - #region ScreenSleepListenerDirect + #region ScreenSleepListenerDirect implementation public partial class ScreenSleepListenerDirect : Java.Awt.DesktopNs.IScreenSleepListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemEventListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemEventListener.cs index ffec992f9b..ca509e7f0f 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemEventListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemEventListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region SystemEventListener declaration + /// + /// + /// + public partial class SystemEventListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemEventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.SystemEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region SystemEventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class SystemEventListenerDirect : SystemEventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.SystemEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ISystemEventListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.SystemEventListener implementing @@ -43,7 +110,7 @@ public partial interface ISystemEventListener } #endregion - #region SystemEventListener + #region SystemEventListener implementation public partial class SystemEventListener : Java.Awt.DesktopNs.ISystemEventListener { #region Constructors @@ -81,7 +148,7 @@ protected virtual void InitializeHandlers() } #endregion - #region SystemEventListenerDirect + #region SystemEventListenerDirect implementation public partial class SystemEventListenerDirect : Java.Awt.DesktopNs.ISystemEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepEvent.cs index f3b9cc45b6..eb8e7c9ae5 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.DesktopNs { - #region SystemSleepEvent + #region SystemSleepEvent declaration + /// + /// + /// + public partial class SystemSleepEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.SystemSleepEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemSleepEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SystemSleepEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SystemSleepEvent implementation public partial class SystemSleepEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepListener.cs index f4d010ad80..7e61136bcc 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/SystemSleepListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region SystemSleepListener declaration + /// + /// + /// + public partial class SystemSleepListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemSleepListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.SystemSleepListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region SystemSleepListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class SystemSleepListenerDirect : SystemSleepListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.SystemSleepListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ISystemSleepListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.SystemSleepListener implementing @@ -53,7 +120,7 @@ public partial interface ISystemSleepListener } #endregion - #region SystemSleepListener + #region SystemSleepListener implementation public partial class SystemSleepListener : Java.Awt.DesktopNs.ISystemSleepListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void SystemAwoke(Java.Awt.DesktopNs.SystemSleepEvent arg0) } #endregion - #region SystemSleepListenerDirect + #region SystemSleepListenerDirect implementation public partial class SystemSleepListenerDirect : Java.Awt.DesktopNs.ISystemSleepListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionEvent.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionEvent.cs index e8e18b83ed..cdc965c893 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionEvent.cs @@ -25,7 +25,97 @@ namespace Java.Awt.DesktopNs { - #region UserSessionEvent + #region UserSessionEvent declaration + /// + /// + /// + public partial class UserSessionEvent : Java.Awt.DesktopNs.AppEvent + { + const string _bridgeClassName = "java.awt.desktop.UserSessionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UserSessionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UserSessionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Reason declaration + /// + /// + /// + public partial class Reason : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.desktop.UserSessionEvent$Reason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Reason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Reason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region UserSessionEvent implementation public partial class UserSessionEvent { #region Constructors @@ -64,7 +154,7 @@ public Java.Awt.DesktopNs.UserSessionEvent.Reason GetReason #endregion #region Nested classes - #region Reason + #region Reason implementation public partial class Reason { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionListener.cs b/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionListener.cs index a802f51273..077c232a8c 100644 --- a/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionListener.cs +++ b/src/net/JNet/Generated/Java/Awt/DesktopNs/UserSessionListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.DesktopNs { + #region UserSessionListener declaration + /// + /// + /// + public partial class UserSessionListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UserSessionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.desktop.UserSessionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region UserSessionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class UserSessionListenerDirect : UserSessionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.desktop.UserSessionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IUserSessionListener /// /// .NET interface for org.mases.jnet.generated.java.awt.desktop.UserSessionListener implementing @@ -53,7 +120,7 @@ public partial interface IUserSessionListener } #endregion - #region UserSessionListener + #region UserSessionListener implementation public partial class UserSessionListener : Java.Awt.DesktopNs.IUserSessionListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void UserSessionDeactivated(Java.Awt.DesktopNs.UserSessionEvent a } #endregion - #region UserSessionListenerDirect + #region UserSessionListenerDirect implementation public partial class UserSessionListenerDirect : Java.Awt.DesktopNs.IUserSessionListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dialog.cs b/src/net/JNet/Generated/Java/Awt/Dialog.cs index eddb5db085..ebcc5d38ab 100644 --- a/src/net/JNet/Generated/Java/Awt/Dialog.cs +++ b/src/net/JNet/Generated/Java/Awt/Dialog.cs @@ -25,7 +25,142 @@ namespace Java.Awt { - #region Dialog + #region Dialog declaration + /// + /// + /// + public partial class Dialog : Java.Awt.Window + { + const string _bridgeClassName = "java.awt.Dialog"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Dialog() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Dialog(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ModalExclusionType declaration + /// + /// + /// + public partial class ModalExclusionType : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Dialog$ModalExclusionType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModalExclusionType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModalExclusionType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ModalityType declaration + /// + /// + /// + public partial class ModalityType : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Dialog$ModalityType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModalityType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModalityType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Dialog implementation public partial class Dialog { #region Constructors @@ -257,7 +392,7 @@ public void SetUndecorated(bool arg0) #endregion #region Nested classes - #region ModalExclusionType + #region ModalExclusionType implementation public partial class ModalExclusionType { #region Constructors @@ -323,7 +458,7 @@ public static Java.Awt.Dialog.ModalExclusionType[] Values() } #endregion - #region ModalityType + #region ModalityType implementation public partial class ModalityType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dimension.cs b/src/net/JNet/Generated/Java/Awt/Dimension.cs index 757e2fca42..0ce4d50436 100644 --- a/src/net/JNet/Generated/Java/Awt/Dimension.cs +++ b/src/net/JNet/Generated/Java/Awt/Dimension.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Dimension + #region Dimension declaration + /// + /// + /// + public partial class Dimension : Java.Awt.Geom.Dimension2D + { + const string _bridgeClassName = "java.awt.Dimension"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Dimension() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Dimension(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Dimension implementation public partial class Dimension { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/DisplayMode.cs b/src/net/JNet/Generated/Java/Awt/DisplayMode.cs index 47a7bfa41e..c607483dbb 100644 --- a/src/net/JNet/Generated/Java/Awt/DisplayMode.cs +++ b/src/net/JNet/Generated/Java/Awt/DisplayMode.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region DisplayMode + #region DisplayMode declaration + /// + /// + /// + public partial class DisplayMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.DisplayMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DisplayMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DisplayMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DisplayMode implementation public partial class DisplayMode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Dnd/AllPackageClasses.cs deleted file mode 100644 index ee4ca8f70e..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Dnd/AllPackageClasses.cs +++ /dev/null @@ -1,1130 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Dnd -{ - #region Autoscroll - /// - /// - /// - public partial class Autoscroll : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.Autoscroll"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Autoscroll class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Autoscroll() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Autoscroll class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Autoscroll(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DnDConstants - /// - /// - /// - public partial class DnDConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.DnDConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DnDConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DnDConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragGestureEvent - /// - /// - /// - public partial class DragGestureEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.awt.dnd.DragGestureEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragGestureEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DragGestureEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragGestureListener - /// - /// - /// - public partial class DragGestureListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragGestureListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragGestureListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DragGestureListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DragGestureListenerDirect : DragGestureListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.dnd.DragGestureListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DragGestureRecognizer - /// - /// - /// - public partial class DragGestureRecognizer : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.dnd.DragGestureRecognizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DragGestureRecognizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DragGestureRecognizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragSource - /// - /// - /// - public partial class DragSource : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.dnd.DragSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DragSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragSourceAdapter - /// - /// - /// - public partial class DragSourceAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragSourceAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DragSourceAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DragSourceAdapterDirect : DragSourceAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.dnd.DragSourceAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DragSourceContext - /// - /// - /// - public partial class DragSourceContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.DragSourceContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DragSourceContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragSourceDragEvent - /// - /// - /// - public partial class DragSourceDragEvent : Java.Awt.Dnd.DragSourceEvent - { - const string _bridgeClassName = "java.awt.dnd.DragSourceDragEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceDragEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DragSourceDragEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragSourceDropEvent - /// - /// - /// - public partial class DragSourceDropEvent : Java.Awt.Dnd.DragSourceEvent - { - const string _bridgeClassName = "java.awt.dnd.DragSourceDropEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceDropEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DragSourceDropEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragSourceEvent - /// - /// - /// - public partial class DragSourceEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.awt.dnd.DragSourceEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DragSourceEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DragSourceListener - /// - /// - /// - public partial class DragSourceListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragSourceListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DragSourceListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DragSourceListenerDirect : DragSourceListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.dnd.DragSourceListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DragSourceMotionListener - /// - /// - /// - public partial class DragSourceMotionListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DragSourceMotionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragSourceMotionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DragSourceMotionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DragSourceMotionListenerDirect : DragSourceMotionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.dnd.DragSourceMotionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DropTarget - /// - /// - /// - public partial class DropTarget : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.DropTarget"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTarget() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropTarget(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetAdapter - /// - /// - /// - public partial class DropTargetAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTargetAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DropTargetAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DropTargetAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DropTargetAdapterDirect : DropTargetAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.dnd.DropTargetAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DropTargetContext - /// - /// - /// - public partial class DropTargetContext : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.dnd.DropTargetContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTargetContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropTargetContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetDragEvent - /// - /// - /// - public partial class DropTargetDragEvent : Java.Awt.Dnd.DropTargetEvent - { - const string _bridgeClassName = "java.awt.dnd.DropTargetDragEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTargetDragEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropTargetDragEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetDropEvent - /// - /// - /// - public partial class DropTargetDropEvent : Java.Awt.Dnd.DropTargetEvent - { - const string _bridgeClassName = "java.awt.dnd.DropTargetDropEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTargetDropEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropTargetDropEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetEvent - /// - /// - /// - public partial class DropTargetEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.awt.dnd.DropTargetEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTargetEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropTargetEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetListener - /// - /// - /// - public partial class DropTargetListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropTargetListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DropTargetListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DropTargetListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DropTargetListenerDirect : DropTargetListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.dnd.DropTargetListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region InvalidDnDOperationException - /// - /// - /// - public partial class InvalidDnDOperationException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.awt.dnd.InvalidDnDOperationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MouseDragGestureRecognizer - /// - /// - /// - public partial class MouseDragGestureRecognizer : Java.Awt.Dnd.DragGestureRecognizer - { - const string _bridgeClassName = "java.awt.dnd.MouseDragGestureRecognizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MouseDragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MouseDragGestureRecognizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MouseDragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MouseDragGestureRecognizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/Autoscroll.cs b/src/net/JNet/Generated/Java/Awt/Dnd/Autoscroll.cs index 3b2f2ada7d..897a61dfc7 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/Autoscroll.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/Autoscroll.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Dnd { + #region Autoscroll declaration + /// + /// + /// + public partial class Autoscroll : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.Autoscroll"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Autoscroll class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Autoscroll() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Autoscroll class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Autoscroll(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAutoscroll /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IAutoscroll } #endregion - #region Autoscroll + #region Autoscroll implementation public partial class Autoscroll : Java.Awt.Dnd.IAutoscroll { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DnDConstants.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DnDConstants.cs index 80ac389c60..1bc214eac6 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DnDConstants.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DnDConstants.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DnDConstants + #region DnDConstants declaration + /// + /// + /// + public partial class DnDConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.DnDConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DnDConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DnDConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DnDConstants implementation public partial class DnDConstants { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureEvent.cs index 1795a7e8e8..28a73dc2a4 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DragGestureEvent + #region DragGestureEvent declaration + /// + /// + /// + public partial class DragGestureEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.awt.dnd.DragGestureEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragGestureEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DragGestureEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragGestureEvent implementation public partial class DragGestureEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureListener.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureListener.cs index 4f7d193c14..5ab9b2e5da 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureListener.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.Dnd { + #region DragGestureListener declaration + /// + /// + /// + public partial class DragGestureListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragGestureListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragGestureListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DragGestureListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DragGestureListenerDirect : DragGestureListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.dnd.DragGestureListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDragGestureListener /// /// .NET interface for org.mases.jnet.generated.java.awt.dnd.DragGestureListener implementing @@ -48,7 +115,7 @@ public partial interface IDragGestureListener } #endregion - #region DragGestureListener + #region DragGestureListener implementation public partial class DragGestureListener : Java.Awt.Dnd.IDragGestureListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void DragGestureRecognized(Java.Awt.Dnd.DragGestureEvent arg0) } #endregion - #region DragGestureListenerDirect + #region DragGestureListenerDirect implementation public partial class DragGestureListenerDirect : Java.Awt.Dnd.IDragGestureListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureRecognizer.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureRecognizer.cs index 1a86398fd7..b9f28dac0d 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureRecognizer.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragGestureRecognizer.cs @@ -25,7 +25,54 @@ namespace Java.Awt.Dnd { - #region DragGestureRecognizer + #region DragGestureRecognizer declaration + /// + /// + /// + public partial class DragGestureRecognizer : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.dnd.DragGestureRecognizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DragGestureRecognizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DragGestureRecognizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragGestureRecognizer implementation public partial class DragGestureRecognizer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSource.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSource.cs index 1d6d056674..efe1cff821 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSource.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSource.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DragSource + #region DragSource declaration + /// + /// + /// + public partial class DragSource : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.dnd.DragSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DragSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragSource implementation public partial class DragSource { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceAdapter.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceAdapter.cs index b2fc0e8b82..36aa221688 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.Dnd { - #region DragSourceAdapter + #region DragSourceAdapter declaration + /// + /// + /// + public partial class DragSourceAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragSourceAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DragSourceAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DragSourceAdapterDirect : DragSourceAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.dnd.DragSourceAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region DragSourceAdapter implementation public partial class DragSourceAdapter { #region Constructors @@ -195,7 +262,7 @@ public virtual void DropActionChanged(Java.Awt.Dnd.DragSourceDragEvent arg0) } #endregion - #region DragSourceAdapterDirect + #region DragSourceAdapterDirect implementation public partial class DragSourceAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceContext.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceContext.cs index 7ce658eb0b..2600549e8b 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceContext.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceContext.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DragSourceContext + #region DragSourceContext declaration + /// + /// + /// + public partial class DragSourceContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.DragSourceContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DragSourceContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragSourceContext implementation public partial class DragSourceContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDragEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDragEvent.cs index 8a13425229..59759d16e9 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDragEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDragEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DragSourceDragEvent + #region DragSourceDragEvent declaration + /// + /// + /// + public partial class DragSourceDragEvent : Java.Awt.Dnd.DragSourceEvent + { + const string _bridgeClassName = "java.awt.dnd.DragSourceDragEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceDragEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DragSourceDragEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragSourceDragEvent implementation public partial class DragSourceDragEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDropEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDropEvent.cs index 4da7eaf88a..387b438335 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDropEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceDropEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DragSourceDropEvent + #region DragSourceDropEvent declaration + /// + /// + /// + public partial class DragSourceDropEvent : Java.Awt.Dnd.DragSourceEvent + { + const string _bridgeClassName = "java.awt.dnd.DragSourceDropEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceDropEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DragSourceDropEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragSourceDropEvent implementation public partial class DragSourceDropEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceEvent.cs index aa794f3744..7e96cdfaad 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DragSourceEvent + #region DragSourceEvent declaration + /// + /// + /// + public partial class DragSourceEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.awt.dnd.DragSourceEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DragSourceEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DragSourceEvent implementation public partial class DragSourceEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceListener.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceListener.cs index 042c2ae41a..bab2484979 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceListener.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.Dnd { + #region DragSourceListener declaration + /// + /// + /// + public partial class DragSourceListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragSourceListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DragSourceListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DragSourceListenerDirect : DragSourceListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.dnd.DragSourceListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDragSourceListener /// /// .NET interface for org.mases.jnet.generated.java.awt.dnd.DragSourceListener implementing @@ -68,7 +135,7 @@ public partial interface IDragSourceListener } #endregion - #region DragSourceListener + #region DragSourceListener implementation public partial class DragSourceListener : Java.Awt.Dnd.IDragSourceListener { #region Constructors @@ -216,7 +283,7 @@ public virtual void DropActionChanged(Java.Awt.Dnd.DragSourceDragEvent arg0) } #endregion - #region DragSourceListenerDirect + #region DragSourceListenerDirect implementation public partial class DragSourceListenerDirect : Java.Awt.Dnd.IDragSourceListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceMotionListener.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceMotionListener.cs index b7f9270831..ca9aefbfe2 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceMotionListener.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DragSourceMotionListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.Dnd { + #region DragSourceMotionListener declaration + /// + /// + /// + public partial class DragSourceMotionListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DragSourceMotionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DragSourceMotionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DragSourceMotionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DragSourceMotionListenerDirect : DragSourceMotionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.dnd.DragSourceMotionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDragSourceMotionListener /// /// .NET interface for org.mases.jnet.generated.java.awt.dnd.DragSourceMotionListener implementing @@ -48,7 +115,7 @@ public partial interface IDragSourceMotionListener } #endregion - #region DragSourceMotionListener + #region DragSourceMotionListener implementation public partial class DragSourceMotionListener : Java.Awt.Dnd.IDragSourceMotionListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void DragMouseMoved(Java.Awt.Dnd.DragSourceDragEvent arg0) } #endregion - #region DragSourceMotionListenerDirect + #region DragSourceMotionListenerDirect implementation public partial class DragSourceMotionListenerDirect : Java.Awt.Dnd.IDragSourceMotionListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTarget.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTarget.cs index 4fad210388..ad01c6fd27 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTarget.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTarget.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DropTarget + #region DropTarget declaration + /// + /// + /// + public partial class DropTarget : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.DropTarget"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTarget() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropTarget(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropTarget implementation public partial class DropTarget { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetAdapter.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetAdapter.cs index c79d0aa212..9096b992dc 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.Dnd { - #region DropTargetAdapter + #region DropTargetAdapter declaration + /// + /// + /// + public partial class DropTargetAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTargetAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DropTargetAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DropTargetAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DropTargetAdapterDirect : DropTargetAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.dnd.DropTargetAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region DropTargetAdapter implementation public partial class DropTargetAdapter { #region Constructors @@ -173,7 +240,7 @@ public virtual void DropActionChanged(Java.Awt.Dnd.DropTargetDragEvent arg0) } #endregion - #region DropTargetAdapterDirect + #region DropTargetAdapterDirect implementation public partial class DropTargetAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetContext.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetContext.cs index 92f2fee613..5fe0e29f3b 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetContext.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetContext.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DropTargetContext + #region DropTargetContext declaration + /// + /// + /// + public partial class DropTargetContext : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.dnd.DropTargetContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTargetContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropTargetContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropTargetContext implementation public partial class DropTargetContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDragEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDragEvent.cs index d68a916676..936f005b41 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDragEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDragEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DropTargetDragEvent + #region DropTargetDragEvent declaration + /// + /// + /// + public partial class DropTargetDragEvent : Java.Awt.Dnd.DropTargetEvent + { + const string _bridgeClassName = "java.awt.dnd.DropTargetDragEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTargetDragEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropTargetDragEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropTargetDragEvent implementation public partial class DropTargetDragEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDropEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDropEvent.cs index a2081bbda0..d9d589151e 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDropEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetDropEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DropTargetDropEvent + #region DropTargetDropEvent declaration + /// + /// + /// + public partial class DropTargetDropEvent : Java.Awt.Dnd.DropTargetEvent + { + const string _bridgeClassName = "java.awt.dnd.DropTargetDropEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTargetDropEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropTargetDropEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropTargetDropEvent implementation public partial class DropTargetDropEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetEvent.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetEvent.cs index 8d4e2d778a..3e5133052f 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Dnd { - #region DropTargetEvent + #region DropTargetEvent declaration + /// + /// + /// + public partial class DropTargetEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.awt.dnd.DropTargetEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTargetEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropTargetEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropTargetEvent implementation public partial class DropTargetEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetListener.cs b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetListener.cs index 1d171ce2b1..85a5f65025 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetListener.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/DropTargetListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.Dnd { + #region DropTargetListener declaration + /// + /// + /// + public partial class DropTargetListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropTargetListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.dnd.DropTargetListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DropTargetListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DropTargetListenerDirect : DropTargetListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.dnd.DropTargetListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDropTargetListener /// /// .NET interface for org.mases.jnet.generated.java.awt.dnd.DropTargetListener implementing @@ -68,7 +135,7 @@ public partial interface IDropTargetListener } #endregion - #region DropTargetListener + #region DropTargetListener implementation public partial class DropTargetListener : Java.Awt.Dnd.IDropTargetListener { #region Constructors @@ -216,7 +283,7 @@ public virtual void DropActionChanged(Java.Awt.Dnd.DropTargetDragEvent arg0) } #endregion - #region DropTargetListenerDirect + #region DropTargetListenerDirect implementation public partial class DropTargetListenerDirect : Java.Awt.Dnd.IDropTargetListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/InvalidDnDOperationException.cs b/src/net/JNet/Generated/Java/Awt/Dnd/InvalidDnDOperationException.cs index c9c18d2166..1032a0a988 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/InvalidDnDOperationException.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/InvalidDnDOperationException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Dnd { - #region InvalidDnDOperationException + #region InvalidDnDOperationException declaration + /// + /// + /// + public partial class InvalidDnDOperationException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.awt.dnd.InvalidDnDOperationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidDnDOperationException implementation public partial class InvalidDnDOperationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/MouseDragGestureRecognizer.cs b/src/net/JNet/Generated/Java/Awt/Dnd/MouseDragGestureRecognizer.cs index 63655666a6..a2f7c9a97c 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/MouseDragGestureRecognizer.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/MouseDragGestureRecognizer.cs @@ -25,7 +25,54 @@ namespace Java.Awt.Dnd { - #region MouseDragGestureRecognizer + #region MouseDragGestureRecognizer declaration + /// + /// + /// + public partial class MouseDragGestureRecognizer : Java.Awt.Dnd.DragGestureRecognizer + { + const string _bridgeClassName = "java.awt.dnd.MouseDragGestureRecognizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MouseDragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MouseDragGestureRecognizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MouseDragGestureRecognizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MouseDragGestureRecognizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseDragGestureRecognizer implementation public partial class MouseDragGestureRecognizer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/AllPackageClasses.cs deleted file mode 100644 index 7409aa6310..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/AllPackageClasses.cs +++ /dev/null @@ -1,171 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Dnd.Peer -{ - #region DragSourceContextPeer - /// - /// - /// - public partial class DragSourceContextPeer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.peer.DragSourceContextPeer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DragSourceContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DragSourceContextPeer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DragSourceContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DragSourceContextPeer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetContextPeer - /// - /// - /// - public partial class DropTargetContextPeer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.peer.DropTargetContextPeer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DropTargetContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DropTargetContextPeer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DropTargetContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DropTargetContextPeer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropTargetPeer - /// - /// - /// - public partial class DropTargetPeer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.dnd.peer.DropTargetPeer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DropTargetPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DropTargetPeer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DropTargetPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DropTargetPeer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DragSourceContextPeer.cs b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DragSourceContextPeer.cs index 820b2a2f2c..fde28b8a9d 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DragSourceContextPeer.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DragSourceContextPeer.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Dnd.Peer { + #region DragSourceContextPeer declaration + /// + /// + /// + public partial class DragSourceContextPeer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.peer.DragSourceContextPeer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DragSourceContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DragSourceContextPeer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DragSourceContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DragSourceContextPeer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDragSourceContextPeer /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IDragSourceContextPeer } #endregion - #region DragSourceContextPeer + #region DragSourceContextPeer implementation public partial class DragSourceContextPeer : Java.Awt.Dnd.Peer.IDragSourceContextPeer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetContextPeer.cs b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetContextPeer.cs index 77c8fda999..cc762af9e5 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetContextPeer.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetContextPeer.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Dnd.Peer { + #region DropTargetContextPeer declaration + /// + /// + /// + public partial class DropTargetContextPeer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.peer.DropTargetContextPeer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DropTargetContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DropTargetContextPeer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DropTargetContextPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DropTargetContextPeer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDropTargetContextPeer /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface IDropTargetContextPeer } #endregion - #region DropTargetContextPeer + #region DropTargetContextPeer implementation public partial class DropTargetContextPeer : Java.Awt.Dnd.Peer.IDropTargetContextPeer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetPeer.cs b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetPeer.cs index 7f8c3ca6a0..d56b303558 100644 --- a/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetPeer.cs +++ b/src/net/JNet/Generated/Java/Awt/Dnd/Peer/DropTargetPeer.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Dnd.Peer { + #region DropTargetPeer declaration + /// + /// + /// + public partial class DropTargetPeer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.dnd.peer.DropTargetPeer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DropTargetPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DropTargetPeer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DropTargetPeer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DropTargetPeer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDropTargetPeer /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IDropTargetPeer } #endregion - #region DropTargetPeer + #region DropTargetPeer implementation public partial class DropTargetPeer : Java.Awt.Dnd.Peer.IDropTargetPeer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListener.cs index 4a4c30cc4f..86410d36d4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region AWTEventListener declaration + /// + /// + /// + public partial class AWTEventListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AWTEventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.AWTEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region AWTEventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class AWTEventListenerDirect : AWTEventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.AWTEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAWTEventListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.AWTEventListener implementing @@ -48,7 +115,7 @@ public partial interface IAWTEventListener } #endregion - #region AWTEventListener + #region AWTEventListener implementation public partial class AWTEventListener : Java.Awt.EventNs.IAWTEventListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void EventDispatched(Java.Awt.AWTEvent arg0) } #endregion - #region AWTEventListenerDirect + #region AWTEventListenerDirect implementation public partial class AWTEventListenerDirect : Java.Awt.EventNs.IAWTEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListenerProxy.cs b/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListenerProxy.cs index 0974949ffe..3e84b9496f 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListenerProxy.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/AWTEventListenerProxy.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region AWTEventListenerProxy + #region AWTEventListenerProxy declaration + /// + /// + /// + public partial class AWTEventListenerProxy : Java.Util.EventListenerProxy + { + const string _bridgeClassName = "java.awt.event.AWTEventListenerProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AWTEventListenerProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AWTEventListenerProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AWTEventListenerProxy implementation public partial class AWTEventListenerProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ActionEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ActionEvent.cs index 1daa020e8d..66e5e4734c 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ActionEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ActionEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region ActionEvent + #region ActionEvent declaration + /// + /// + /// + public partial class ActionEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.ActionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActionEvent implementation public partial class ActionEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ActionListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ActionListener.cs index d95f4ddd1b..3cdd57e7e4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ActionListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ActionListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region ActionListener declaration + /// + /// + /// + public partial class ActionListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ActionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ActionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ActionListenerDirect : ActionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.ActionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IActionListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.ActionListener implementing @@ -48,7 +115,7 @@ public partial interface IActionListener } #endregion - #region ActionListener + #region ActionListener implementation public partial class ActionListener : Java.Awt.EventNs.IActionListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ActionPerformed(Java.Awt.EventNs.ActionEvent arg0) } #endregion - #region ActionListenerDirect + #region ActionListenerDirect implementation public partial class ActionListenerDirect : Java.Awt.EventNs.IActionListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentEvent.cs index 796833ee5c..309a6c34a6 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region AdjustmentEvent + #region AdjustmentEvent declaration + /// + /// + /// + public partial class AdjustmentEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.AdjustmentEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AdjustmentEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AdjustmentEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AdjustmentEvent implementation public partial class AdjustmentEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentListener.cs index d4a336f5f0..6ef460b2fd 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/AdjustmentListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region AdjustmentListener declaration + /// + /// + /// + public partial class AdjustmentListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AdjustmentListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.AdjustmentListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region AdjustmentListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class AdjustmentListenerDirect : AdjustmentListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.AdjustmentListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAdjustmentListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.AdjustmentListener implementing @@ -48,7 +115,7 @@ public partial interface IAdjustmentListener } #endregion - #region AdjustmentListener + #region AdjustmentListener implementation public partial class AdjustmentListener : Java.Awt.EventNs.IAdjustmentListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void AdjustmentValueChanged(Java.Awt.EventNs.AdjustmentEvent arg0 } #endregion - #region AdjustmentListenerDirect + #region AdjustmentListenerDirect implementation public partial class AdjustmentListenerDirect : Java.Awt.EventNs.IAdjustmentListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/EventNs/AllPackageClasses.cs deleted file mode 100644 index a3929adb7d..0000000000 --- a/src/net/JNet/Generated/Java/Awt/EventNs/AllPackageClasses.cs +++ /dev/null @@ -1,2584 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.EventNs -{ - #region ActionEvent - /// - /// - /// - public partial class ActionEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.ActionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActionListener - /// - /// - /// - public partial class ActionListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ActionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ActionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ActionListenerDirect : ActionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.ActionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region AdjustmentEvent - /// - /// - /// - public partial class AdjustmentEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.AdjustmentEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AdjustmentEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AdjustmentEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AdjustmentListener - /// - /// - /// - public partial class AdjustmentListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AdjustmentListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.AdjustmentListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region AdjustmentListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class AdjustmentListenerDirect : AdjustmentListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.AdjustmentListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region AWTEventListener - /// - /// - /// - public partial class AWTEventListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AWTEventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.AWTEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region AWTEventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class AWTEventListenerDirect : AWTEventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.AWTEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region AWTEventListenerProxy - /// - /// - /// - public partial class AWTEventListenerProxy : Java.Util.EventListenerProxy - { - const string _bridgeClassName = "java.awt.event.AWTEventListenerProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AWTEventListenerProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AWTEventListenerProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentAdapter - /// - /// - /// - public partial class ComponentAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ComponentAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ComponentAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ComponentAdapterDirect : ComponentAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.ComponentAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ComponentEvent - /// - /// - /// - public partial class ComponentEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.ComponentEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentListener - /// - /// - /// - public partial class ComponentListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ComponentListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ComponentListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ComponentListenerDirect : ComponentListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.ComponentListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ContainerAdapter - /// - /// - /// - public partial class ContainerAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ContainerAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ContainerAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ContainerAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ContainerAdapterDirect : ContainerAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.ContainerAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ContainerEvent - /// - /// - /// - public partial class ContainerEvent : Java.Awt.EventNs.ComponentEvent - { - const string _bridgeClassName = "java.awt.event.ContainerEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ContainerEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ContainerEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ContainerListener - /// - /// - /// - public partial class ContainerListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ContainerListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ContainerListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ContainerListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ContainerListenerDirect : ContainerListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.ContainerListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region FocusAdapter - /// - /// - /// - public partial class FocusAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.FocusAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region FocusAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class FocusAdapterDirect : FocusAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.FocusAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region FocusEvent - /// - /// - /// - public partial class FocusEvent : Java.Awt.EventNs.ComponentEvent - { - const string _bridgeClassName = "java.awt.event.FocusEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FocusEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Cause - /// - /// - /// - public partial class Cause : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.event.FocusEvent$Cause"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Cause() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Cause(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FocusListener - /// - /// - /// - public partial class FocusListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.FocusListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region FocusListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class FocusListenerDirect : FocusListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.FocusListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region HierarchyBoundsAdapter - /// - /// - /// - public partial class HierarchyBoundsAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HierarchyBoundsAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.HierarchyBoundsAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region HierarchyBoundsAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class HierarchyBoundsAdapterDirect : HierarchyBoundsAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.HierarchyBoundsAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region HierarchyBoundsListener - /// - /// - /// - public partial class HierarchyBoundsListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HierarchyBoundsListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.HierarchyBoundsListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region HierarchyBoundsListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class HierarchyBoundsListenerDirect : HierarchyBoundsListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.HierarchyBoundsListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region HierarchyEvent - /// - /// - /// - public partial class HierarchyEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.HierarchyEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HierarchyEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HierarchyEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HierarchyListener - /// - /// - /// - public partial class HierarchyListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HierarchyListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.HierarchyListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region HierarchyListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class HierarchyListenerDirect : HierarchyListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.HierarchyListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region InputEvent - /// - /// - /// - public partial class InputEvent : Java.Awt.EventNs.ComponentEvent - { - const string _bridgeClassName = "java.awt.event.InputEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMethodEvent - /// - /// - /// - public partial class InputMethodEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.InputMethodEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputMethodEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputMethodEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMethodListener - /// - /// - /// - public partial class InputMethodListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputMethodListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.InputMethodListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region InputMethodListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class InputMethodListenerDirect : InputMethodListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.InputMethodListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region InvocationEvent - /// - /// - /// - public partial class InvocationEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.InvocationEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InvocationEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InvocationEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ItemEvent - /// - /// - /// - public partial class ItemEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.ItemEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ItemEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ItemEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ItemListener - /// - /// - /// - public partial class ItemListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ItemListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ItemListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ItemListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ItemListenerDirect : ItemListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.ItemListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region KeyAdapter - /// - /// - /// - public partial class KeyAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.KeyAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region KeyAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class KeyAdapterDirect : KeyAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.KeyAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region KeyEvent - /// - /// - /// - public partial class KeyEvent : Java.Awt.EventNs.InputEvent - { - const string _bridgeClassName = "java.awt.event.KeyEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyListener - /// - /// - /// - public partial class KeyListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.KeyListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region KeyListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class KeyListenerDirect : KeyListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.KeyListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseAdapter - /// - /// - /// - public partial class MouseAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseAdapterDirect : MouseAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.MouseAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseEvent - /// - /// - /// - public partial class MouseEvent : Java.Awt.EventNs.InputEvent - { - const string _bridgeClassName = "java.awt.event.MouseEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseListener - /// - /// - /// - public partial class MouseListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseListenerDirect : MouseListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.MouseListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseMotionAdapter - /// - /// - /// - public partial class MouseMotionAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseMotionAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseMotionAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseMotionAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseMotionAdapterDirect : MouseMotionAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.MouseMotionAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseMotionListener - /// - /// - /// - public partial class MouseMotionListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseMotionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseMotionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseMotionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseMotionListenerDirect : MouseMotionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.MouseMotionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseWheelEvent - /// - /// - /// - public partial class MouseWheelEvent : Java.Awt.EventNs.MouseEvent - { - const string _bridgeClassName = "java.awt.event.MouseWheelEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseWheelEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseWheelEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseWheelListener - /// - /// - /// - public partial class MouseWheelListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseWheelListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseWheelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseWheelListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseWheelListenerDirect : MouseWheelListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.MouseWheelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PaintEvent - /// - /// - /// - public partial class PaintEvent : Java.Awt.EventNs.ComponentEvent - { - const string _bridgeClassName = "java.awt.event.PaintEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PaintEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PaintEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextEvent - /// - /// - /// - public partial class TextEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "java.awt.event.TextEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextListener - /// - /// - /// - public partial class TextListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.TextListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TextListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TextListenerDirect : TextListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.TextListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region WindowAdapter - /// - /// - /// - public partial class WindowAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WindowAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region WindowAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class WindowAdapterDirect : WindowAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.WindowAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region WindowEvent - /// - /// - /// - public partial class WindowEvent : Java.Awt.EventNs.ComponentEvent - { - const string _bridgeClassName = "java.awt.event.WindowEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WindowEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WindowEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WindowFocusListener - /// - /// - /// - public partial class WindowFocusListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WindowFocusListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowFocusListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region WindowFocusListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class WindowFocusListenerDirect : WindowFocusListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.WindowFocusListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region WindowListener - /// - /// - /// - public partial class WindowListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WindowListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region WindowListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class WindowListenerDirect : WindowListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.WindowListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region WindowStateListener - /// - /// - /// - public partial class WindowStateListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WindowStateListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowStateListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region WindowStateListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class WindowStateListenerDirect : WindowStateListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.awt.event.WindowStateListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ComponentAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ComponentAdapter.cs index 1215c6365d..1147961109 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ComponentAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ComponentAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region ComponentAdapter + #region ComponentAdapter declaration + /// + /// + /// + public partial class ComponentAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ComponentAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ComponentAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ComponentAdapterDirect : ComponentAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.ComponentAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ComponentAdapter implementation public partial class ComponentAdapter { #region Constructors @@ -151,7 +218,7 @@ public virtual void ComponentShown(Java.Awt.EventNs.ComponentEvent arg0) } #endregion - #region ComponentAdapterDirect + #region ComponentAdapterDirect implementation public partial class ComponentAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ComponentEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ComponentEvent.cs index cbeb85adef..d84d912626 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ComponentEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ComponentEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region ComponentEvent + #region ComponentEvent declaration + /// + /// + /// + public partial class ComponentEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.ComponentEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentEvent implementation public partial class ComponentEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ComponentListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ComponentListener.cs index 63489ca49e..5b6782fa06 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ComponentListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ComponentListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region ComponentListener declaration + /// + /// + /// + public partial class ComponentListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ComponentListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ComponentListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ComponentListenerDirect : ComponentListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.ComponentListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IComponentListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.ComponentListener implementing @@ -63,7 +130,7 @@ public partial interface IComponentListener } #endregion - #region ComponentListener + #region ComponentListener implementation public partial class ComponentListener : Java.Awt.EventNs.IComponentListener { #region Constructors @@ -189,7 +256,7 @@ public virtual void ComponentShown(Java.Awt.EventNs.ComponentEvent arg0) } #endregion - #region ComponentListenerDirect + #region ComponentListenerDirect implementation public partial class ComponentListenerDirect : Java.Awt.EventNs.IComponentListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ContainerAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ContainerAdapter.cs index 18c9310a2c..9e13d9267c 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ContainerAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ContainerAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region ContainerAdapter + #region ContainerAdapter declaration + /// + /// + /// + public partial class ContainerAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ContainerAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ContainerAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ContainerAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ContainerAdapterDirect : ContainerAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.ContainerAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ContainerAdapter implementation public partial class ContainerAdapter { #region Constructors @@ -107,7 +174,7 @@ public virtual void ComponentRemoved(Java.Awt.EventNs.ContainerEvent arg0) } #endregion - #region ContainerAdapterDirect + #region ContainerAdapterDirect implementation public partial class ContainerAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ContainerEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ContainerEvent.cs index d39125105c..4dccbfd765 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ContainerEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ContainerEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region ContainerEvent + #region ContainerEvent declaration + /// + /// + /// + public partial class ContainerEvent : Java.Awt.EventNs.ComponentEvent + { + const string _bridgeClassName = "java.awt.event.ContainerEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ContainerEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ContainerEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ContainerEvent implementation public partial class ContainerEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ContainerListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ContainerListener.cs index 58521d6c93..d6695baab2 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ContainerListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ContainerListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region ContainerListener declaration + /// + /// + /// + public partial class ContainerListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ContainerListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ContainerListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ContainerListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ContainerListenerDirect : ContainerListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.ContainerListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IContainerListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.ContainerListener implementing @@ -53,7 +120,7 @@ public partial interface IContainerListener } #endregion - #region ContainerListener + #region ContainerListener implementation public partial class ContainerListener : Java.Awt.EventNs.IContainerListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ComponentRemoved(Java.Awt.EventNs.ContainerEvent arg0) } #endregion - #region ContainerListenerDirect + #region ContainerListenerDirect implementation public partial class ContainerListenerDirect : Java.Awt.EventNs.IContainerListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/FocusAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/FocusAdapter.cs index c43e40e9cb..038957d4e2 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/FocusAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/FocusAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region FocusAdapter + #region FocusAdapter declaration + /// + /// + /// + public partial class FocusAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.FocusAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region FocusAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class FocusAdapterDirect : FocusAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.FocusAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region FocusAdapter implementation public partial class FocusAdapter { #region Constructors @@ -107,7 +174,7 @@ public virtual void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region FocusAdapterDirect + #region FocusAdapterDirect implementation public partial class FocusAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/FocusEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/FocusEvent.cs index 161b7d37b7..8bf6f9320e 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/FocusEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/FocusEvent.cs @@ -25,7 +25,97 @@ namespace Java.Awt.EventNs { - #region FocusEvent + #region FocusEvent declaration + /// + /// + /// + public partial class FocusEvent : Java.Awt.EventNs.ComponentEvent + { + const string _bridgeClassName = "java.awt.event.FocusEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FocusEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Cause declaration + /// + /// + /// + public partial class Cause : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.event.FocusEvent$Cause"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Cause() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Cause(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region FocusEvent implementation public partial class FocusEvent { #region Constructors @@ -137,7 +227,7 @@ public bool IsTemporary() #endregion #region Nested classes - #region Cause + #region Cause implementation public partial class Cause { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/FocusListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/FocusListener.cs index 9d03603eee..3a12ffc26d 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/FocusListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/FocusListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region FocusListener declaration + /// + /// + /// + public partial class FocusListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.FocusListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region FocusListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class FocusListenerDirect : FocusListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.FocusListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IFocusListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.FocusListener implementing @@ -53,7 +120,7 @@ public partial interface IFocusListener } #endregion - #region FocusListener + #region FocusListener implementation public partial class FocusListener : Java.Awt.EventNs.IFocusListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region FocusListenerDirect + #region FocusListenerDirect implementation public partial class FocusListenerDirect : Java.Awt.EventNs.IFocusListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsAdapter.cs index 2cb9c264ea..8ce8ef2bc4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region HierarchyBoundsAdapter + #region HierarchyBoundsAdapter declaration + /// + /// + /// + public partial class HierarchyBoundsAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HierarchyBoundsAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.HierarchyBoundsAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region HierarchyBoundsAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class HierarchyBoundsAdapterDirect : HierarchyBoundsAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.HierarchyBoundsAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region HierarchyBoundsAdapter implementation public partial class HierarchyBoundsAdapter { #region Constructors @@ -107,7 +174,7 @@ public virtual void AncestorResized(Java.Awt.EventNs.HierarchyEvent arg0) } #endregion - #region HierarchyBoundsAdapterDirect + #region HierarchyBoundsAdapterDirect implementation public partial class HierarchyBoundsAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsListener.cs index 8fac3f5959..d1273554e6 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyBoundsListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region HierarchyBoundsListener declaration + /// + /// + /// + public partial class HierarchyBoundsListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HierarchyBoundsListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.HierarchyBoundsListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region HierarchyBoundsListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class HierarchyBoundsListenerDirect : HierarchyBoundsListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.HierarchyBoundsListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IHierarchyBoundsListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.HierarchyBoundsListener implementing @@ -53,7 +120,7 @@ public partial interface IHierarchyBoundsListener } #endregion - #region HierarchyBoundsListener + #region HierarchyBoundsListener implementation public partial class HierarchyBoundsListener : Java.Awt.EventNs.IHierarchyBoundsListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void AncestorResized(Java.Awt.EventNs.HierarchyEvent arg0) } #endregion - #region HierarchyBoundsListenerDirect + #region HierarchyBoundsListenerDirect implementation public partial class HierarchyBoundsListenerDirect : Java.Awt.EventNs.IHierarchyBoundsListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyEvent.cs index 14010945f2..d9d27f5f79 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region HierarchyEvent + #region HierarchyEvent declaration + /// + /// + /// + public partial class HierarchyEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.HierarchyEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HierarchyEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HierarchyEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HierarchyEvent implementation public partial class HierarchyEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyListener.cs index ca09751cfe..7c65caffb4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/HierarchyListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region HierarchyListener declaration + /// + /// + /// + public partial class HierarchyListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HierarchyListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.HierarchyListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region HierarchyListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class HierarchyListenerDirect : HierarchyListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.HierarchyListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IHierarchyListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.HierarchyListener implementing @@ -48,7 +115,7 @@ public partial interface IHierarchyListener } #endregion - #region HierarchyListener + #region HierarchyListener implementation public partial class HierarchyListener : Java.Awt.EventNs.IHierarchyListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void HierarchyChanged(Java.Awt.EventNs.HierarchyEvent arg0) } #endregion - #region HierarchyListenerDirect + #region HierarchyListenerDirect implementation public partial class HierarchyListenerDirect : Java.Awt.EventNs.IHierarchyListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/InputEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/InputEvent.cs index 59a3161397..068bde873c 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/InputEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/InputEvent.cs @@ -25,7 +25,54 @@ namespace Java.Awt.EventNs { - #region InputEvent + #region InputEvent declaration + /// + /// + /// + public partial class InputEvent : Java.Awt.EventNs.ComponentEvent + { + const string _bridgeClassName = "java.awt.event.InputEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputEvent implementation public partial class InputEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodEvent.cs index c413f612d5..8c872e8cdb 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region InputMethodEvent + #region InputMethodEvent declaration + /// + /// + /// + public partial class InputMethodEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.InputMethodEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputMethodEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputMethodEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputMethodEvent implementation public partial class InputMethodEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodListener.cs index 5566b1d4e0..6eb2c87ef7 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/InputMethodListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region InputMethodListener declaration + /// + /// + /// + public partial class InputMethodListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputMethodListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.InputMethodListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region InputMethodListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class InputMethodListenerDirect : InputMethodListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.InputMethodListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IInputMethodListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.InputMethodListener implementing @@ -53,7 +120,7 @@ public partial interface IInputMethodListener } #endregion - #region InputMethodListener + #region InputMethodListener implementation public partial class InputMethodListener : Java.Awt.EventNs.IInputMethodListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void InputMethodTextChanged(Java.Awt.EventNs.InputMethodEvent arg } #endregion - #region InputMethodListenerDirect + #region InputMethodListenerDirect implementation public partial class InputMethodListenerDirect : Java.Awt.EventNs.IInputMethodListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/InvocationEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/InvocationEvent.cs index cacef9fe4f..25ed22313a 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/InvocationEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/InvocationEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region InvocationEvent + #region InvocationEvent declaration + /// + /// + /// + public partial class InvocationEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.InvocationEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InvocationEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InvocationEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InvocationEvent implementation public partial class InvocationEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ItemEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ItemEvent.cs index b16ac0b3f5..d9adae15ed 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ItemEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ItemEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region ItemEvent + #region ItemEvent declaration + /// + /// + /// + public partial class ItemEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.ItemEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ItemEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ItemEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ItemEvent implementation public partial class ItemEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/ItemListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/ItemListener.cs index fcbb82ee1f..d6d94bc546 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/ItemListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/ItemListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region ItemListener declaration + /// + /// + /// + public partial class ItemListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ItemListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.ItemListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ItemListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ItemListenerDirect : ItemListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.ItemListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IItemListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.ItemListener implementing @@ -48,7 +115,7 @@ public partial interface IItemListener } #endregion - #region ItemListener + #region ItemListener implementation public partial class ItemListener : Java.Awt.EventNs.IItemListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ItemStateChanged(Java.Awt.EventNs.ItemEvent arg0) } #endregion - #region ItemListenerDirect + #region ItemListenerDirect implementation public partial class ItemListenerDirect : Java.Awt.EventNs.IItemListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/KeyAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/KeyAdapter.cs index 2a2584194a..eaa47e1396 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/KeyAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/KeyAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region KeyAdapter + #region KeyAdapter declaration + /// + /// + /// + public partial class KeyAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.KeyAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region KeyAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class KeyAdapterDirect : KeyAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.KeyAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region KeyAdapter implementation public partial class KeyAdapter { #region Constructors @@ -129,7 +196,7 @@ public virtual void KeyTyped(Java.Awt.EventNs.KeyEvent arg0) } #endregion - #region KeyAdapterDirect + #region KeyAdapterDirect implementation public partial class KeyAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/KeyEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/KeyEvent.cs index ba29b68a78..feeef87bf7 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/KeyEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/KeyEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region KeyEvent + #region KeyEvent declaration + /// + /// + /// + public partial class KeyEvent : Java.Awt.EventNs.InputEvent + { + const string _bridgeClassName = "java.awt.event.KeyEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyEvent implementation public partial class KeyEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/KeyListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/KeyListener.cs index f5c3f16058..d47c9ce379 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/KeyListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/KeyListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region KeyListener declaration + /// + /// + /// + public partial class KeyListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.KeyListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region KeyListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class KeyListenerDirect : KeyListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.KeyListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IKeyListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.KeyListener implementing @@ -58,7 +125,7 @@ public partial interface IKeyListener } #endregion - #region KeyListener + #region KeyListener implementation public partial class KeyListener : Java.Awt.EventNs.IKeyListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void KeyTyped(Java.Awt.EventNs.KeyEvent arg0) } #endregion - #region KeyListenerDirect + #region KeyListenerDirect implementation public partial class KeyListenerDirect : Java.Awt.EventNs.IKeyListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseAdapter.cs index 7815636dac..31c6cc725a 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region MouseAdapter + #region MouseAdapter declaration + /// + /// + /// + public partial class MouseAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseAdapterDirect : MouseAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.MouseAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region MouseAdapter implementation public partial class MouseAdapter { #region Constructors @@ -239,7 +306,7 @@ public virtual void MouseWheelMoved(Java.Awt.EventNs.MouseWheelEvent arg0) } #endregion - #region MouseAdapterDirect + #region MouseAdapterDirect implementation public partial class MouseAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseEvent.cs index b81d2c425a..b003b988f4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region MouseEvent + #region MouseEvent declaration + /// + /// + /// + public partial class MouseEvent : Java.Awt.EventNs.InputEvent + { + const string _bridgeClassName = "java.awt.event.MouseEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseEvent implementation public partial class MouseEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseListener.cs index 807cdab207..5a4d613302 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region MouseListener declaration + /// + /// + /// + public partial class MouseListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseListenerDirect : MouseListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.MouseListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMouseListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.MouseListener implementing @@ -68,7 +135,7 @@ public partial interface IMouseListener } #endregion - #region MouseListener + #region MouseListener implementation public partial class MouseListener : Java.Awt.EventNs.IMouseListener { #region Constructors @@ -216,7 +283,7 @@ public virtual void MouseReleased(Java.Awt.EventNs.MouseEvent arg0) } #endregion - #region MouseListenerDirect + #region MouseListenerDirect implementation public partial class MouseListenerDirect : Java.Awt.EventNs.IMouseListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionAdapter.cs index 7f4e79b743..c0c0e77685 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region MouseMotionAdapter + #region MouseMotionAdapter declaration + /// + /// + /// + public partial class MouseMotionAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseMotionAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseMotionAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseMotionAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseMotionAdapterDirect : MouseMotionAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.MouseMotionAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region MouseMotionAdapter implementation public partial class MouseMotionAdapter { #region Constructors @@ -107,7 +174,7 @@ public virtual void MouseMoved(Java.Awt.EventNs.MouseEvent arg0) } #endregion - #region MouseMotionAdapterDirect + #region MouseMotionAdapterDirect implementation public partial class MouseMotionAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionListener.cs index 87f32a823f..2220e09e97 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseMotionListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region MouseMotionListener declaration + /// + /// + /// + public partial class MouseMotionListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseMotionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseMotionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseMotionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseMotionListenerDirect : MouseMotionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.MouseMotionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMouseMotionListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.MouseMotionListener implementing @@ -53,7 +120,7 @@ public partial interface IMouseMotionListener } #endregion - #region MouseMotionListener + #region MouseMotionListener implementation public partial class MouseMotionListener : Java.Awt.EventNs.IMouseMotionListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void MouseMoved(Java.Awt.EventNs.MouseEvent arg0) } #endregion - #region MouseMotionListenerDirect + #region MouseMotionListenerDirect implementation public partial class MouseMotionListenerDirect : Java.Awt.EventNs.IMouseMotionListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelEvent.cs index ca54143d13..81a3ba19cb 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region MouseWheelEvent + #region MouseWheelEvent declaration + /// + /// + /// + public partial class MouseWheelEvent : Java.Awt.EventNs.MouseEvent + { + const string _bridgeClassName = "java.awt.event.MouseWheelEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseWheelEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseWheelEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseWheelEvent implementation public partial class MouseWheelEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelListener.cs index dd8312936f..74c0fcad73 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/MouseWheelListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region MouseWheelListener declaration + /// + /// + /// + public partial class MouseWheelListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseWheelListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.MouseWheelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseWheelListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseWheelListenerDirect : MouseWheelListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.MouseWheelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMouseWheelListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.MouseWheelListener implementing @@ -48,7 +115,7 @@ public partial interface IMouseWheelListener } #endregion - #region MouseWheelListener + #region MouseWheelListener implementation public partial class MouseWheelListener : Java.Awt.EventNs.IMouseWheelListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void MouseWheelMoved(Java.Awt.EventNs.MouseWheelEvent arg0) } #endregion - #region MouseWheelListenerDirect + #region MouseWheelListenerDirect implementation public partial class MouseWheelListenerDirect : Java.Awt.EventNs.IMouseWheelListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/PaintEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/PaintEvent.cs index afc19719cf..d50415e2c4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/PaintEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/PaintEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region PaintEvent + #region PaintEvent declaration + /// + /// + /// + public partial class PaintEvent : Java.Awt.EventNs.ComponentEvent + { + const string _bridgeClassName = "java.awt.event.PaintEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PaintEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PaintEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PaintEvent implementation public partial class PaintEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/TextEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/TextEvent.cs index c67c44de61..0983ec32b3 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/TextEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/TextEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region TextEvent + #region TextEvent declaration + /// + /// + /// + public partial class TextEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "java.awt.event.TextEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextEvent implementation public partial class TextEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/TextListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/TextListener.cs index cc809ee52c..9e13f938cc 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/TextListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/TextListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region TextListener declaration + /// + /// + /// + public partial class TextListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.TextListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TextListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TextListenerDirect : TextListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.TextListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITextListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.TextListener implementing @@ -48,7 +115,7 @@ public partial interface ITextListener } #endregion - #region TextListener + #region TextListener implementation public partial class TextListener : Java.Awt.EventNs.ITextListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void TextValueChanged(Java.Awt.EventNs.TextEvent arg0) } #endregion - #region TextListenerDirect + #region TextListenerDirect implementation public partial class TextListenerDirect : Java.Awt.EventNs.ITextListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/WindowAdapter.cs b/src/net/JNet/Generated/Java/Awt/EventNs/WindowAdapter.cs index 92ecd4716f..efc33c21ce 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/WindowAdapter.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/WindowAdapter.cs @@ -25,7 +25,74 @@ namespace Java.Awt.EventNs { - #region WindowAdapter + #region WindowAdapter declaration + /// + /// + /// + public partial class WindowAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WindowAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region WindowAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class WindowAdapterDirect : WindowAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.WindowAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region WindowAdapter implementation public partial class WindowAdapter { #region Constructors @@ -283,7 +350,7 @@ public virtual void WindowStateChanged(Java.Awt.EventNs.WindowEvent arg0) } #endregion - #region WindowAdapterDirect + #region WindowAdapterDirect implementation public partial class WindowAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/WindowEvent.cs b/src/net/JNet/Generated/Java/Awt/EventNs/WindowEvent.cs index 9f9c09f740..f073218cbc 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/WindowEvent.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/WindowEvent.cs @@ -25,7 +25,52 @@ namespace Java.Awt.EventNs { - #region WindowEvent + #region WindowEvent declaration + /// + /// + /// + public partial class WindowEvent : Java.Awt.EventNs.ComponentEvent + { + const string _bridgeClassName = "java.awt.event.WindowEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WindowEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WindowEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WindowEvent implementation public partial class WindowEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/WindowFocusListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/WindowFocusListener.cs index 59860c13dc..ce390c9489 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/WindowFocusListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/WindowFocusListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region WindowFocusListener declaration + /// + /// + /// + public partial class WindowFocusListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WindowFocusListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowFocusListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region WindowFocusListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class WindowFocusListenerDirect : WindowFocusListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.WindowFocusListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IWindowFocusListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.WindowFocusListener implementing @@ -53,7 +120,7 @@ public partial interface IWindowFocusListener } #endregion - #region WindowFocusListener + #region WindowFocusListener implementation public partial class WindowFocusListener : Java.Awt.EventNs.IWindowFocusListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void WindowLostFocus(Java.Awt.EventNs.WindowEvent arg0) } #endregion - #region WindowFocusListenerDirect + #region WindowFocusListenerDirect implementation public partial class WindowFocusListenerDirect : Java.Awt.EventNs.IWindowFocusListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/WindowListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/WindowListener.cs index b80aa8bd90..802effd97d 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/WindowListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/WindowListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region WindowListener declaration + /// + /// + /// + public partial class WindowListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WindowListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region WindowListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class WindowListenerDirect : WindowListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.WindowListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IWindowListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.WindowListener implementing @@ -78,7 +145,7 @@ public partial interface IWindowListener } #endregion - #region WindowListener + #region WindowListener implementation public partial class WindowListener : Java.Awt.EventNs.IWindowListener { #region Constructors @@ -270,7 +337,7 @@ public virtual void WindowOpened(Java.Awt.EventNs.WindowEvent arg0) } #endregion - #region WindowListenerDirect + #region WindowListenerDirect implementation public partial class WindowListenerDirect : Java.Awt.EventNs.IWindowListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventNs/WindowStateListener.cs b/src/net/JNet/Generated/Java/Awt/EventNs/WindowStateListener.cs index 8d9162d708..af871beef4 100644 --- a/src/net/JNet/Generated/Java/Awt/EventNs/WindowStateListener.cs +++ b/src/net/JNet/Generated/Java/Awt/EventNs/WindowStateListener.cs @@ -25,6 +25,73 @@ namespace Java.Awt.EventNs { + #region WindowStateListener declaration + /// + /// + /// + public partial class WindowStateListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WindowStateListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.awt.event.WindowStateListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region WindowStateListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class WindowStateListenerDirect : WindowStateListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.awt.event.WindowStateListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IWindowStateListener /// /// .NET interface for org.mases.jnet.generated.java.awt.event.WindowStateListener implementing @@ -48,7 +115,7 @@ public partial interface IWindowStateListener } #endregion - #region WindowStateListener + #region WindowStateListener implementation public partial class WindowStateListener : Java.Awt.EventNs.IWindowStateListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void WindowStateChanged(Java.Awt.EventNs.WindowEvent arg0) } #endregion - #region WindowStateListenerDirect + #region WindowStateListenerDirect implementation public partial class WindowStateListenerDirect : Java.Awt.EventNs.IWindowStateListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/EventQueue.cs b/src/net/JNet/Generated/Java/Awt/EventQueue.cs index 2196407036..5bc4d230c1 100644 --- a/src/net/JNet/Generated/Java/Awt/EventQueue.cs +++ b/src/net/JNet/Generated/Java/Awt/EventQueue.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region EventQueue + #region EventQueue declaration + /// + /// + /// + public partial class EventQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.EventQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventQueue implementation public partial class EventQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FileDialog.cs b/src/net/JNet/Generated/Java/Awt/FileDialog.cs index d81c124d2a..ad195cb5f0 100644 --- a/src/net/JNet/Generated/Java/Awt/FileDialog.cs +++ b/src/net/JNet/Generated/Java/Awt/FileDialog.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region FileDialog + #region FileDialog declaration + /// + /// + /// + public partial class FileDialog : Java.Awt.Dialog + { + const string _bridgeClassName = "java.awt.FileDialog"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileDialog() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileDialog(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileDialog implementation public partial class FileDialog { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FlowLayout.cs b/src/net/JNet/Generated/Java/Awt/FlowLayout.cs index c0bb5566bc..a85fbeb179 100644 --- a/src/net/JNet/Generated/Java/Awt/FlowLayout.cs +++ b/src/net/JNet/Generated/Java/Awt/FlowLayout.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region FlowLayout + #region FlowLayout declaration + /// + /// + /// + public partial class FlowLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.FlowLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FlowLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FlowLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FlowLayout implementation public partial class FlowLayout { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FocusTraversalPolicy.cs b/src/net/JNet/Generated/Java/Awt/FocusTraversalPolicy.cs index a3d594e2f7..5eb54b7c68 100644 --- a/src/net/JNet/Generated/Java/Awt/FocusTraversalPolicy.cs +++ b/src/net/JNet/Generated/Java/Awt/FocusTraversalPolicy.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region FocusTraversalPolicy + #region FocusTraversalPolicy declaration + /// + /// + /// + public partial class FocusTraversalPolicy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.FocusTraversalPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FocusTraversalPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FocusTraversalPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FocusTraversalPolicy implementation public partial class FocusTraversalPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Font.cs b/src/net/JNet/Generated/Java/Awt/Font.cs index 981fcef55d..f18dc45f98 100644 --- a/src/net/JNet/Generated/Java/Awt/Font.cs +++ b/src/net/JNet/Generated/Java/Awt/Font.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Font + #region Font declaration + /// + /// + /// + public partial class Font : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.Font"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Font() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Font(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Font implementation public partial class Font { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontFormatException.cs b/src/net/JNet/Generated/Java/Awt/FontFormatException.cs index af38362dc1..cc1351faa5 100644 --- a/src/net/JNet/Generated/Java/Awt/FontFormatException.cs +++ b/src/net/JNet/Generated/Java/Awt/FontFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Awt { - #region FontFormatException + #region FontFormatException declaration + /// + /// + /// + public partial class FontFormatException : Java.Lang.Exception + { + const string _bridgeClassName = "java.awt.FontFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FontFormatException implementation public partial class FontFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontMetrics.cs b/src/net/JNet/Generated/Java/Awt/FontMetrics.cs index 8b82ab124e..c51f3b2a90 100644 --- a/src/net/JNet/Generated/Java/Awt/FontMetrics.cs +++ b/src/net/JNet/Generated/Java/Awt/FontMetrics.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region FontMetrics + #region FontMetrics declaration + /// + /// + /// + public partial class FontMetrics : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.FontMetrics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FontMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FontMetrics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FontMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FontMetrics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FontMetrics implementation public partial class FontMetrics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/FontNs/AllPackageClasses.cs deleted file mode 100644 index a8a1f1e875..0000000000 --- a/src/net/JNet/Generated/Java/Awt/FontNs/AllPackageClasses.cs +++ /dev/null @@ -1,942 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.FontNs -{ - #region FontRenderContext - /// - /// - /// - public partial class FontRenderContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.FontRenderContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FontRenderContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FontRenderContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GlyphJustificationInfo - /// - /// - /// - public partial class GlyphJustificationInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.GlyphJustificationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GlyphJustificationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GlyphJustificationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GlyphMetrics - /// - /// - /// - public partial class GlyphMetrics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.GlyphMetrics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GlyphMetrics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GlyphMetrics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GlyphVector - /// - /// - /// - public partial class GlyphVector : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.font.GlyphVector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GlyphVector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GlyphVector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GlyphVector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GlyphVector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GraphicAttribute - /// - /// - /// - public partial class GraphicAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.GraphicAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GraphicAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GraphicAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GraphicAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageGraphicAttribute - /// - /// - /// - public partial class ImageGraphicAttribute : Java.Awt.FontNs.GraphicAttribute - { - const string _bridgeClassName = "java.awt.font.ImageGraphicAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageGraphicAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageGraphicAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayoutPath - /// - /// - /// - public partial class LayoutPath : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.LayoutPath"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LayoutPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutPath() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LayoutPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutPath(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LineBreakMeasurer - /// - /// - /// - public partial class LineBreakMeasurer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.LineBreakMeasurer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LineBreakMeasurer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LineBreakMeasurer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LineMetrics - /// - /// - /// - public partial class LineMetrics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.LineMetrics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LineMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LineMetrics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LineMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LineMetrics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultipleMaster - /// - /// - /// - public partial class MultipleMaster : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.MultipleMaster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MultipleMaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultipleMaster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MultipleMaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultipleMaster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumericShaper - /// - /// - /// - public partial class NumericShaper : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.font.NumericShaper"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumericShaper() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumericShaper(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Range - /// - /// - /// - public partial class Range : Java.Lang.Enum - { - const string _bridgeClassName = "java.awt.font.NumericShaper$Range"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Range() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Range(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region OpenType - /// - /// - /// - public partial class OpenType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.OpenType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ShapeGraphicAttribute - /// - /// - /// - public partial class ShapeGraphicAttribute : Java.Awt.FontNs.GraphicAttribute - { - const string _bridgeClassName = "java.awt.font.ShapeGraphicAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ShapeGraphicAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ShapeGraphicAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextAttribute - /// - /// - /// - public partial class TextAttribute : Java.Text.AttributedCharacterIterator.Attribute - { - const string _bridgeClassName = "java.awt.font.TextAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextHitInfo - /// - /// - /// - public partial class TextHitInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.TextHitInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextHitInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextHitInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextLayout - /// - /// - /// - public partial class TextLayout : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.font.TextLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CaretPolicy - /// - /// - /// - public partial class CaretPolicy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.font.TextLayout$CaretPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CaretPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CaretPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region TextMeasurer - /// - /// - /// - public partial class TextMeasurer : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.font.TextMeasurer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextMeasurer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextMeasurer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransformAttribute - /// - /// - /// - public partial class TransformAttribute : Java.Io.Serializable - { - const string _bridgeClassName = "java.awt.font.TransformAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TransformAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TransformAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/FontRenderContext.cs b/src/net/JNet/Generated/Java/Awt/FontNs/FontRenderContext.cs index a9796ce1dc..7e6ddcc4ed 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/FontRenderContext.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/FontRenderContext.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region FontRenderContext + #region FontRenderContext declaration + /// + /// + /// + public partial class FontRenderContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.FontRenderContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FontRenderContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FontRenderContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FontRenderContext implementation public partial class FontRenderContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/GlyphJustificationInfo.cs b/src/net/JNet/Generated/Java/Awt/FontNs/GlyphJustificationInfo.cs index d4a1a431b8..5acdd58416 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/GlyphJustificationInfo.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/GlyphJustificationInfo.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region GlyphJustificationInfo + #region GlyphJustificationInfo declaration + /// + /// + /// + public partial class GlyphJustificationInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.GlyphJustificationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GlyphJustificationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GlyphJustificationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GlyphJustificationInfo implementation public partial class GlyphJustificationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/GlyphMetrics.cs b/src/net/JNet/Generated/Java/Awt/FontNs/GlyphMetrics.cs index b18d4478e3..762577ff8c 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/GlyphMetrics.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/GlyphMetrics.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region GlyphMetrics + #region GlyphMetrics declaration + /// + /// + /// + public partial class GlyphMetrics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.GlyphMetrics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GlyphMetrics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GlyphMetrics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GlyphMetrics implementation public partial class GlyphMetrics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/GlyphVector.cs b/src/net/JNet/Generated/Java/Awt/FontNs/GlyphVector.cs index 33718d93f9..d5a7849b1d 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/GlyphVector.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/GlyphVector.cs @@ -25,7 +25,54 @@ namespace Java.Awt.FontNs { - #region GlyphVector + #region GlyphVector declaration + /// + /// + /// + public partial class GlyphVector : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.font.GlyphVector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GlyphVector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GlyphVector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GlyphVector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GlyphVector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GlyphVector implementation public partial class GlyphVector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/GraphicAttribute.cs b/src/net/JNet/Generated/Java/Awt/FontNs/GraphicAttribute.cs index aec501fb3f..d4a2d11fbb 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/GraphicAttribute.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/GraphicAttribute.cs @@ -25,7 +25,54 @@ namespace Java.Awt.FontNs { - #region GraphicAttribute + #region GraphicAttribute declaration + /// + /// + /// + public partial class GraphicAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.GraphicAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GraphicAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GraphicAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GraphicAttribute implementation public partial class GraphicAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/ImageGraphicAttribute.cs b/src/net/JNet/Generated/Java/Awt/FontNs/ImageGraphicAttribute.cs index 96cd0b6d96..41e3d9dd82 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/ImageGraphicAttribute.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/ImageGraphicAttribute.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region ImageGraphicAttribute + #region ImageGraphicAttribute declaration + /// + /// + /// + public partial class ImageGraphicAttribute : Java.Awt.FontNs.GraphicAttribute + { + const string _bridgeClassName = "java.awt.font.ImageGraphicAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageGraphicAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageGraphicAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageGraphicAttribute implementation public partial class ImageGraphicAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/LayoutPath.cs b/src/net/JNet/Generated/Java/Awt/FontNs/LayoutPath.cs index bb695a752f..b2cbd87126 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/LayoutPath.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/LayoutPath.cs @@ -25,7 +25,54 @@ namespace Java.Awt.FontNs { - #region LayoutPath + #region LayoutPath declaration + /// + /// + /// + public partial class LayoutPath : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.LayoutPath"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LayoutPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutPath() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LayoutPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutPath(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LayoutPath implementation public partial class LayoutPath { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/LineBreakMeasurer.cs b/src/net/JNet/Generated/Java/Awt/FontNs/LineBreakMeasurer.cs index 4550029e60..ce525d2283 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/LineBreakMeasurer.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/LineBreakMeasurer.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region LineBreakMeasurer + #region LineBreakMeasurer declaration + /// + /// + /// + public partial class LineBreakMeasurer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.LineBreakMeasurer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LineBreakMeasurer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LineBreakMeasurer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LineBreakMeasurer implementation public partial class LineBreakMeasurer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/LineMetrics.cs b/src/net/JNet/Generated/Java/Awt/FontNs/LineMetrics.cs index 80853a2c0b..431b795ade 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/LineMetrics.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/LineMetrics.cs @@ -25,7 +25,54 @@ namespace Java.Awt.FontNs { - #region LineMetrics + #region LineMetrics declaration + /// + /// + /// + public partial class LineMetrics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.LineMetrics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LineMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LineMetrics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LineMetrics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LineMetrics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LineMetrics implementation public partial class LineMetrics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/MultipleMaster.cs b/src/net/JNet/Generated/Java/Awt/FontNs/MultipleMaster.cs index aa42a117a3..df48d7e56d 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/MultipleMaster.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/MultipleMaster.cs @@ -25,6 +25,53 @@ namespace Java.Awt.FontNs { + #region MultipleMaster declaration + /// + /// + /// + public partial class MultipleMaster : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.MultipleMaster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MultipleMaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultipleMaster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MultipleMaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultipleMaster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMultipleMaster /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IMultipleMaster } #endregion - #region MultipleMaster + #region MultipleMaster implementation public partial class MultipleMaster : Java.Awt.FontNs.IMultipleMaster { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/NumericShaper.cs b/src/net/JNet/Generated/Java/Awt/FontNs/NumericShaper.cs index 0409529a68..4389672544 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/NumericShaper.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/NumericShaper.cs @@ -25,7 +25,97 @@ namespace Java.Awt.FontNs { - #region NumericShaper + #region NumericShaper declaration + /// + /// + /// + public partial class NumericShaper : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.font.NumericShaper"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumericShaper() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumericShaper(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Range declaration + /// + /// + /// + public partial class Range : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.font.NumericShaper$Range"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Range() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Range(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region NumericShaper implementation public partial class NumericShaper { #region Constructors @@ -279,7 +369,7 @@ public void Shape(char[] arg0, int arg1, int arg2) #endregion #region Nested classes - #region Range + #region Range implementation public partial class Range { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/OpenType.cs b/src/net/JNet/Generated/Java/Awt/FontNs/OpenType.cs index 064deb3430..57dcd0b80e 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/OpenType.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/OpenType.cs @@ -25,6 +25,53 @@ namespace Java.Awt.FontNs { + #region OpenType declaration + /// + /// + /// + public partial class OpenType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.OpenType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenType /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface IOpenType } #endregion - #region OpenType + #region OpenType implementation public partial class OpenType : Java.Awt.FontNs.IOpenType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/ShapeGraphicAttribute.cs b/src/net/JNet/Generated/Java/Awt/FontNs/ShapeGraphicAttribute.cs index 4947a25471..6be25fa6d7 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/ShapeGraphicAttribute.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/ShapeGraphicAttribute.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region ShapeGraphicAttribute + #region ShapeGraphicAttribute declaration + /// + /// + /// + public partial class ShapeGraphicAttribute : Java.Awt.FontNs.GraphicAttribute + { + const string _bridgeClassName = "java.awt.font.ShapeGraphicAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ShapeGraphicAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ShapeGraphicAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ShapeGraphicAttribute implementation public partial class ShapeGraphicAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/TextAttribute.cs b/src/net/JNet/Generated/Java/Awt/FontNs/TextAttribute.cs index 1d981be258..1c7132aa6d 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/TextAttribute.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/TextAttribute.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region TextAttribute + #region TextAttribute declaration + /// + /// + /// + public partial class TextAttribute : Java.Text.AttributedCharacterIterator.Attribute + { + const string _bridgeClassName = "java.awt.font.TextAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextAttribute implementation public partial class TextAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/TextHitInfo.cs b/src/net/JNet/Generated/Java/Awt/FontNs/TextHitInfo.cs index 0e12e441df..d1af6f831b 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/TextHitInfo.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/TextHitInfo.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region TextHitInfo + #region TextHitInfo declaration + /// + /// + /// + public partial class TextHitInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.TextHitInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextHitInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextHitInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextHitInfo implementation public partial class TextHitInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/TextLayout.cs b/src/net/JNet/Generated/Java/Awt/FontNs/TextLayout.cs index 491cd5125f..83bc278bd9 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/TextLayout.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/TextLayout.cs @@ -25,7 +25,97 @@ namespace Java.Awt.FontNs { - #region TextLayout + #region TextLayout declaration + /// + /// + /// + public partial class TextLayout : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.font.TextLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CaretPolicy declaration + /// + /// + /// + public partial class CaretPolicy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.font.TextLayout$CaretPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CaretPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CaretPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region TextLayout implementation public partial class TextLayout { #region Constructors @@ -443,7 +533,7 @@ public void HitToPoint(Java.Awt.FontNs.TextHitInfo arg0, Java.Awt.Geom.Point2D a #endregion #region Nested classes - #region CaretPolicy + #region CaretPolicy implementation public partial class CaretPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/TextMeasurer.cs b/src/net/JNet/Generated/Java/Awt/FontNs/TextMeasurer.cs index 01bd2ec709..ba888d59f5 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/TextMeasurer.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/TextMeasurer.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region TextMeasurer + #region TextMeasurer declaration + /// + /// + /// + public partial class TextMeasurer : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.font.TextMeasurer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextMeasurer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextMeasurer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextMeasurer implementation public partial class TextMeasurer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/FontNs/TransformAttribute.cs b/src/net/JNet/Generated/Java/Awt/FontNs/TransformAttribute.cs index 43715c3e4c..0ffb3aeba6 100644 --- a/src/net/JNet/Generated/Java/Awt/FontNs/TransformAttribute.cs +++ b/src/net/JNet/Generated/Java/Awt/FontNs/TransformAttribute.cs @@ -25,7 +25,52 @@ namespace Java.Awt.FontNs { - #region TransformAttribute + #region TransformAttribute declaration + /// + /// + /// + public partial class TransformAttribute : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.font.TransformAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TransformAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TransformAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TransformAttribute implementation public partial class TransformAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Frame.cs b/src/net/JNet/Generated/Java/Awt/Frame.cs index 62db5a3900..91a9947d65 100644 --- a/src/net/JNet/Generated/Java/Awt/Frame.cs +++ b/src/net/JNet/Generated/Java/Awt/Frame.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Frame + #region Frame declaration + /// + /// + /// + public partial class Frame : Java.Awt.Window + { + const string _bridgeClassName = "java.awt.Frame"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Frame() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Frame(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Frame implementation public partial class Frame { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/AffineTransform.cs b/src/net/JNet/Generated/Java/Awt/Geom/AffineTransform.cs index a017e573e5..7cc0c434bc 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/AffineTransform.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/AffineTransform.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Geom { - #region AffineTransform + #region AffineTransform declaration + /// + /// + /// + public partial class AffineTransform : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.AffineTransform"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AffineTransform() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AffineTransform(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AffineTransform implementation public partial class AffineTransform { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Geom/AllPackageClasses.cs deleted file mode 100644 index 09260999e8..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Geom/AllPackageClasses.cs +++ /dev/null @@ -1,1618 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Geom -{ - #region AffineTransform - /// - /// - /// - public partial class AffineTransform : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.AffineTransform"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AffineTransform() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AffineTransform(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Arc2D - /// - /// - /// - public partial class Arc2D : Java.Awt.Geom.RectangularShape - { - const string _bridgeClassName = "java.awt.geom.Arc2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Arc2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Arc2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Arc2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Arc2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.Arc2D - { - const string _bridgeClassName = "java.awt.geom.Arc2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.Arc2D - { - const string _bridgeClassName = "java.awt.geom.Arc2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Area - /// - /// - /// - public partial class Area : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.Area"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Area() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Area(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CubicCurve2D - /// - /// - /// - public partial class CubicCurve2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.CubicCurve2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CubicCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CubicCurve2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CubicCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CubicCurve2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.CubicCurve2D - { - const string _bridgeClassName = "java.awt.geom.CubicCurve2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.CubicCurve2D - { - const string _bridgeClassName = "java.awt.geom.CubicCurve2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Dimension2D - /// - /// - /// - public partial class Dimension2D : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.geom.Dimension2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Dimension2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Dimension2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Dimension2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Dimension2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Ellipse2D - /// - /// - /// - public partial class Ellipse2D : Java.Awt.Geom.RectangularShape - { - const string _bridgeClassName = "java.awt.geom.Ellipse2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Ellipse2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Ellipse2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Ellipse2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Ellipse2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.Ellipse2D - { - const string _bridgeClassName = "java.awt.geom.Ellipse2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.Ellipse2D - { - const string _bridgeClassName = "java.awt.geom.Ellipse2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FlatteningPathIterator - /// - /// - /// - public partial class FlatteningPathIterator : Java.Awt.Geom.PathIterator - { - const string _bridgeClassName = "java.awt.geom.FlatteningPathIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FlatteningPathIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FlatteningPathIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GeneralPath - /// - /// - /// - public partial class GeneralPath : Java.Awt.Geom.Path2D.Float - { - const string _bridgeClassName = "java.awt.geom.GeneralPath"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GeneralPath() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GeneralPath(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalPathStateException - /// - /// - /// - public partial class IllegalPathStateException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.awt.geom.IllegalPathStateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Line2D - /// - /// - /// - public partial class Line2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.Line2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Line2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Line2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Line2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Line2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.Line2D - { - const string _bridgeClassName = "java.awt.geom.Line2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.Line2D - { - const string _bridgeClassName = "java.awt.geom.Line2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region NoninvertibleTransformException - /// - /// - /// - public partial class NoninvertibleTransformException : Java.Lang.Exception - { - const string _bridgeClassName = "java.awt.geom.NoninvertibleTransformException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Path2D - /// - /// - /// - public partial class Path2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.Path2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Path2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Path2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Path2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Path2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.Path2D - { - const string _bridgeClassName = "java.awt.geom.Path2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.Path2D - { - const string _bridgeClassName = "java.awt.geom.Path2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region PathIterator - /// - /// - /// - public partial class PathIterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.PathIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PathIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PathIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PathIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PathIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Point2D - /// - /// - /// - public partial class Point2D : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.geom.Point2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Point2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Point2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Point2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Point2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.Point2D - { - const string _bridgeClassName = "java.awt.geom.Point2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.Point2D - { - const string _bridgeClassName = "java.awt.geom.Point2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region QuadCurve2D - /// - /// - /// - public partial class QuadCurve2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.QuadCurve2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("QuadCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QuadCurve2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("QuadCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QuadCurve2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.QuadCurve2D - { - const string _bridgeClassName = "java.awt.geom.QuadCurve2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.QuadCurve2D - { - const string _bridgeClassName = "java.awt.geom.QuadCurve2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Rectangle2D - /// - /// - /// - public partial class Rectangle2D : Java.Awt.Geom.RectangularShape - { - const string _bridgeClassName = "java.awt.geom.Rectangle2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Rectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Rectangle2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Rectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Rectangle2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.Rectangle2D - { - const string _bridgeClassName = "java.awt.geom.Rectangle2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.Rectangle2D - { - const string _bridgeClassName = "java.awt.geom.Rectangle2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region RectangularShape - /// - /// - /// - public partial class RectangularShape : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.geom.RectangularShape"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RectangularShape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RectangularShape() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RectangularShape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RectangularShape(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoundRectangle2D - /// - /// - /// - public partial class RoundRectangle2D : Java.Awt.Geom.RectangularShape - { - const string _bridgeClassName = "java.awt.geom.RoundRectangle2D"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RoundRectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RoundRectangle2D() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RoundRectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RoundRectangle2D(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Double - /// - /// - /// - public partial class Double : Java.Awt.Geom.RoundRectangle2D - { - const string _bridgeClassName = "java.awt.geom.RoundRectangle2D$Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Awt.Geom.RoundRectangle2D - { - const string _bridgeClassName = "java.awt.geom.RoundRectangle2D$Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Arc2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Arc2D.cs index 4052e4ff9b..c9d5dd6d60 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Arc2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Arc2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region Arc2D + #region Arc2D declaration + /// + /// + /// + public partial class Arc2D : Java.Awt.Geom.RectangularShape + { + const string _bridgeClassName = "java.awt.geom.Arc2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Arc2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Arc2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Arc2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Arc2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.Arc2D + { + const string _bridgeClassName = "java.awt.geom.Arc2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.Arc2D + { + const string _bridgeClassName = "java.awt.geom.Arc2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Arc2D implementation public partial class Arc2D { #region Constructors @@ -216,7 +353,7 @@ public void SetArcByTangent(Java.Awt.Geom.Point2D arg0, Java.Awt.Geom.Point2D ar #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -308,7 +445,7 @@ public Double(Java.Awt.Geom.Rectangle2D arg0, double arg1, double arg2, int arg3 } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Area.cs b/src/net/JNet/Generated/Java/Awt/Geom/Area.cs index ffad1194fb..6e0ad46753 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Area.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Area.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Geom { - #region Area + #region Area declaration + /// + /// + /// + public partial class Area : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.Area"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Area() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Area(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Area implementation public partial class Area { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/CubicCurve2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/CubicCurve2D.cs index 5fde883f83..58e5647cda 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/CubicCurve2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/CubicCurve2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region CubicCurve2D + #region CubicCurve2D declaration + /// + /// + /// + public partial class CubicCurve2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.CubicCurve2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CubicCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CubicCurve2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CubicCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CubicCurve2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.CubicCurve2D + { + const string _bridgeClassName = "java.awt.geom.CubicCurve2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.CubicCurve2D + { + const string _bridgeClassName = "java.awt.geom.CubicCurve2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CubicCurve2D implementation public partial class CubicCurve2D { #region Constructors @@ -397,7 +534,7 @@ public void Subdivide(Java.Awt.Geom.CubicCurve2D arg0, Java.Awt.Geom.CubicCurve2 #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -479,7 +616,7 @@ public Double(double arg0, double arg1, double arg2, double arg3, double arg4, d } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Dimension2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Dimension2D.cs index 0165713ccd..d0cfd742b9 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Dimension2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Dimension2D.cs @@ -25,7 +25,54 @@ namespace Java.Awt.Geom { - #region Dimension2D + #region Dimension2D declaration + /// + /// + /// + public partial class Dimension2D : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.geom.Dimension2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Dimension2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Dimension2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Dimension2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Dimension2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Dimension2D implementation public partial class Dimension2D { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Ellipse2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Ellipse2D.cs index f3492bf736..891f8bec83 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Ellipse2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Ellipse2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region Ellipse2D + #region Ellipse2D declaration + /// + /// + /// + public partial class Ellipse2D : Java.Awt.Geom.RectangularShape + { + const string _bridgeClassName = "java.awt.geom.Ellipse2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Ellipse2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Ellipse2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Ellipse2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Ellipse2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.Ellipse2D + { + const string _bridgeClassName = "java.awt.geom.Ellipse2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.Ellipse2D + { + const string _bridgeClassName = "java.awt.geom.Ellipse2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Ellipse2D implementation public partial class Ellipse2D { #region Constructors @@ -49,7 +186,7 @@ public partial class Ellipse2D #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -111,7 +248,7 @@ public Double(double arg0, double arg1, double arg2, double arg3) } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/FlatteningPathIterator.cs b/src/net/JNet/Generated/Java/Awt/Geom/FlatteningPathIterator.cs index dbd93c7bad..65803a6482 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/FlatteningPathIterator.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/FlatteningPathIterator.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Geom { - #region FlatteningPathIterator + #region FlatteningPathIterator declaration + /// + /// + /// + public partial class FlatteningPathIterator : Java.Awt.Geom.PathIterator + { + const string _bridgeClassName = "java.awt.geom.FlatteningPathIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FlatteningPathIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FlatteningPathIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FlatteningPathIterator implementation public partial class FlatteningPathIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/GeneralPath.cs b/src/net/JNet/Generated/Java/Awt/Geom/GeneralPath.cs index c2ad2d7e3c..56203c619e 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/GeneralPath.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/GeneralPath.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Geom { - #region GeneralPath + #region GeneralPath declaration + /// + /// + /// + public partial class GeneralPath : Java.Awt.Geom.Path2D.Float + { + const string _bridgeClassName = "java.awt.geom.GeneralPath"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GeneralPath() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GeneralPath(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GeneralPath implementation public partial class GeneralPath { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/IllegalPathStateException.cs b/src/net/JNet/Generated/Java/Awt/Geom/IllegalPathStateException.cs index 843ac5208d..8affed734f 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/IllegalPathStateException.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/IllegalPathStateException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Geom { - #region IllegalPathStateException + #region IllegalPathStateException declaration + /// + /// + /// + public partial class IllegalPathStateException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.awt.geom.IllegalPathStateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalPathStateException implementation public partial class IllegalPathStateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Line2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Line2D.cs index 2ff27aa4bd..27b55cc97f 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Line2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Line2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region Line2D + #region Line2D declaration + /// + /// + /// + public partial class Line2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.Line2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Line2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Line2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Line2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Line2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.Line2D + { + const string _bridgeClassName = "java.awt.geom.Line2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.Line2D + { + const string _bridgeClassName = "java.awt.geom.Line2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Line2D implementation public partial class Line2D { #region Constructors @@ -416,7 +553,7 @@ public void SetLine(Java.Awt.Geom.Point2D arg0, Java.Awt.Geom.Point2D arg1) #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -487,7 +624,7 @@ public Double(Java.Awt.Geom.Point2D arg0, Java.Awt.Geom.Point2D arg1) } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/NoninvertibleTransformException.cs b/src/net/JNet/Generated/Java/Awt/Geom/NoninvertibleTransformException.cs index 36a9a16ffd..68ee2ce355 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/NoninvertibleTransformException.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/NoninvertibleTransformException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Geom { - #region NoninvertibleTransformException + #region NoninvertibleTransformException declaration + /// + /// + /// + public partial class NoninvertibleTransformException : Java.Lang.Exception + { + const string _bridgeClassName = "java.awt.geom.NoninvertibleTransformException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoninvertibleTransformException implementation public partial class NoninvertibleTransformException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Path2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Path2D.cs index 138301d55f..14b1acd2a9 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Path2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Path2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region Path2D + #region Path2D declaration + /// + /// + /// + public partial class Path2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.Path2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Path2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Path2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Path2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Path2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.Path2D + { + const string _bridgeClassName = "java.awt.geom.Path2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.Path2D + { + const string _bridgeClassName = "java.awt.geom.Path2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Path2D implementation public partial class Path2D { #region Constructors @@ -326,7 +463,7 @@ public void Append(Java.Awt.Shape arg0, bool arg1) #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -395,7 +532,7 @@ public Double(Java.Awt.Shape arg0) } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/PathIterator.cs b/src/net/JNet/Generated/Java/Awt/Geom/PathIterator.cs index bf3469d3a7..9210b1149a 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/PathIterator.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/PathIterator.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Geom { + #region PathIterator declaration + /// + /// + /// + public partial class PathIterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.PathIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PathIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PathIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PathIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PathIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPathIterator /// /// .NET interface for TO BE DEFINED FROM USER @@ -68,7 +115,7 @@ public partial interface IPathIterator } #endregion - #region PathIterator + #region PathIterator implementation public partial class PathIterator : Java.Awt.Geom.IPathIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Point2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Point2D.cs index 18699e7261..e6a4012fe8 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Point2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Point2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region Point2D + #region Point2D declaration + /// + /// + /// + public partial class Point2D : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.geom.Point2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Point2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Point2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Point2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Point2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.Point2D + { + const string _bridgeClassName = "java.awt.geom.Point2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.Point2D + { + const string _bridgeClassName = "java.awt.geom.Point2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Point2D implementation public partial class Point2D { #region Constructors @@ -142,7 +279,7 @@ public void SetLocation(Java.Awt.Geom.Point2D arg0) #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -194,7 +331,7 @@ public Double(double arg0, double arg1) } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/QuadCurve2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/QuadCurve2D.cs index ec3abff0e6..7126737128 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/QuadCurve2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/QuadCurve2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region QuadCurve2D + #region QuadCurve2D declaration + /// + /// + /// + public partial class QuadCurve2D : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.QuadCurve2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("QuadCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QuadCurve2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("QuadCurve2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QuadCurve2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.QuadCurve2D + { + const string _bridgeClassName = "java.awt.geom.QuadCurve2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.QuadCurve2D + { + const string _bridgeClassName = "java.awt.geom.QuadCurve2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region QuadCurve2D implementation public partial class QuadCurve2D { #region Constructors @@ -369,7 +506,7 @@ public void Subdivide(Java.Awt.Geom.QuadCurve2D arg0, Java.Awt.Geom.QuadCurve2D #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -441,7 +578,7 @@ public Double(double arg0, double arg1, double arg2, double arg3, double arg4, d } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/Rectangle2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/Rectangle2D.cs index bb5d22aead..e2c6c55bad 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/Rectangle2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/Rectangle2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region Rectangle2D + #region Rectangle2D declaration + /// + /// + /// + public partial class Rectangle2D : Java.Awt.Geom.RectangularShape + { + const string _bridgeClassName = "java.awt.geom.Rectangle2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Rectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Rectangle2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Rectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Rectangle2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.Rectangle2D + { + const string _bridgeClassName = "java.awt.geom.Rectangle2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.Rectangle2D + { + const string _bridgeClassName = "java.awt.geom.Rectangle2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Rectangle2D implementation public partial class Rectangle2D { #region Constructors @@ -195,7 +332,7 @@ public void SetRect(Java.Awt.Geom.Rectangle2D arg0) #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -257,7 +394,7 @@ public Double(double arg0, double arg1, double arg2, double arg3) } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/RectangularShape.cs b/src/net/JNet/Generated/Java/Awt/Geom/RectangularShape.cs index e0e972e8b1..2df7655162 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/RectangularShape.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/RectangularShape.cs @@ -25,7 +25,54 @@ namespace Java.Awt.Geom { - #region RectangularShape + #region RectangularShape declaration + /// + /// + /// + public partial class RectangularShape : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.geom.RectangularShape"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RectangularShape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RectangularShape() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RectangularShape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RectangularShape(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RectangularShape implementation public partial class RectangularShape { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Geom/RoundRectangle2D.cs b/src/net/JNet/Generated/Java/Awt/Geom/RoundRectangle2D.cs index fcaf9fef7a..f202f17baa 100644 --- a/src/net/JNet/Generated/Java/Awt/Geom/RoundRectangle2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Geom/RoundRectangle2D.cs @@ -25,7 +25,144 @@ namespace Java.Awt.Geom { - #region RoundRectangle2D + #region RoundRectangle2D declaration + /// + /// + /// + public partial class RoundRectangle2D : Java.Awt.Geom.RectangularShape + { + const string _bridgeClassName = "java.awt.geom.RoundRectangle2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RoundRectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RoundRectangle2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RoundRectangle2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RoundRectangle2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Double declaration + /// + /// + /// + public partial class Double : Java.Awt.Geom.RoundRectangle2D + { + const string _bridgeClassName = "java.awt.geom.RoundRectangle2D$Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Float declaration + /// + /// + /// + public partial class Float : Java.Awt.Geom.RoundRectangle2D + { + const string _bridgeClassName = "java.awt.geom.RoundRectangle2D$Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region RoundRectangle2D implementation public partial class RoundRectangle2D { #region Constructors @@ -84,7 +221,7 @@ public void SetRoundRect(Java.Awt.Geom.RoundRectangle2D arg0) #endregion #region Nested classes - #region Double + #region Double implementation public partial class Double { #region Constructors @@ -156,7 +293,7 @@ public Double(double arg0, double arg1, double arg2, double arg3, double arg4, d } #endregion - #region Float + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GradientPaint.cs b/src/net/JNet/Generated/Java/Awt/GradientPaint.cs index 1df3b573f7..22e35ba11b 100644 --- a/src/net/JNet/Generated/Java/Awt/GradientPaint.cs +++ b/src/net/JNet/Generated/Java/Awt/GradientPaint.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region GradientPaint + #region GradientPaint declaration + /// + /// + /// + public partial class GradientPaint : Java.Awt.Paint + { + const string _bridgeClassName = "java.awt.GradientPaint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GradientPaint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GradientPaint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GradientPaint implementation public partial class GradientPaint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Graphics.cs b/src/net/JNet/Generated/Java/Awt/Graphics.cs index 44b6bfe7d7..3d84665513 100644 --- a/src/net/JNet/Generated/Java/Awt/Graphics.cs +++ b/src/net/JNet/Generated/Java/Awt/Graphics.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region Graphics + #region Graphics declaration + /// + /// + /// + public partial class Graphics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Graphics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Graphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Graphics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Graphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Graphics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Graphics implementation public partial class Graphics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Graphics2D.cs b/src/net/JNet/Generated/Java/Awt/Graphics2D.cs index 087bc6f65d..7c96e59aff 100644 --- a/src/net/JNet/Generated/Java/Awt/Graphics2D.cs +++ b/src/net/JNet/Generated/Java/Awt/Graphics2D.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region Graphics2D + #region Graphics2D declaration + /// + /// + /// + public partial class Graphics2D : Java.Awt.Graphics + { + const string _bridgeClassName = "java.awt.Graphics2D"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Graphics2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Graphics2D() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Graphics2D class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Graphics2D(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Graphics2D implementation public partial class Graphics2D { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GraphicsConfigTemplate.cs b/src/net/JNet/Generated/Java/Awt/GraphicsConfigTemplate.cs index 50e5886445..d02eefb3cf 100644 --- a/src/net/JNet/Generated/Java/Awt/GraphicsConfigTemplate.cs +++ b/src/net/JNet/Generated/Java/Awt/GraphicsConfigTemplate.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region GraphicsConfigTemplate + #region GraphicsConfigTemplate declaration + /// + /// + /// + public partial class GraphicsConfigTemplate : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.GraphicsConfigTemplate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GraphicsConfigTemplate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsConfigTemplate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GraphicsConfigTemplate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsConfigTemplate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GraphicsConfigTemplate implementation public partial class GraphicsConfigTemplate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GraphicsConfiguration.cs b/src/net/JNet/Generated/Java/Awt/GraphicsConfiguration.cs index fdb3ab0e70..afa8001372 100644 --- a/src/net/JNet/Generated/Java/Awt/GraphicsConfiguration.cs +++ b/src/net/JNet/Generated/Java/Awt/GraphicsConfiguration.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region GraphicsConfiguration + #region GraphicsConfiguration declaration + /// + /// + /// + public partial class GraphicsConfiguration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.GraphicsConfiguration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GraphicsConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsConfiguration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GraphicsConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsConfiguration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GraphicsConfiguration implementation public partial class GraphicsConfiguration { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GraphicsDevice.cs b/src/net/JNet/Generated/Java/Awt/GraphicsDevice.cs index 9eaf62a8f8..cb1d3452df 100644 --- a/src/net/JNet/Generated/Java/Awt/GraphicsDevice.cs +++ b/src/net/JNet/Generated/Java/Awt/GraphicsDevice.cs @@ -25,7 +25,99 @@ namespace Java.Awt { - #region GraphicsDevice + #region GraphicsDevice declaration + /// + /// + /// + public partial class GraphicsDevice : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.GraphicsDevice"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GraphicsDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsDevice() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GraphicsDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsDevice(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region WindowTranslucency declaration + /// + /// + /// + public partial class WindowTranslucency : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.GraphicsDevice$WindowTranslucency"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WindowTranslucency() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WindowTranslucency(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region GraphicsDevice implementation public partial class GraphicsDevice { #region Constructors @@ -157,7 +249,7 @@ public Java.Awt.GraphicsConfiguration GetBestConfiguration(Java.Awt.GraphicsConf #endregion #region Nested classes - #region WindowTranslucency + #region WindowTranslucency implementation public partial class WindowTranslucency { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GraphicsEnvironment.cs b/src/net/JNet/Generated/Java/Awt/GraphicsEnvironment.cs index 84efc29fe0..5499bcd108 100644 --- a/src/net/JNet/Generated/Java/Awt/GraphicsEnvironment.cs +++ b/src/net/JNet/Generated/Java/Awt/GraphicsEnvironment.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region GraphicsEnvironment + #region GraphicsEnvironment declaration + /// + /// + /// + public partial class GraphicsEnvironment : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.GraphicsEnvironment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GraphicsEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsEnvironment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GraphicsEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GraphicsEnvironment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GraphicsEnvironment implementation public partial class GraphicsEnvironment { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GridBagConstraints.cs b/src/net/JNet/Generated/Java/Awt/GridBagConstraints.cs index e1370c5aa5..e0b4813c00 100644 --- a/src/net/JNet/Generated/Java/Awt/GridBagConstraints.cs +++ b/src/net/JNet/Generated/Java/Awt/GridBagConstraints.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region GridBagConstraints + #region GridBagConstraints declaration + /// + /// + /// + public partial class GridBagConstraints : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.GridBagConstraints"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GridBagConstraints() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GridBagConstraints(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GridBagConstraints implementation public partial class GridBagConstraints { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GridBagLayout.cs b/src/net/JNet/Generated/Java/Awt/GridBagLayout.cs index 2a4d2bf4e9..08421f464a 100644 --- a/src/net/JNet/Generated/Java/Awt/GridBagLayout.cs +++ b/src/net/JNet/Generated/Java/Awt/GridBagLayout.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region GridBagLayout + #region GridBagLayout declaration + /// + /// + /// + public partial class GridBagLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.GridBagLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GridBagLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GridBagLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GridBagLayout implementation public partial class GridBagLayout { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GridBagLayoutInfo.cs b/src/net/JNet/Generated/Java/Awt/GridBagLayoutInfo.cs index 7c3ce6aefd..853a4360b6 100644 --- a/src/net/JNet/Generated/Java/Awt/GridBagLayoutInfo.cs +++ b/src/net/JNet/Generated/Java/Awt/GridBagLayoutInfo.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region GridBagLayoutInfo + #region GridBagLayoutInfo declaration + /// + /// + /// + public partial class GridBagLayoutInfo : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.GridBagLayoutInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GridBagLayoutInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GridBagLayoutInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GridBagLayoutInfo implementation public partial class GridBagLayoutInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/GridLayout.cs b/src/net/JNet/Generated/Java/Awt/GridLayout.cs index aa8aac9404..ba084476cc 100644 --- a/src/net/JNet/Generated/Java/Awt/GridLayout.cs +++ b/src/net/JNet/Generated/Java/Awt/GridLayout.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region GridLayout + #region GridLayout declaration + /// + /// + /// + public partial class GridLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.GridLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GridLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GridLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GridLayout implementation public partial class GridLayout { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/HeadlessException.cs b/src/net/JNet/Generated/Java/Awt/HeadlessException.cs index 31f6ae6757..75597a9d2c 100644 --- a/src/net/JNet/Generated/Java/Awt/HeadlessException.cs +++ b/src/net/JNet/Generated/Java/Awt/HeadlessException.cs @@ -25,7 +25,24 @@ namespace Java.Awt { - #region HeadlessException + #region HeadlessException declaration + /// + /// + /// + public partial class HeadlessException : Java.Lang.UnsupportedOperationException + { + const string _bridgeClassName = "java.awt.HeadlessException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region HeadlessException implementation public partial class HeadlessException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/IllegalComponentStateException.cs b/src/net/JNet/Generated/Java/Awt/IllegalComponentStateException.cs index 2380171106..696da9a4d2 100644 --- a/src/net/JNet/Generated/Java/Awt/IllegalComponentStateException.cs +++ b/src/net/JNet/Generated/Java/Awt/IllegalComponentStateException.cs @@ -25,7 +25,24 @@ namespace Java.Awt { - #region IllegalComponentStateException + #region IllegalComponentStateException declaration + /// + /// + /// + public partial class IllegalComponentStateException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.awt.IllegalComponentStateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalComponentStateException implementation public partial class IllegalComponentStateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Im/AllPackageClasses.cs deleted file mode 100644 index ff7f814821..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Im/AllPackageClasses.cs +++ /dev/null @@ -1,212 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Im -{ - #region InputContext - /// - /// - /// - public partial class InputContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.im.InputContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMethodHighlight - /// - /// - /// - public partial class InputMethodHighlight : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.im.InputMethodHighlight"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputMethodHighlight() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputMethodHighlight(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMethodRequests - /// - /// - /// - public partial class InputMethodRequests : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.im.InputMethodRequests"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputMethodRequests class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethodRequests() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputMethodRequests class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethodRequests(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputSubset - /// - /// - /// - public partial class InputSubset : Java.Lang.Character.Subset - { - const string _bridgeClassName = "java.awt.im.InputSubset"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputSubset() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputSubset(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Im/InputContext.cs b/src/net/JNet/Generated/Java/Awt/Im/InputContext.cs index bc204126a2..b5186d7d22 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/InputContext.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/InputContext.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Im { - #region InputContext + #region InputContext declaration + /// + /// + /// + public partial class InputContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.im.InputContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputContext implementation public partial class InputContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/InputMethodHighlight.cs b/src/net/JNet/Generated/Java/Awt/Im/InputMethodHighlight.cs index 000ea9b30c..d0c601bc0e 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/InputMethodHighlight.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/InputMethodHighlight.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Im { - #region InputMethodHighlight + #region InputMethodHighlight declaration + /// + /// + /// + public partial class InputMethodHighlight : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.im.InputMethodHighlight"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputMethodHighlight() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputMethodHighlight(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputMethodHighlight implementation public partial class InputMethodHighlight { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/InputMethodRequests.cs b/src/net/JNet/Generated/Java/Awt/Im/InputMethodRequests.cs index ccfa917b80..595a662bbc 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/InputMethodRequests.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/InputMethodRequests.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Im { + #region InputMethodRequests declaration + /// + /// + /// + public partial class InputMethodRequests : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.im.InputMethodRequests"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputMethodRequests class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethodRequests() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputMethodRequests class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethodRequests(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInputMethodRequests /// /// .NET interface for TO BE DEFINED FROM USER @@ -84,7 +131,7 @@ public partial interface IInputMethodRequests } #endregion - #region InputMethodRequests + #region InputMethodRequests implementation public partial class InputMethodRequests : Java.Awt.Im.IInputMethodRequests { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/InputSubset.cs b/src/net/JNet/Generated/Java/Awt/Im/InputSubset.cs index 903c085e2d..f6a4a68f95 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/InputSubset.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/InputSubset.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Im { - #region InputSubset + #region InputSubset declaration + /// + /// + /// + public partial class InputSubset : Java.Lang.Character.Subset + { + const string _bridgeClassName = "java.awt.im.InputSubset"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputSubset() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputSubset(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputSubset implementation public partial class InputSubset { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Im/Spi/AllPackageClasses.cs deleted file mode 100644 index b857235ab0..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Im/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,171 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Im.Spi -{ - #region InputMethod - /// - /// - /// - public partial class InputMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.im.spi.InputMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMethodContext - /// - /// - /// - public partial class InputMethodContext : Java.Awt.Im.InputMethodRequests - { - const string _bridgeClassName = "java.awt.im.spi.InputMethodContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputMethodContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethodContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputMethodContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethodContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMethodDescriptor - /// - /// - /// - public partial class InputMethodDescriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.im.spi.InputMethodDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputMethodDescriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethodDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputMethodDescriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputMethodDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethod.cs b/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethod.cs index c1340175fd..76ef49687b 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethod.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethod.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Im.Spi { + #region InputMethod declaration + /// + /// + /// + public partial class InputMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.im.spi.InputMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInputMethod /// /// .NET interface for TO BE DEFINED FROM USER @@ -116,7 +163,7 @@ public partial interface IInputMethod } #endregion - #region InputMethod + #region InputMethod implementation public partial class InputMethod : Java.Awt.Im.Spi.IInputMethod { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodContext.cs b/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodContext.cs index 82e5915c19..49e4c269e9 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodContext.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodContext.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Im.Spi { + #region InputMethodContext declaration + /// + /// + /// + public partial class InputMethodContext : Java.Awt.Im.InputMethodRequests + { + const string _bridgeClassName = "java.awt.im.spi.InputMethodContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputMethodContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethodContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputMethodContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethodContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInputMethodContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -72,7 +119,7 @@ public partial interface IInputMethodContext : Java.Awt.Im.IInputMethodRequests } #endregion - #region InputMethodContext + #region InputMethodContext implementation public partial class InputMethodContext : Java.Awt.Im.Spi.IInputMethodContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodDescriptor.cs b/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodDescriptor.cs index 6d9aafbf29..58946e5aaa 100644 --- a/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodDescriptor.cs +++ b/src/net/JNet/Generated/Java/Awt/Im/Spi/InputMethodDescriptor.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Im.Spi { + #region InputMethodDescriptor declaration + /// + /// + /// + public partial class InputMethodDescriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.im.spi.InputMethodDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputMethodDescriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethodDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputMethodDescriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputMethodDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInputMethodDescriptor /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IInputMethodDescriptor } #endregion - #region InputMethodDescriptor + #region InputMethodDescriptor implementation public partial class InputMethodDescriptor : Java.Awt.Im.Spi.IInputMethodDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Image.cs b/src/net/JNet/Generated/Java/Awt/Image.cs index 391d9fe478..ac0a67bdb2 100644 --- a/src/net/JNet/Generated/Java/Awt/Image.cs +++ b/src/net/JNet/Generated/Java/Awt/Image.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region Image + #region Image declaration + /// + /// + /// + public partial class Image : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Image"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Image class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Image() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Image class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Image(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Image implementation public partial class Image { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageCapabilities.cs b/src/net/JNet/Generated/Java/Awt/ImageCapabilities.cs index 7fd8c77b12..7ceeb19d32 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageCapabilities.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageCapabilities.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region ImageCapabilities + #region ImageCapabilities declaration + /// + /// + /// + public partial class ImageCapabilities : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.ImageCapabilities"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageCapabilities() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageCapabilities(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageCapabilities implementation public partial class ImageCapabilities { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/AbstractMultiResolutionImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/AbstractMultiResolutionImage.cs index 6471dd9d5d..9a8e890535 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/AbstractMultiResolutionImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/AbstractMultiResolutionImage.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region AbstractMultiResolutionImage + #region AbstractMultiResolutionImage declaration + /// + /// + /// + public partial class AbstractMultiResolutionImage : Java.Awt.Image + { + const string _bridgeClassName = "java.awt.image.AbstractMultiResolutionImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractMultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractMultiResolutionImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractMultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractMultiResolutionImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractMultiResolutionImage implementation public partial class AbstractMultiResolutionImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/AffineTransformOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/AffineTransformOp.cs index 3dcff75e5d..d95034d755 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/AffineTransformOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/AffineTransformOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region AffineTransformOp + #region AffineTransformOp declaration + /// + /// + /// + public partial class AffineTransformOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.AffineTransformOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AffineTransformOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AffineTransformOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AffineTransformOp implementation public partial class AffineTransformOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/AllPackageClasses.cs deleted file mode 100644 index 4c7f302810..0000000000 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/AllPackageClasses.cs +++ /dev/null @@ -1,2485 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.ImageNs -{ - #region AbstractMultiResolutionImage - /// - /// - /// - public partial class AbstractMultiResolutionImage : Java.Awt.Image - { - const string _bridgeClassName = "java.awt.image.AbstractMultiResolutionImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractMultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractMultiResolutionImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractMultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractMultiResolutionImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AffineTransformOp - /// - /// - /// - public partial class AffineTransformOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.AffineTransformOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AffineTransformOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AffineTransformOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AreaAveragingScaleFilter - /// - /// - /// - public partial class AreaAveragingScaleFilter : Java.Awt.ImageNs.ReplicateScaleFilter - { - const string _bridgeClassName = "java.awt.image.AreaAveragingScaleFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AreaAveragingScaleFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AreaAveragingScaleFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BandCombineOp - /// - /// - /// - public partial class BandCombineOp : Java.Awt.ImageNs.RasterOp - { - const string _bridgeClassName = "java.awt.image.BandCombineOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BandCombineOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BandCombineOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BandedSampleModel - /// - /// - /// - public partial class BandedSampleModel : Java.Awt.ImageNs.ComponentSampleModel - { - const string _bridgeClassName = "java.awt.image.BandedSampleModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BandedSampleModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BandedSampleModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BaseMultiResolutionImage - /// - /// - /// - public partial class BaseMultiResolutionImage : Java.Awt.ImageNs.AbstractMultiResolutionImage - { - const string _bridgeClassName = "java.awt.image.BaseMultiResolutionImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BaseMultiResolutionImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BaseMultiResolutionImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferedImage - /// - /// - /// - public partial class BufferedImage : Java.Awt.Image - { - const string _bridgeClassName = "java.awt.image.BufferedImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferedImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferedImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferedImageFilter - /// - /// - /// - public partial class BufferedImageFilter : Java.Awt.ImageNs.ImageFilter - { - const string _bridgeClassName = "java.awt.image.BufferedImageFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferedImageFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferedImageFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferedImageOp - /// - /// - /// - public partial class BufferedImageOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.BufferedImageOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BufferedImageOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BufferedImageOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BufferedImageOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BufferedImageOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferStrategy - /// - /// - /// - public partial class BufferStrategy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.BufferStrategy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BufferStrategy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BufferStrategy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BufferStrategy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BufferStrategy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ByteLookupTable - /// - /// - /// - public partial class ByteLookupTable : Java.Awt.ImageNs.LookupTable - { - const string _bridgeClassName = "java.awt.image.ByteLookupTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ByteLookupTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ByteLookupTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorConvertOp - /// - /// - /// - public partial class ColorConvertOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.ColorConvertOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorConvertOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorConvertOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorModel - /// - /// - /// - public partial class ColorModel : Java.Awt.Transparency - { - const string _bridgeClassName = "java.awt.image.ColorModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentColorModel - /// - /// - /// - public partial class ComponentColorModel : Java.Awt.ImageNs.ColorModel - { - const string _bridgeClassName = "java.awt.image.ComponentColorModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentColorModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentColorModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentSampleModel - /// - /// - /// - public partial class ComponentSampleModel : Java.Awt.ImageNs.SampleModel - { - const string _bridgeClassName = "java.awt.image.ComponentSampleModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentSampleModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentSampleModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConvolveOp - /// - /// - /// - public partial class ConvolveOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.ConvolveOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConvolveOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConvolveOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CropImageFilter - /// - /// - /// - public partial class CropImageFilter : Java.Awt.ImageNs.ImageFilter - { - const string _bridgeClassName = "java.awt.image.CropImageFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CropImageFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CropImageFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBuffer - /// - /// - /// - public partial class DataBuffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.DataBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DataBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DataBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBufferByte - /// - /// - /// - public partial class DataBufferByte : Java.Awt.ImageNs.DataBuffer - { - const string _bridgeClassName = "java.awt.image.DataBufferByte"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataBufferByte() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataBufferByte(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBufferDouble - /// - /// - /// - public partial class DataBufferDouble : Java.Awt.ImageNs.DataBuffer - { - const string _bridgeClassName = "java.awt.image.DataBufferDouble"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataBufferDouble() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataBufferDouble(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBufferFloat - /// - /// - /// - public partial class DataBufferFloat : Java.Awt.ImageNs.DataBuffer - { - const string _bridgeClassName = "java.awt.image.DataBufferFloat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataBufferFloat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataBufferFloat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBufferInt - /// - /// - /// - public partial class DataBufferInt : Java.Awt.ImageNs.DataBuffer - { - const string _bridgeClassName = "java.awt.image.DataBufferInt"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataBufferInt() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataBufferInt(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBufferShort - /// - /// - /// - public partial class DataBufferShort : Java.Awt.ImageNs.DataBuffer - { - const string _bridgeClassName = "java.awt.image.DataBufferShort"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataBufferShort() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataBufferShort(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataBufferUShort - /// - /// - /// - public partial class DataBufferUShort : Java.Awt.ImageNs.DataBuffer - { - const string _bridgeClassName = "java.awt.image.DataBufferUShort"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataBufferUShort() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataBufferUShort(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DirectColorModel - /// - /// - /// - public partial class DirectColorModel : Java.Awt.ImageNs.PackedColorModel - { - const string _bridgeClassName = "java.awt.image.DirectColorModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DirectColorModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DirectColorModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilteredImageSource - /// - /// - /// - public partial class FilteredImageSource : Java.Awt.ImageNs.ImageProducer - { - const string _bridgeClassName = "java.awt.image.FilteredImageSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilteredImageSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilteredImageSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageConsumer - /// - /// - /// - public partial class ImageConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.ImageConsumer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageConsumer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageConsumer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageFilter - /// - /// - /// - public partial class ImageFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.ImageFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageObserver - /// - /// - /// - public partial class ImageObserver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.ImageObserver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageObserver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageObserver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageProducer - /// - /// - /// - public partial class ImageProducer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.ImageProducer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageProducer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageProducer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageProducer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageProducer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImagingOpException - /// - /// - /// - public partial class ImagingOpException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.awt.image.ImagingOpException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IndexColorModel - /// - /// - /// - public partial class IndexColorModel : Java.Awt.ImageNs.ColorModel - { - const string _bridgeClassName = "java.awt.image.IndexColorModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IndexColorModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IndexColorModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Kernel - /// - /// - /// - public partial class Kernel : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.image.Kernel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Kernel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Kernel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LookupOp - /// - /// - /// - public partial class LookupOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.LookupOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LookupOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LookupOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LookupTable - /// - /// - /// - public partial class LookupTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.LookupTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LookupTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LookupTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LookupTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LookupTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryImageSource - /// - /// - /// - public partial class MemoryImageSource : Java.Awt.ImageNs.ImageProducer - { - const string _bridgeClassName = "java.awt.image.MemoryImageSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryImageSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryImageSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiPixelPackedSampleModel - /// - /// - /// - public partial class MultiPixelPackedSampleModel : Java.Awt.ImageNs.SampleModel - { - const string _bridgeClassName = "java.awt.image.MultiPixelPackedSampleModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiPixelPackedSampleModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiPixelPackedSampleModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiResolutionImage - /// - /// - /// - public partial class MultiResolutionImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.MultiResolutionImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiResolutionImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiResolutionImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PackedColorModel - /// - /// - /// - public partial class PackedColorModel : Java.Awt.ImageNs.ColorModel - { - const string _bridgeClassName = "java.awt.image.PackedColorModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PackedColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PackedColorModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PackedColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PackedColorModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PixelGrabber - /// - /// - /// - public partial class PixelGrabber : Java.Awt.ImageNs.ImageConsumer - { - const string _bridgeClassName = "java.awt.image.PixelGrabber"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PixelGrabber() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PixelGrabber(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PixelInterleavedSampleModel - /// - /// - /// - public partial class PixelInterleavedSampleModel : Java.Awt.ImageNs.ComponentSampleModel - { - const string _bridgeClassName = "java.awt.image.PixelInterleavedSampleModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PixelInterleavedSampleModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PixelInterleavedSampleModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Raster - /// - /// - /// - public partial class Raster : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.Raster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Raster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Raster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RasterFormatException - /// - /// - /// - public partial class RasterFormatException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.awt.image.RasterFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RasterOp - /// - /// - /// - public partial class RasterOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.RasterOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RasterOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RasterOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RasterOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RasterOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderedImage - /// - /// - /// - public partial class RenderedImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.RenderedImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RenderedImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RenderedImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReplicateScaleFilter - /// - /// - /// - public partial class ReplicateScaleFilter : Java.Awt.ImageNs.ImageFilter - { - const string _bridgeClassName = "java.awt.image.ReplicateScaleFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReplicateScaleFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReplicateScaleFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RescaleOp - /// - /// - /// - public partial class RescaleOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.RescaleOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RescaleOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RescaleOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RGBImageFilter - /// - /// - /// - public partial class RGBImageFilter : Java.Awt.ImageNs.ImageFilter - { - const string _bridgeClassName = "java.awt.image.RGBImageFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RGBImageFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RGBImageFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RGBImageFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RGBImageFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SampleModel - /// - /// - /// - public partial class SampleModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.SampleModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SampleModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SampleModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SampleModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SampleModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ShortLookupTable - /// - /// - /// - public partial class ShortLookupTable : Java.Awt.ImageNs.LookupTable - { - const string _bridgeClassName = "java.awt.image.ShortLookupTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ShortLookupTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ShortLookupTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SinglePixelPackedSampleModel - /// - /// - /// - public partial class SinglePixelPackedSampleModel : Java.Awt.ImageNs.SampleModel - { - const string _bridgeClassName = "java.awt.image.SinglePixelPackedSampleModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SinglePixelPackedSampleModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SinglePixelPackedSampleModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TileObserver - /// - /// - /// - public partial class TileObserver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.TileObserver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TileObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TileObserver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TileObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TileObserver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VolatileImage - /// - /// - /// - public partial class VolatileImage : Java.Awt.Image - { - const string _bridgeClassName = "java.awt.image.VolatileImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("VolatileImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public VolatileImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("VolatileImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public VolatileImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WritableRaster - /// - /// - /// - public partial class WritableRaster : Java.Awt.ImageNs.Raster - { - const string _bridgeClassName = "java.awt.image.WritableRaster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WritableRaster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WritableRaster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WritableRenderedImage - /// - /// - /// - public partial class WritableRenderedImage : Java.Awt.ImageNs.RenderedImage - { - const string _bridgeClassName = "java.awt.image.WritableRenderedImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WritableRenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WritableRenderedImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WritableRenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WritableRenderedImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/AreaAveragingScaleFilter.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/AreaAveragingScaleFilter.cs index bea5100ba7..c4469f7c10 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/AreaAveragingScaleFilter.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/AreaAveragingScaleFilter.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region AreaAveragingScaleFilter + #region AreaAveragingScaleFilter declaration + /// + /// + /// + public partial class AreaAveragingScaleFilter : Java.Awt.ImageNs.ReplicateScaleFilter + { + const string _bridgeClassName = "java.awt.image.AreaAveragingScaleFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AreaAveragingScaleFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AreaAveragingScaleFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AreaAveragingScaleFilter implementation public partial class AreaAveragingScaleFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BandCombineOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BandCombineOp.cs index a292cecbf5..02c2529dea 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BandCombineOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BandCombineOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region BandCombineOp + #region BandCombineOp declaration + /// + /// + /// + public partial class BandCombineOp : Java.Awt.ImageNs.RasterOp + { + const string _bridgeClassName = "java.awt.image.BandCombineOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BandCombineOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BandCombineOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BandCombineOp implementation public partial class BandCombineOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BandedSampleModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BandedSampleModel.cs index 2ede2fa115..a117e2b685 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BandedSampleModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BandedSampleModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region BandedSampleModel + #region BandedSampleModel declaration + /// + /// + /// + public partial class BandedSampleModel : Java.Awt.ImageNs.ComponentSampleModel + { + const string _bridgeClassName = "java.awt.image.BandedSampleModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BandedSampleModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BandedSampleModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BandedSampleModel implementation public partial class BandedSampleModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BaseMultiResolutionImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BaseMultiResolutionImage.cs index fb8b05da08..b9913ad033 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BaseMultiResolutionImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BaseMultiResolutionImage.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region BaseMultiResolutionImage + #region BaseMultiResolutionImage declaration + /// + /// + /// + public partial class BaseMultiResolutionImage : Java.Awt.ImageNs.AbstractMultiResolutionImage + { + const string _bridgeClassName = "java.awt.image.BaseMultiResolutionImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BaseMultiResolutionImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BaseMultiResolutionImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BaseMultiResolutionImage implementation public partial class BaseMultiResolutionImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferStrategy.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferStrategy.cs index 293a53a46e..e8dad3e8d6 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferStrategy.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferStrategy.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region BufferStrategy + #region BufferStrategy declaration + /// + /// + /// + public partial class BufferStrategy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.BufferStrategy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BufferStrategy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BufferStrategy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BufferStrategy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BufferStrategy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferStrategy implementation public partial class BufferStrategy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImage.cs index 36df30aa79..0d37d0b7a3 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImage.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region BufferedImage + #region BufferedImage declaration + /// + /// + /// + public partial class BufferedImage : Java.Awt.Image + { + const string _bridgeClassName = "java.awt.image.BufferedImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferedImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferedImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferedImage implementation public partial class BufferedImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageFilter.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageFilter.cs index 3f5fc85ef4..2c637e6e57 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageFilter.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageFilter.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region BufferedImageFilter + #region BufferedImageFilter declaration + /// + /// + /// + public partial class BufferedImageFilter : Java.Awt.ImageNs.ImageFilter + { + const string _bridgeClassName = "java.awt.image.BufferedImageFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferedImageFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferedImageFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferedImageFilter implementation public partial class BufferedImageFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageOp.cs index 6afe119261..9c3e89e6e2 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/BufferedImageOp.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region BufferedImageOp declaration + /// + /// + /// + public partial class BufferedImageOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.BufferedImageOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BufferedImageOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BufferedImageOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BufferedImageOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BufferedImageOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBufferedImageOp /// /// .NET interface for TO BE DEFINED FROM USER @@ -74,7 +121,7 @@ public partial interface IBufferedImageOp } #endregion - #region BufferedImageOp + #region BufferedImageOp implementation public partial class BufferedImageOp : Java.Awt.ImageNs.IBufferedImageOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ByteLookupTable.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ByteLookupTable.cs index 2c80bb0c5a..9e60be0315 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ByteLookupTable.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ByteLookupTable.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ByteLookupTable + #region ByteLookupTable declaration + /// + /// + /// + public partial class ByteLookupTable : Java.Awt.ImageNs.LookupTable + { + const string _bridgeClassName = "java.awt.image.ByteLookupTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ByteLookupTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ByteLookupTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ByteLookupTable implementation public partial class ByteLookupTable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ColorConvertOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ColorConvertOp.cs index 4496acab56..cc1aaf414b 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ColorConvertOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ColorConvertOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ColorConvertOp + #region ColorConvertOp declaration + /// + /// + /// + public partial class ColorConvertOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.ColorConvertOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorConvertOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorConvertOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorConvertOp implementation public partial class ColorConvertOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ColorModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ColorModel.cs index aab6888b0e..e8c1cdff58 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ColorModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ColorModel.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region ColorModel + #region ColorModel declaration + /// + /// + /// + public partial class ColorModel : Java.Awt.Transparency + { + const string _bridgeClassName = "java.awt.image.ColorModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorModel implementation public partial class ColorModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentColorModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentColorModel.cs index 5506ae4710..abb81cf029 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentColorModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentColorModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ComponentColorModel + #region ComponentColorModel declaration + /// + /// + /// + public partial class ComponentColorModel : Java.Awt.ImageNs.ColorModel + { + const string _bridgeClassName = "java.awt.image.ComponentColorModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentColorModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentColorModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentColorModel implementation public partial class ComponentColorModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentSampleModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentSampleModel.cs index a6581b628b..8a4097b6b8 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentSampleModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ComponentSampleModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ComponentSampleModel + #region ComponentSampleModel declaration + /// + /// + /// + public partial class ComponentSampleModel : Java.Awt.ImageNs.SampleModel + { + const string _bridgeClassName = "java.awt.image.ComponentSampleModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentSampleModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentSampleModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentSampleModel implementation public partial class ComponentSampleModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ConvolveOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ConvolveOp.cs index abe302be1c..2158e4840a 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ConvolveOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ConvolveOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ConvolveOp + #region ConvolveOp declaration + /// + /// + /// + public partial class ConvolveOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.ConvolveOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConvolveOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConvolveOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConvolveOp implementation public partial class ConvolveOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/CropImageFilter.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/CropImageFilter.cs index befe0c79c5..556caae46c 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/CropImageFilter.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/CropImageFilter.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region CropImageFilter + #region CropImageFilter declaration + /// + /// + /// + public partial class CropImageFilter : Java.Awt.ImageNs.ImageFilter + { + const string _bridgeClassName = "java.awt.image.CropImageFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CropImageFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CropImageFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CropImageFilter implementation public partial class CropImageFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBuffer.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBuffer.cs index 833558dc2e..d3e9cdadda 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBuffer.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region DataBuffer + #region DataBuffer declaration + /// + /// + /// + public partial class DataBuffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.DataBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DataBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DataBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBuffer implementation public partial class DataBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferByte.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferByte.cs index d02583d87c..50cc5a3d10 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferByte.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferByte.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DataBufferByte + #region DataBufferByte declaration + /// + /// + /// + public partial class DataBufferByte : Java.Awt.ImageNs.DataBuffer + { + const string _bridgeClassName = "java.awt.image.DataBufferByte"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataBufferByte() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataBufferByte(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBufferByte implementation public partial class DataBufferByte { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferDouble.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferDouble.cs index 5b7e584123..64d12c0978 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferDouble.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferDouble.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DataBufferDouble + #region DataBufferDouble declaration + /// + /// + /// + public partial class DataBufferDouble : Java.Awt.ImageNs.DataBuffer + { + const string _bridgeClassName = "java.awt.image.DataBufferDouble"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataBufferDouble() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataBufferDouble(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBufferDouble implementation public partial class DataBufferDouble { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferFloat.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferFloat.cs index 347925f4d9..74bfa64479 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferFloat.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferFloat.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DataBufferFloat + #region DataBufferFloat declaration + /// + /// + /// + public partial class DataBufferFloat : Java.Awt.ImageNs.DataBuffer + { + const string _bridgeClassName = "java.awt.image.DataBufferFloat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataBufferFloat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataBufferFloat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBufferFloat implementation public partial class DataBufferFloat { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferInt.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferInt.cs index 8c8a7ec75b..798d3a08a8 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferInt.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferInt.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DataBufferInt + #region DataBufferInt declaration + /// + /// + /// + public partial class DataBufferInt : Java.Awt.ImageNs.DataBuffer + { + const string _bridgeClassName = "java.awt.image.DataBufferInt"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataBufferInt() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataBufferInt(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBufferInt implementation public partial class DataBufferInt { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferShort.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferShort.cs index 1752d64453..8cbaf00632 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferShort.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferShort.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DataBufferShort + #region DataBufferShort declaration + /// + /// + /// + public partial class DataBufferShort : Java.Awt.ImageNs.DataBuffer + { + const string _bridgeClassName = "java.awt.image.DataBufferShort"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataBufferShort() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataBufferShort(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBufferShort implementation public partial class DataBufferShort { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferUShort.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferUShort.cs index a4525d3d2b..f4c701b3cd 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferUShort.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DataBufferUShort.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DataBufferUShort + #region DataBufferUShort declaration + /// + /// + /// + public partial class DataBufferUShort : Java.Awt.ImageNs.DataBuffer + { + const string _bridgeClassName = "java.awt.image.DataBufferUShort"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataBufferUShort() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataBufferUShort(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataBufferUShort implementation public partial class DataBufferUShort { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/DirectColorModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/DirectColorModel.cs index 4f14d563c5..6722b8167a 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/DirectColorModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/DirectColorModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region DirectColorModel + #region DirectColorModel declaration + /// + /// + /// + public partial class DirectColorModel : Java.Awt.ImageNs.PackedColorModel + { + const string _bridgeClassName = "java.awt.image.DirectColorModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DirectColorModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DirectColorModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DirectColorModel implementation public partial class DirectColorModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/FilteredImageSource.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/FilteredImageSource.cs index af1cf6c7f7..cdd700dad4 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/FilteredImageSource.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/FilteredImageSource.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region FilteredImageSource + #region FilteredImageSource declaration + /// + /// + /// + public partial class FilteredImageSource : Java.Awt.ImageNs.ImageProducer + { + const string _bridgeClassName = "java.awt.image.FilteredImageSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilteredImageSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilteredImageSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilteredImageSource implementation public partial class FilteredImageSource { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageConsumer.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageConsumer.cs index a9776c7ec0..8519840405 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageConsumer.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageConsumer.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region ImageConsumer declaration + /// + /// + /// + public partial class ImageConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.ImageConsumer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageConsumer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageConsumer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IImageConsumer /// /// .NET interface for TO BE DEFINED FROM USER @@ -93,7 +140,7 @@ public partial interface IImageConsumer } #endregion - #region ImageConsumer + #region ImageConsumer implementation public partial class ImageConsumer : Java.Awt.ImageNs.IImageConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageFilter.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageFilter.cs index 82108628e9..2b2130505c 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageFilter.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageFilter.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ImageFilter + #region ImageFilter declaration + /// + /// + /// + public partial class ImageFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.ImageFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageFilter implementation public partial class ImageFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageObserver.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageObserver.cs index 5917c50eb7..e0d440ae68 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageObserver.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageObserver.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region ImageObserver declaration + /// + /// + /// + public partial class ImageObserver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.ImageObserver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageObserver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageObserver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IImageObserver /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IImageObserver } #endregion - #region ImageObserver + #region ImageObserver implementation public partial class ImageObserver : Java.Awt.ImageNs.IImageObserver { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageProducer.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageProducer.cs index 770c792faf..7f85d1f82d 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ImageProducer.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ImageProducer.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region ImageProducer declaration + /// + /// + /// + public partial class ImageProducer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.ImageProducer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageProducer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageProducer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageProducer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageProducer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IImageProducer /// /// .NET interface for TO BE DEFINED FROM USER @@ -69,7 +116,7 @@ public partial interface IImageProducer } #endregion - #region ImageProducer + #region ImageProducer implementation public partial class ImageProducer : Java.Awt.ImageNs.IImageProducer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ImagingOpException.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ImagingOpException.cs index e280140073..e8a4d5b2d8 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ImagingOpException.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ImagingOpException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.ImageNs { - #region ImagingOpException + #region ImagingOpException declaration + /// + /// + /// + public partial class ImagingOpException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.awt.image.ImagingOpException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ImagingOpException implementation public partial class ImagingOpException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/IndexColorModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/IndexColorModel.cs index 0558822a8a..079f057b6b 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/IndexColorModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/IndexColorModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region IndexColorModel + #region IndexColorModel declaration + /// + /// + /// + public partial class IndexColorModel : Java.Awt.ImageNs.ColorModel + { + const string _bridgeClassName = "java.awt.image.IndexColorModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IndexColorModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IndexColorModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IndexColorModel implementation public partial class IndexColorModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Kernel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Kernel.cs index c9d6154fd2..acba0809f8 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Kernel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Kernel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region Kernel + #region Kernel declaration + /// + /// + /// + public partial class Kernel : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.image.Kernel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Kernel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Kernel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Kernel implementation public partial class Kernel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/LookupOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/LookupOp.cs index 0bd616ba99..c4d88fbece 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/LookupOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/LookupOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region LookupOp + #region LookupOp declaration + /// + /// + /// + public partial class LookupOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.LookupOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LookupOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LookupOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LookupOp implementation public partial class LookupOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/LookupTable.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/LookupTable.cs index cb21cfbaa1..1acbce73a6 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/LookupTable.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/LookupTable.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region LookupTable + #region LookupTable declaration + /// + /// + /// + public partial class LookupTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.LookupTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LookupTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LookupTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LookupTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LookupTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LookupTable implementation public partial class LookupTable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/MemoryImageSource.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/MemoryImageSource.cs index 1c901ea6e5..34869f75a5 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/MemoryImageSource.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/MemoryImageSource.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region MemoryImageSource + #region MemoryImageSource declaration + /// + /// + /// + public partial class MemoryImageSource : Java.Awt.ImageNs.ImageProducer + { + const string _bridgeClassName = "java.awt.image.MemoryImageSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryImageSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryImageSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryImageSource implementation public partial class MemoryImageSource { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/MultiPixelPackedSampleModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/MultiPixelPackedSampleModel.cs index cb512549f8..a5c3391b28 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/MultiPixelPackedSampleModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/MultiPixelPackedSampleModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region MultiPixelPackedSampleModel + #region MultiPixelPackedSampleModel declaration + /// + /// + /// + public partial class MultiPixelPackedSampleModel : Java.Awt.ImageNs.SampleModel + { + const string _bridgeClassName = "java.awt.image.MultiPixelPackedSampleModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiPixelPackedSampleModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiPixelPackedSampleModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiPixelPackedSampleModel implementation public partial class MultiPixelPackedSampleModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/MultiResolutionImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/MultiResolutionImage.cs index e8744e29a8..eea3df74c6 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/MultiResolutionImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/MultiResolutionImage.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region MultiResolutionImage declaration + /// + /// + /// + public partial class MultiResolutionImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.MultiResolutionImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiResolutionImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MultiResolutionImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiResolutionImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMultiResolutionImage /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IMultiResolutionImage } #endregion - #region MultiResolutionImage + #region MultiResolutionImage implementation public partial class MultiResolutionImage : Java.Awt.ImageNs.IMultiResolutionImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/PackedColorModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/PackedColorModel.cs index 158ec9b8ea..d5b044ed03 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/PackedColorModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/PackedColorModel.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region PackedColorModel + #region PackedColorModel declaration + /// + /// + /// + public partial class PackedColorModel : Java.Awt.ImageNs.ColorModel + { + const string _bridgeClassName = "java.awt.image.PackedColorModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PackedColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PackedColorModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PackedColorModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PackedColorModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PackedColorModel implementation public partial class PackedColorModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/PixelGrabber.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/PixelGrabber.cs index a5806cad3b..5b373fcf34 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/PixelGrabber.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/PixelGrabber.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region PixelGrabber + #region PixelGrabber declaration + /// + /// + /// + public partial class PixelGrabber : Java.Awt.ImageNs.ImageConsumer + { + const string _bridgeClassName = "java.awt.image.PixelGrabber"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PixelGrabber() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PixelGrabber(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PixelGrabber implementation public partial class PixelGrabber { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/PixelInterleavedSampleModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/PixelInterleavedSampleModel.cs index 1097fa9181..4033006cc1 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/PixelInterleavedSampleModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/PixelInterleavedSampleModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region PixelInterleavedSampleModel + #region PixelInterleavedSampleModel declaration + /// + /// + /// + public partial class PixelInterleavedSampleModel : Java.Awt.ImageNs.ComponentSampleModel + { + const string _bridgeClassName = "java.awt.image.PixelInterleavedSampleModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PixelInterleavedSampleModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PixelInterleavedSampleModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PixelInterleavedSampleModel implementation public partial class PixelInterleavedSampleModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/RGBImageFilter.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/RGBImageFilter.cs index cf21e14b6c..a1a74637b3 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/RGBImageFilter.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/RGBImageFilter.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region RGBImageFilter + #region RGBImageFilter declaration + /// + /// + /// + public partial class RGBImageFilter : Java.Awt.ImageNs.ImageFilter + { + const string _bridgeClassName = "java.awt.image.RGBImageFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RGBImageFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RGBImageFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RGBImageFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RGBImageFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RGBImageFilter implementation public partial class RGBImageFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Raster.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Raster.cs index 2e6e83f433..379949b0b0 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Raster.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Raster.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region Raster + #region Raster declaration + /// + /// + /// + public partial class Raster : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.Raster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Raster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Raster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Raster implementation public partial class Raster { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/RasterFormatException.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/RasterFormatException.cs index b111ca31bf..9e079e0b77 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/RasterFormatException.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/RasterFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.ImageNs { - #region RasterFormatException + #region RasterFormatException declaration + /// + /// + /// + public partial class RasterFormatException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.awt.image.RasterFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RasterFormatException implementation public partial class RasterFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/RasterOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/RasterOp.cs index c2ef281158..a4114e84f3 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/RasterOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/RasterOp.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region RasterOp declaration + /// + /// + /// + public partial class RasterOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.RasterOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RasterOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RasterOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RasterOp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RasterOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRasterOp /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IRasterOp } #endregion - #region RasterOp + #region RasterOp implementation public partial class RasterOp : Java.Awt.ImageNs.IRasterOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/AllPackageClasses.cs deleted file mode 100644 index 4b0ee1fd5d..0000000000 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/AllPackageClasses.cs +++ /dev/null @@ -1,351 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.ImageNs.Renderable -{ - #region ContextualRenderedImageFactory - /// - /// - /// - public partial class ContextualRenderedImageFactory : Java.Awt.ImageNs.Renderable.RenderedImageFactory - { - const string _bridgeClassName = "java.awt.image.renderable.ContextualRenderedImageFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ContextualRenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContextualRenderedImageFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ContextualRenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContextualRenderedImageFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParameterBlock - /// - /// - /// - public partial class ParameterBlock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.renderable.ParameterBlock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParameterBlock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParameterBlock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderableImage - /// - /// - /// - public partial class RenderableImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.renderable.RenderableImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RenderableImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RenderableImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RenderableImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RenderableImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderableImageOp - /// - /// - /// - public partial class RenderableImageOp : Java.Awt.ImageNs.Renderable.RenderableImage - { - const string _bridgeClassName = "java.awt.image.renderable.RenderableImageOp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RenderableImageOp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RenderableImageOp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderableImageProducer - /// - /// - /// - public partial class RenderableImageProducer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.renderable.RenderableImageProducer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RenderableImageProducer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RenderableImageProducer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderContext - /// - /// - /// - public partial class RenderContext : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.image.renderable.RenderContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RenderContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RenderContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RenderedImageFactory - /// - /// - /// - public partial class RenderedImageFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.image.renderable.RenderedImageFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RenderedImageFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RenderedImageFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ContextualRenderedImageFactory.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ContextualRenderedImageFactory.cs index 5c4ba110c8..385fddafaa 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ContextualRenderedImageFactory.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ContextualRenderedImageFactory.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs.Renderable { + #region ContextualRenderedImageFactory declaration + /// + /// + /// + public partial class ContextualRenderedImageFactory : Java.Awt.ImageNs.Renderable.RenderedImageFactory + { + const string _bridgeClassName = "java.awt.image.renderable.ContextualRenderedImageFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ContextualRenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContextualRenderedImageFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ContextualRenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContextualRenderedImageFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IContextualRenderedImageFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IContextualRenderedImageFactory : Java.Awt.ImageNs.Rend } #endregion - #region ContextualRenderedImageFactory + #region ContextualRenderedImageFactory implementation public partial class ContextualRenderedImageFactory : Java.Awt.ImageNs.Renderable.IContextualRenderedImageFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ParameterBlock.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ParameterBlock.cs index 7be6e488e9..b9640a1f1d 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ParameterBlock.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/ParameterBlock.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs.Renderable { - #region ParameterBlock + #region ParameterBlock declaration + /// + /// + /// + public partial class ParameterBlock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.renderable.ParameterBlock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParameterBlock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParameterBlock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParameterBlock implementation public partial class ParameterBlock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderContext.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderContext.cs index c96cb38e39..b91398aa48 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderContext.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderContext.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs.Renderable { - #region RenderContext + #region RenderContext declaration + /// + /// + /// + public partial class RenderContext : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.image.renderable.RenderContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RenderContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RenderContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RenderContext implementation public partial class RenderContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImage.cs index b715bd47da..97098757f3 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImage.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs.Renderable { + #region RenderableImage declaration + /// + /// + /// + public partial class RenderableImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.renderable.RenderableImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RenderableImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RenderableImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RenderableImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RenderableImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRenderableImage /// /// .NET interface for TO BE DEFINED FROM USER @@ -97,7 +144,7 @@ public partial interface IRenderableImage } #endregion - #region RenderableImage + #region RenderableImage implementation public partial class RenderableImage : Java.Awt.ImageNs.Renderable.IRenderableImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageOp.cs index ef0a0b4aa3..e0265ae034 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs.Renderable { - #region RenderableImageOp + #region RenderableImageOp declaration + /// + /// + /// + public partial class RenderableImageOp : Java.Awt.ImageNs.Renderable.RenderableImage + { + const string _bridgeClassName = "java.awt.image.renderable.RenderableImageOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RenderableImageOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RenderableImageOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RenderableImageOp implementation public partial class RenderableImageOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageProducer.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageProducer.cs index 9092dd82d7..799947b440 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageProducer.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderableImageProducer.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs.Renderable { - #region RenderableImageProducer + #region RenderableImageProducer declaration + /// + /// + /// + public partial class RenderableImageProducer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.renderable.RenderableImageProducer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RenderableImageProducer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RenderableImageProducer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RenderableImageProducer implementation public partial class RenderableImageProducer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderedImageFactory.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderedImageFactory.cs index 30cfc7fcf5..93fc5c5578 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderedImageFactory.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/Renderable/RenderedImageFactory.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs.Renderable { + #region RenderedImageFactory declaration + /// + /// + /// + public partial class RenderedImageFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.renderable.RenderedImageFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RenderedImageFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RenderedImageFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RenderedImageFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRenderedImageFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IRenderedImageFactory } #endregion - #region RenderedImageFactory + #region RenderedImageFactory implementation public partial class RenderedImageFactory : Java.Awt.ImageNs.Renderable.IRenderedImageFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/RenderedImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/RenderedImage.cs index d761d313f6..71887613ae 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/RenderedImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/RenderedImage.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region RenderedImage declaration + /// + /// + /// + public partial class RenderedImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.RenderedImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RenderedImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RenderedImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRenderedImage /// /// .NET interface for TO BE DEFINED FROM USER @@ -136,7 +183,7 @@ public partial interface IRenderedImage } #endregion - #region RenderedImage + #region RenderedImage implementation public partial class RenderedImage : Java.Awt.ImageNs.IRenderedImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ReplicateScaleFilter.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ReplicateScaleFilter.cs index 666258a42d..8d14bafe6f 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ReplicateScaleFilter.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ReplicateScaleFilter.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ReplicateScaleFilter + #region ReplicateScaleFilter declaration + /// + /// + /// + public partial class ReplicateScaleFilter : Java.Awt.ImageNs.ImageFilter + { + const string _bridgeClassName = "java.awt.image.ReplicateScaleFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReplicateScaleFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReplicateScaleFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReplicateScaleFilter implementation public partial class ReplicateScaleFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/RescaleOp.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/RescaleOp.cs index 1831dd98a3..08632a4549 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/RescaleOp.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/RescaleOp.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region RescaleOp + #region RescaleOp declaration + /// + /// + /// + public partial class RescaleOp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.RescaleOp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RescaleOp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RescaleOp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RescaleOp implementation public partial class RescaleOp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/SampleModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/SampleModel.cs index a2b84bfe34..364e2a19f7 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/SampleModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/SampleModel.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region SampleModel + #region SampleModel declaration + /// + /// + /// + public partial class SampleModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.SampleModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SampleModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SampleModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SampleModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SampleModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SampleModel implementation public partial class SampleModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/ShortLookupTable.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/ShortLookupTable.cs index 841582ba18..271014756d 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/ShortLookupTable.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/ShortLookupTable.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region ShortLookupTable + #region ShortLookupTable declaration + /// + /// + /// + public partial class ShortLookupTable : Java.Awt.ImageNs.LookupTable + { + const string _bridgeClassName = "java.awt.image.ShortLookupTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ShortLookupTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ShortLookupTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ShortLookupTable implementation public partial class ShortLookupTable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/SinglePixelPackedSampleModel.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/SinglePixelPackedSampleModel.cs index 0a1316a531..435e64c076 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/SinglePixelPackedSampleModel.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/SinglePixelPackedSampleModel.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region SinglePixelPackedSampleModel + #region SinglePixelPackedSampleModel declaration + /// + /// + /// + public partial class SinglePixelPackedSampleModel : Java.Awt.ImageNs.SampleModel + { + const string _bridgeClassName = "java.awt.image.SinglePixelPackedSampleModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SinglePixelPackedSampleModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SinglePixelPackedSampleModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SinglePixelPackedSampleModel implementation public partial class SinglePixelPackedSampleModel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/TileObserver.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/TileObserver.cs index 29f60cb679..4c58563164 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/TileObserver.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/TileObserver.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region TileObserver declaration + /// + /// + /// + public partial class TileObserver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.image.TileObserver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TileObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TileObserver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TileObserver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TileObserver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITileObserver /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ITileObserver } #endregion - #region TileObserver + #region TileObserver implementation public partial class TileObserver : Java.Awt.ImageNs.ITileObserver { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/VolatileImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/VolatileImage.cs index 4707ee9aae..f90b287b5f 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/VolatileImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/VolatileImage.cs @@ -25,7 +25,54 @@ namespace Java.Awt.ImageNs { - #region VolatileImage + #region VolatileImage declaration + /// + /// + /// + public partial class VolatileImage : Java.Awt.Image + { + const string _bridgeClassName = "java.awt.image.VolatileImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("VolatileImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public VolatileImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("VolatileImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public VolatileImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VolatileImage implementation public partial class VolatileImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRaster.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRaster.cs index 4794cfddd9..192d5373c5 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRaster.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRaster.cs @@ -25,7 +25,52 @@ namespace Java.Awt.ImageNs { - #region WritableRaster + #region WritableRaster declaration + /// + /// + /// + public partial class WritableRaster : Java.Awt.ImageNs.Raster + { + const string _bridgeClassName = "java.awt.image.WritableRaster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WritableRaster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WritableRaster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WritableRaster implementation public partial class WritableRaster { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRenderedImage.cs b/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRenderedImage.cs index 60429fbb1d..d71a6971f0 100644 --- a/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRenderedImage.cs +++ b/src/net/JNet/Generated/Java/Awt/ImageNs/WritableRenderedImage.cs @@ -25,6 +25,53 @@ namespace Java.Awt.ImageNs { + #region WritableRenderedImage declaration + /// + /// + /// + public partial class WritableRenderedImage : Java.Awt.ImageNs.RenderedImage + { + const string _bridgeClassName = "java.awt.image.WritableRenderedImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WritableRenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WritableRenderedImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WritableRenderedImage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WritableRenderedImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWritableRenderedImage /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface IWritableRenderedImage : Java.Awt.ImageNs.IRenderedImag } #endregion - #region WritableRenderedImage + #region WritableRenderedImage implementation public partial class WritableRenderedImage : Java.Awt.ImageNs.IWritableRenderedImage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Insets.cs b/src/net/JNet/Generated/Java/Awt/Insets.cs index 224496c889..e05ffe890d 100644 --- a/src/net/JNet/Generated/Java/Awt/Insets.cs +++ b/src/net/JNet/Generated/Java/Awt/Insets.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Insets + #region Insets declaration + /// + /// + /// + public partial class Insets : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Insets"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Insets() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Insets(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Insets implementation public partial class Insets { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ItemSelectable.cs b/src/net/JNet/Generated/Java/Awt/ItemSelectable.cs index 48268e82b5..76fbefe36f 100644 --- a/src/net/JNet/Generated/Java/Awt/ItemSelectable.cs +++ b/src/net/JNet/Generated/Java/Awt/ItemSelectable.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region ItemSelectable declaration + /// + /// + /// + public partial class ItemSelectable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.ItemSelectable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ItemSelectable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ItemSelectable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ItemSelectable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ItemSelectable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IItemSelectable /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface IItemSelectable } #endregion - #region ItemSelectable + #region ItemSelectable implementation public partial class ItemSelectable : Java.Awt.IItemSelectable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/JobAttributes.cs b/src/net/JNet/Generated/Java/Awt/JobAttributes.cs index f496f180e9..4d2450e71f 100644 --- a/src/net/JNet/Generated/Java/Awt/JobAttributes.cs +++ b/src/net/JNet/Generated/Java/Awt/JobAttributes.cs @@ -25,7 +25,277 @@ namespace Java.Awt { - #region JobAttributes + #region JobAttributes declaration + /// + /// + /// + public partial class JobAttributes : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.JobAttributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobAttributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobAttributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DefaultSelectionType declaration + /// + /// + /// + public partial class DefaultSelectionType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.JobAttributes$DefaultSelectionType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultSelectionType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultSelectionType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DestinationType declaration + /// + /// + /// + public partial class DestinationType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.JobAttributes$DestinationType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DestinationType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DestinationType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DialogType declaration + /// + /// + /// + public partial class DialogType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.JobAttributes$DialogType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DialogType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DialogType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MultipleDocumentHandlingType declaration + /// + /// + /// + public partial class MultipleDocumentHandlingType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.JobAttributes$MultipleDocumentHandlingType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultipleDocumentHandlingType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultipleDocumentHandlingType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SidesType declaration + /// + /// + /// + public partial class SidesType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.JobAttributes$SidesType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SidesType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SidesType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JobAttributes implementation public partial class JobAttributes { #region Constructors @@ -195,7 +465,7 @@ public void SetSidesToDefault() #endregion #region Nested classes - #region DefaultSelectionType + #region DefaultSelectionType implementation public partial class DefaultSelectionType { #region Constructors @@ -244,7 +514,7 @@ public partial class DefaultSelectionType } #endregion - #region DestinationType + #region DestinationType implementation public partial class DestinationType { #region Constructors @@ -287,7 +557,7 @@ public partial class DestinationType } #endregion - #region DialogType + #region DialogType implementation public partial class DialogType { #region Constructors @@ -336,7 +606,7 @@ public partial class DialogType } #endregion - #region MultipleDocumentHandlingType + #region MultipleDocumentHandlingType implementation public partial class MultipleDocumentHandlingType { #region Constructors @@ -379,7 +649,7 @@ public partial class MultipleDocumentHandlingType } #endregion - #region SidesType + #region SidesType implementation public partial class SidesType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/KeyEventDispatcher.cs b/src/net/JNet/Generated/Java/Awt/KeyEventDispatcher.cs index 06b66cc967..abd6d79296 100644 --- a/src/net/JNet/Generated/Java/Awt/KeyEventDispatcher.cs +++ b/src/net/JNet/Generated/Java/Awt/KeyEventDispatcher.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region KeyEventDispatcher declaration + /// + /// + /// + public partial class KeyEventDispatcher : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.KeyEventDispatcher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyEventDispatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyEventDispatcher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyEventDispatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyEventDispatcher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeyEventDispatcher /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IKeyEventDispatcher } #endregion - #region KeyEventDispatcher + #region KeyEventDispatcher implementation public partial class KeyEventDispatcher : Java.Awt.IKeyEventDispatcher { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/KeyEventPostProcessor.cs b/src/net/JNet/Generated/Java/Awt/KeyEventPostProcessor.cs index ea5b13252a..b466572aa4 100644 --- a/src/net/JNet/Generated/Java/Awt/KeyEventPostProcessor.cs +++ b/src/net/JNet/Generated/Java/Awt/KeyEventPostProcessor.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region KeyEventPostProcessor declaration + /// + /// + /// + public partial class KeyEventPostProcessor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.KeyEventPostProcessor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyEventPostProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyEventPostProcessor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyEventPostProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyEventPostProcessor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeyEventPostProcessor /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IKeyEventPostProcessor } #endregion - #region KeyEventPostProcessor + #region KeyEventPostProcessor implementation public partial class KeyEventPostProcessor : Java.Awt.IKeyEventPostProcessor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/KeyboardFocusManager.cs b/src/net/JNet/Generated/Java/Awt/KeyboardFocusManager.cs index 9aca5ff696..2f734de7ae 100644 --- a/src/net/JNet/Generated/Java/Awt/KeyboardFocusManager.cs +++ b/src/net/JNet/Generated/Java/Awt/KeyboardFocusManager.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region KeyboardFocusManager + #region KeyboardFocusManager declaration + /// + /// + /// + public partial class KeyboardFocusManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.KeyboardFocusManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyboardFocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyboardFocusManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyboardFocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyboardFocusManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyboardFocusManager implementation public partial class KeyboardFocusManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Label.cs b/src/net/JNet/Generated/Java/Awt/Label.cs index df995da65e..a277969ab4 100644 --- a/src/net/JNet/Generated/Java/Awt/Label.cs +++ b/src/net/JNet/Generated/Java/Awt/Label.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Label + #region Label declaration + /// + /// + /// + public partial class Label : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Label"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Label() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Label(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Label implementation public partial class Label { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/LayoutManager.cs b/src/net/JNet/Generated/Java/Awt/LayoutManager.cs index d63c7e9849..c453b53d5e 100644 --- a/src/net/JNet/Generated/Java/Awt/LayoutManager.cs +++ b/src/net/JNet/Generated/Java/Awt/LayoutManager.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region LayoutManager declaration + /// + /// + /// + public partial class LayoutManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.LayoutManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LayoutManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LayoutManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILayoutManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface ILayoutManager } #endregion - #region LayoutManager + #region LayoutManager implementation public partial class LayoutManager : Java.Awt.ILayoutManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/LayoutManager2.cs b/src/net/JNet/Generated/Java/Awt/LayoutManager2.cs index f2bd9fa74a..b2ade88309 100644 --- a/src/net/JNet/Generated/Java/Awt/LayoutManager2.cs +++ b/src/net/JNet/Generated/Java/Awt/LayoutManager2.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region LayoutManager2 declaration + /// + /// + /// + public partial class LayoutManager2 : Java.Awt.LayoutManager + { + const string _bridgeClassName = "java.awt.LayoutManager2"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LayoutManager2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutManager2() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LayoutManager2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutManager2(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILayoutManager2 /// /// .NET interface for TO BE DEFINED FROM USER @@ -72,7 +119,7 @@ public partial interface ILayoutManager2 : Java.Awt.ILayoutManager } #endregion - #region LayoutManager2 + #region LayoutManager2 implementation public partial class LayoutManager2 : Java.Awt.ILayoutManager2 { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/LinearGradientPaint.cs b/src/net/JNet/Generated/Java/Awt/LinearGradientPaint.cs index ec9199e280..1734e266cc 100644 --- a/src/net/JNet/Generated/Java/Awt/LinearGradientPaint.cs +++ b/src/net/JNet/Generated/Java/Awt/LinearGradientPaint.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region LinearGradientPaint + #region LinearGradientPaint declaration + /// + /// + /// + public partial class LinearGradientPaint : Java.Awt.MultipleGradientPaint + { + const string _bridgeClassName = "java.awt.LinearGradientPaint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinearGradientPaint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinearGradientPaint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinearGradientPaint implementation public partial class LinearGradientPaint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/List.cs b/src/net/JNet/Generated/Java/Awt/List.cs index 5294fc9038..a982032a05 100644 --- a/src/net/JNet/Generated/Java/Awt/List.cs +++ b/src/net/JNet/Generated/Java/Awt/List.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region List + #region List declaration + /// + /// + /// + public partial class List : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.List"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public List() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public List(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region List implementation public partial class List { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MediaTracker.cs b/src/net/JNet/Generated/Java/Awt/MediaTracker.cs index b5afbf0ecd..42c708b826 100644 --- a/src/net/JNet/Generated/Java/Awt/MediaTracker.cs +++ b/src/net/JNet/Generated/Java/Awt/MediaTracker.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region MediaTracker + #region MediaTracker declaration + /// + /// + /// + public partial class MediaTracker : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.MediaTracker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaTracker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaTracker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MediaTracker implementation public partial class MediaTracker { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Menu.cs b/src/net/JNet/Generated/Java/Awt/Menu.cs index dfa365b9ec..e8fcc2d902 100644 --- a/src/net/JNet/Generated/Java/Awt/Menu.cs +++ b/src/net/JNet/Generated/Java/Awt/Menu.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Menu + #region Menu declaration + /// + /// + /// + public partial class Menu : Java.Awt.MenuItem + { + const string _bridgeClassName = "java.awt.Menu"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Menu() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Menu(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Menu implementation public partial class Menu { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MenuBar.cs b/src/net/JNet/Generated/Java/Awt/MenuBar.cs index 565138c89c..6908af64e7 100644 --- a/src/net/JNet/Generated/Java/Awt/MenuBar.cs +++ b/src/net/JNet/Generated/Java/Awt/MenuBar.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region MenuBar + #region MenuBar declaration + /// + /// + /// + public partial class MenuBar : Java.Awt.MenuComponent + { + const string _bridgeClassName = "java.awt.MenuBar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuBar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuBar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuBar implementation public partial class MenuBar { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MenuComponent.cs b/src/net/JNet/Generated/Java/Awt/MenuComponent.cs index ece26041c8..fcb3078dbc 100644 --- a/src/net/JNet/Generated/Java/Awt/MenuComponent.cs +++ b/src/net/JNet/Generated/Java/Awt/MenuComponent.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region MenuComponent + #region MenuComponent declaration + /// + /// + /// + public partial class MenuComponent : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.MenuComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MenuComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MenuComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuComponent implementation public partial class MenuComponent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MenuContainer.cs b/src/net/JNet/Generated/Java/Awt/MenuContainer.cs index 915a468f26..c3b4e7bed4 100644 --- a/src/net/JNet/Generated/Java/Awt/MenuContainer.cs +++ b/src/net/JNet/Generated/Java/Awt/MenuContainer.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region MenuContainer declaration + /// + /// + /// + public partial class MenuContainer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.MenuContainer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MenuContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuContainer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MenuContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuContainer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMenuContainer /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IMenuContainer } #endregion - #region MenuContainer + #region MenuContainer implementation public partial class MenuContainer : Java.Awt.IMenuContainer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MenuItem.cs b/src/net/JNet/Generated/Java/Awt/MenuItem.cs index afe0765bea..92b3bae2b0 100644 --- a/src/net/JNet/Generated/Java/Awt/MenuItem.cs +++ b/src/net/JNet/Generated/Java/Awt/MenuItem.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region MenuItem + #region MenuItem declaration + /// + /// + /// + public partial class MenuItem : Java.Awt.MenuComponent + { + const string _bridgeClassName = "java.awt.MenuItem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuItem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuItem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuItem implementation public partial class MenuItem { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MenuShortcut.cs b/src/net/JNet/Generated/Java/Awt/MenuShortcut.cs index f0275789ef..6bd6d25c9e 100644 --- a/src/net/JNet/Generated/Java/Awt/MenuShortcut.cs +++ b/src/net/JNet/Generated/Java/Awt/MenuShortcut.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region MenuShortcut + #region MenuShortcut declaration + /// + /// + /// + public partial class MenuShortcut : Java.Io.Serializable + { + const string _bridgeClassName = "java.awt.MenuShortcut"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuShortcut() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuShortcut(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuShortcut implementation public partial class MenuShortcut { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MouseInfo.cs b/src/net/JNet/Generated/Java/Awt/MouseInfo.cs index eb03ec65ab..c3215483c2 100644 --- a/src/net/JNet/Generated/Java/Awt/MouseInfo.cs +++ b/src/net/JNet/Generated/Java/Awt/MouseInfo.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region MouseInfo + #region MouseInfo declaration + /// + /// + /// + public partial class MouseInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.MouseInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseInfo implementation public partial class MouseInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/MultipleGradientPaint.cs b/src/net/JNet/Generated/Java/Awt/MultipleGradientPaint.cs index 1a46cbf2c0..6bb8c80ef8 100644 --- a/src/net/JNet/Generated/Java/Awt/MultipleGradientPaint.cs +++ b/src/net/JNet/Generated/Java/Awt/MultipleGradientPaint.cs @@ -25,7 +25,144 @@ namespace Java.Awt { - #region MultipleGradientPaint + #region MultipleGradientPaint declaration + /// + /// + /// + public partial class MultipleGradientPaint : Java.Awt.Paint + { + const string _bridgeClassName = "java.awt.MultipleGradientPaint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MultipleGradientPaint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultipleGradientPaint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MultipleGradientPaint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultipleGradientPaint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ColorSpaceType declaration + /// + /// + /// + public partial class ColorSpaceType : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.MultipleGradientPaint$ColorSpaceType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorSpaceType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorSpaceType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CycleMethod declaration + /// + /// + /// + public partial class CycleMethod : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.MultipleGradientPaint$CycleMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CycleMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CycleMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MultipleGradientPaint implementation public partial class MultipleGradientPaint { #region Constructors @@ -91,7 +228,7 @@ public int Transparency #endregion #region Nested classes - #region ColorSpaceType + #region ColorSpaceType implementation public partial class ColorSpaceType { #region Constructors @@ -151,7 +288,7 @@ public static Java.Awt.MultipleGradientPaint.ColorSpaceType[] Values() } #endregion - #region CycleMethod + #region CycleMethod implementation public partial class CycleMethod { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/PageAttributes.cs b/src/net/JNet/Generated/Java/Awt/PageAttributes.cs index 200057d771..a257a28fb5 100644 --- a/src/net/JNet/Generated/Java/Awt/PageAttributes.cs +++ b/src/net/JNet/Generated/Java/Awt/PageAttributes.cs @@ -25,7 +25,277 @@ namespace Java.Awt { - #region PageAttributes + #region PageAttributes declaration + /// + /// + /// + public partial class PageAttributes : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.PageAttributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PageAttributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PageAttributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ColorType declaration + /// + /// + /// + public partial class ColorType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PageAttributes$ColorType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MediaType declaration + /// + /// + /// + public partial class MediaType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PageAttributes$MediaType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OrientationRequestedType declaration + /// + /// + /// + public partial class OrientationRequestedType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PageAttributes$OrientationRequestedType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OrientationRequestedType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OrientationRequestedType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OriginType declaration + /// + /// + /// + public partial class OriginType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PageAttributes$OriginType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OriginType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OriginType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PrintQualityType declaration + /// + /// + /// + public partial class PrintQualityType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PageAttributes$PrintQualityType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintQualityType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintQualityType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region PageAttributes implementation public partial class PageAttributes { #region Constructors @@ -196,7 +466,7 @@ public void SetPrintQualityToDefault() #endregion #region Nested classes - #region ColorType + #region ColorType implementation public partial class ColorType { #region Constructors @@ -239,7 +509,7 @@ public partial class ColorType } #endregion - #region MediaType + #region MediaType implementation public partial class MediaType { #region Constructors @@ -1152,7 +1422,7 @@ public partial class MediaType } #endregion - #region OrientationRequestedType + #region OrientationRequestedType implementation public partial class OrientationRequestedType { #region Constructors @@ -1195,7 +1465,7 @@ public partial class OrientationRequestedType } #endregion - #region OriginType + #region OriginType implementation public partial class OriginType { #region Constructors @@ -1238,7 +1508,7 @@ public partial class OriginType } #endregion - #region PrintQualityType + #region PrintQualityType implementation public partial class PrintQualityType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Paint.cs b/src/net/JNet/Generated/Java/Awt/Paint.cs index 326e60aa1b..177d1f221d 100644 --- a/src/net/JNet/Generated/Java/Awt/Paint.cs +++ b/src/net/JNet/Generated/Java/Awt/Paint.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region Paint declaration + /// + /// + /// + public partial class Paint : Java.Awt.Transparency + { + const string _bridgeClassName = "java.awt.Paint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Paint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Paint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Paint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Paint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPaint /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IPaint : Java.Awt.ITransparency } #endregion - #region Paint + #region Paint implementation public partial class Paint : Java.Awt.IPaint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/PaintContext.cs b/src/net/JNet/Generated/Java/Awt/PaintContext.cs index bc216ec6f6..ebad1fab2c 100644 --- a/src/net/JNet/Generated/Java/Awt/PaintContext.cs +++ b/src/net/JNet/Generated/Java/Awt/PaintContext.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region PaintContext declaration + /// + /// + /// + public partial class PaintContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PaintContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PaintContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PaintContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PaintContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PaintContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPaintContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IPaintContext } #endregion - #region PaintContext + #region PaintContext implementation public partial class PaintContext : Java.Awt.IPaintContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Panel.cs b/src/net/JNet/Generated/Java/Awt/Panel.cs index 6b00533647..e356cd2129 100644 --- a/src/net/JNet/Generated/Java/Awt/Panel.cs +++ b/src/net/JNet/Generated/Java/Awt/Panel.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Panel + #region Panel declaration + /// + /// + /// + public partial class Panel : Java.Awt.Container + { + const string _bridgeClassName = "java.awt.Panel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Panel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Panel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Panel implementation public partial class Panel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Point.cs b/src/net/JNet/Generated/Java/Awt/Point.cs index 18a92f0fd2..17c15ea0b8 100644 --- a/src/net/JNet/Generated/Java/Awt/Point.cs +++ b/src/net/JNet/Generated/Java/Awt/Point.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Point + #region Point declaration + /// + /// + /// + public partial class Point : Java.Awt.Geom.Point2D + { + const string _bridgeClassName = "java.awt.Point"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Point() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Point(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Point implementation public partial class Point { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/PointerInfo.cs b/src/net/JNet/Generated/Java/Awt/PointerInfo.cs index a61d99bb2e..6c23ea2fec 100644 --- a/src/net/JNet/Generated/Java/Awt/PointerInfo.cs +++ b/src/net/JNet/Generated/Java/Awt/PointerInfo.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region PointerInfo + #region PointerInfo declaration + /// + /// + /// + public partial class PointerInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PointerInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PointerInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PointerInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PointerInfo implementation public partial class PointerInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Polygon.cs b/src/net/JNet/Generated/Java/Awt/Polygon.cs index 14f7a85f4f..997c7dcf02 100644 --- a/src/net/JNet/Generated/Java/Awt/Polygon.cs +++ b/src/net/JNet/Generated/Java/Awt/Polygon.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Polygon + #region Polygon declaration + /// + /// + /// + public partial class Polygon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Polygon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Polygon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Polygon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Polygon implementation public partial class Polygon { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/PopupMenu.cs b/src/net/JNet/Generated/Java/Awt/PopupMenu.cs index af470847da..5befb08e63 100644 --- a/src/net/JNet/Generated/Java/Awt/PopupMenu.cs +++ b/src/net/JNet/Generated/Java/Awt/PopupMenu.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region PopupMenu + #region PopupMenu declaration + /// + /// + /// + public partial class PopupMenu : Java.Awt.Menu + { + const string _bridgeClassName = "java.awt.PopupMenu"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PopupMenu() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PopupMenu(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PopupMenu implementation public partial class PopupMenu { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Awt/Print/AllPackageClasses.cs deleted file mode 100644 index 4388414526..0000000000 --- a/src/net/JNet/Generated/Java/Awt/Print/AllPackageClasses.cs +++ /dev/null @@ -1,404 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Awt.Print -{ - #region Book - /// - /// - /// - public partial class Book : Java.Awt.Print.Pageable - { - const string _bridgeClassName = "java.awt.print.Book"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Book() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Book(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Pageable - /// - /// - /// - public partial class Pageable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.print.Pageable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Pageable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Pageable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Pageable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Pageable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PageFormat - /// - /// - /// - public partial class PageFormat : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.print.PageFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PageFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PageFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Paper - /// - /// - /// - public partial class Paper : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.awt.print.Paper"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Paper() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Paper(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Printable - /// - /// - /// - public partial class Printable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.print.Printable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Printable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Printable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Printable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Printable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterAbortException - /// - /// - /// - public partial class PrinterAbortException : Java.Awt.Print.PrinterException - { - const string _bridgeClassName = "java.awt.print.PrinterAbortException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PrinterException - /// - /// - /// - public partial class PrinterException : Java.Lang.Exception - { - const string _bridgeClassName = "java.awt.print.PrinterException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PrinterGraphics - /// - /// - /// - public partial class PrinterGraphics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.print.PrinterGraphics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrinterGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrinterGraphics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrinterGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrinterGraphics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterIOException - /// - /// - /// - public partial class PrinterIOException : Java.Awt.Print.PrinterException - { - const string _bridgeClassName = "java.awt.print.PrinterIOException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PrinterJob - /// - /// - /// - public partial class PrinterJob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.awt.print.PrinterJob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrinterJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrinterJob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrinterJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrinterJob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Awt/Print/Book.cs b/src/net/JNet/Generated/Java/Awt/Print/Book.cs index 6862f1e6f2..6a6441c3c5 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/Book.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/Book.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Print { - #region Book + #region Book declaration + /// + /// + /// + public partial class Book : Java.Awt.Print.Pageable + { + const string _bridgeClassName = "java.awt.print.Book"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Book() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Book(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Book implementation public partial class Book { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/PageFormat.cs b/src/net/JNet/Generated/Java/Awt/Print/PageFormat.cs index c9a7221418..026013727b 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/PageFormat.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/PageFormat.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Print { - #region PageFormat + #region PageFormat declaration + /// + /// + /// + public partial class PageFormat : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.print.PageFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PageFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PageFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PageFormat implementation public partial class PageFormat { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/Pageable.cs b/src/net/JNet/Generated/Java/Awt/Print/Pageable.cs index 62fc92a702..a683688bc6 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/Pageable.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/Pageable.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Print { + #region Pageable declaration + /// + /// + /// + public partial class Pageable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.print.Pageable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Pageable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Pageable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Pageable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Pageable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPageable /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IPageable } #endregion - #region Pageable + #region Pageable implementation public partial class Pageable : Java.Awt.Print.IPageable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/Paper.cs b/src/net/JNet/Generated/Java/Awt/Print/Paper.cs index cdc617efe5..7561540119 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/Paper.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/Paper.cs @@ -25,7 +25,52 @@ namespace Java.Awt.Print { - #region Paper + #region Paper declaration + /// + /// + /// + public partial class Paper : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.awt.print.Paper"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Paper() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Paper(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Paper implementation public partial class Paper { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/Printable.cs b/src/net/JNet/Generated/Java/Awt/Print/Printable.cs index 93d2fa715d..3164418e37 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/Printable.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/Printable.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Print { + #region Printable declaration + /// + /// + /// + public partial class Printable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.print.Printable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Printable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Printable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Printable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Printable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintable /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IPrintable } #endregion - #region Printable + #region Printable implementation public partial class Printable : Java.Awt.Print.IPrintable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/PrinterAbortException.cs b/src/net/JNet/Generated/Java/Awt/Print/PrinterAbortException.cs index a8734e7d19..263c135d22 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/PrinterAbortException.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/PrinterAbortException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Print { - #region PrinterAbortException + #region PrinterAbortException declaration + /// + /// + /// + public partial class PrinterAbortException : Java.Awt.Print.PrinterException + { + const string _bridgeClassName = "java.awt.print.PrinterAbortException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PrinterAbortException implementation public partial class PrinterAbortException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/PrinterException.cs b/src/net/JNet/Generated/Java/Awt/Print/PrinterException.cs index 932725aa20..cbf5b45414 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/PrinterException.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/PrinterException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Print { - #region PrinterException + #region PrinterException declaration + /// + /// + /// + public partial class PrinterException : Java.Lang.Exception + { + const string _bridgeClassName = "java.awt.print.PrinterException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PrinterException implementation public partial class PrinterException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/PrinterGraphics.cs b/src/net/JNet/Generated/Java/Awt/Print/PrinterGraphics.cs index 8315bbda4b..84f0e8ad9d 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/PrinterGraphics.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/PrinterGraphics.cs @@ -25,6 +25,53 @@ namespace Java.Awt.Print { + #region PrinterGraphics declaration + /// + /// + /// + public partial class PrinterGraphics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.print.PrinterGraphics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrinterGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrinterGraphics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrinterGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrinterGraphics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrinterGraphics /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IPrinterGraphics } #endregion - #region PrinterGraphics + #region PrinterGraphics implementation public partial class PrinterGraphics : Java.Awt.Print.IPrinterGraphics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/PrinterIOException.cs b/src/net/JNet/Generated/Java/Awt/Print/PrinterIOException.cs index 1d8a059158..99c0a41d72 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/PrinterIOException.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/PrinterIOException.cs @@ -25,7 +25,24 @@ namespace Java.Awt.Print { - #region PrinterIOException + #region PrinterIOException declaration + /// + /// + /// + public partial class PrinterIOException : Java.Awt.Print.PrinterException + { + const string _bridgeClassName = "java.awt.print.PrinterIOException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PrinterIOException implementation public partial class PrinterIOException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Print/PrinterJob.cs b/src/net/JNet/Generated/Java/Awt/Print/PrinterJob.cs index 5bc4df92f2..1fa19bea26 100644 --- a/src/net/JNet/Generated/Java/Awt/Print/PrinterJob.cs +++ b/src/net/JNet/Generated/Java/Awt/Print/PrinterJob.cs @@ -25,7 +25,54 @@ namespace Java.Awt.Print { - #region PrinterJob + #region PrinterJob declaration + /// + /// + /// + public partial class PrinterJob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.print.PrinterJob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrinterJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrinterJob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrinterJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrinterJob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterJob implementation public partial class PrinterJob { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/PrintGraphics.cs b/src/net/JNet/Generated/Java/Awt/PrintGraphics.cs index 52f49901c2..d7e97a6d1f 100644 --- a/src/net/JNet/Generated/Java/Awt/PrintGraphics.cs +++ b/src/net/JNet/Generated/Java/Awt/PrintGraphics.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region PrintGraphics declaration + /// + /// + /// + public partial class PrintGraphics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PrintGraphics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintGraphics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintGraphics class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintGraphics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintGraphics /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IPrintGraphics } #endregion - #region PrintGraphics + #region PrintGraphics implementation public partial class PrintGraphics : Java.Awt.IPrintGraphics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/PrintJob.cs b/src/net/JNet/Generated/Java/Awt/PrintJob.cs index 7f6828fff9..1b912f7ea0 100644 --- a/src/net/JNet/Generated/Java/Awt/PrintJob.cs +++ b/src/net/JNet/Generated/Java/Awt/PrintJob.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region PrintJob + #region PrintJob declaration + /// + /// + /// + public partial class PrintJob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.PrintJob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintJob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintJob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintJob implementation public partial class PrintJob { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/RadialGradientPaint.cs b/src/net/JNet/Generated/Java/Awt/RadialGradientPaint.cs index 31370a97fa..2f3e57d7ff 100644 --- a/src/net/JNet/Generated/Java/Awt/RadialGradientPaint.cs +++ b/src/net/JNet/Generated/Java/Awt/RadialGradientPaint.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region RadialGradientPaint + #region RadialGradientPaint declaration + /// + /// + /// + public partial class RadialGradientPaint : Java.Awt.MultipleGradientPaint + { + const string _bridgeClassName = "java.awt.RadialGradientPaint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RadialGradientPaint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RadialGradientPaint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RadialGradientPaint implementation public partial class RadialGradientPaint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Rectangle.cs b/src/net/JNet/Generated/Java/Awt/Rectangle.cs index e371580e09..3db7782f09 100644 --- a/src/net/JNet/Generated/Java/Awt/Rectangle.cs +++ b/src/net/JNet/Generated/Java/Awt/Rectangle.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Rectangle + #region Rectangle declaration + /// + /// + /// + public partial class Rectangle : Java.Awt.Geom.Rectangle2D + { + const string _bridgeClassName = "java.awt.Rectangle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Rectangle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Rectangle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Rectangle implementation public partial class Rectangle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/RenderingHints.cs b/src/net/JNet/Generated/Java/Awt/RenderingHints.cs index 461f63f2c0..05a4bc792a 100644 --- a/src/net/JNet/Generated/Java/Awt/RenderingHints.cs +++ b/src/net/JNet/Generated/Java/Awt/RenderingHints.cs @@ -25,7 +25,99 @@ namespace Java.Awt { - #region RenderingHints + #region RenderingHints declaration + /// + /// + /// + public partial class RenderingHints : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.RenderingHints"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RenderingHints() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RenderingHints(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Key declaration + /// + /// + /// + public partial class Key : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.RenderingHints$Key"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Key() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Key(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region RenderingHints implementation public partial class RenderingHints { #region Constructors @@ -465,7 +557,7 @@ public void PutAll(Java.Util.Map arg0) #endregion #region Nested classes - #region Key + #region Key implementation public partial class Key { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Robot.cs b/src/net/JNet/Generated/Java/Awt/Robot.cs index 079c8e8c69..3441fc62cc 100644 --- a/src/net/JNet/Generated/Java/Awt/Robot.cs +++ b/src/net/JNet/Generated/Java/Awt/Robot.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Robot + #region Robot declaration + /// + /// + /// + public partial class Robot : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Robot"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Robot() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Robot(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Robot implementation public partial class Robot { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ScrollPane.cs b/src/net/JNet/Generated/Java/Awt/ScrollPane.cs index 40c534c996..75494a3d24 100644 --- a/src/net/JNet/Generated/Java/Awt/ScrollPane.cs +++ b/src/net/JNet/Generated/Java/Awt/ScrollPane.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region ScrollPane + #region ScrollPane declaration + /// + /// + /// + public partial class ScrollPane : Java.Awt.Container + { + const string _bridgeClassName = "java.awt.ScrollPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScrollPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScrollPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScrollPane implementation public partial class ScrollPane { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/ScrollPaneAdjustable.cs b/src/net/JNet/Generated/Java/Awt/ScrollPaneAdjustable.cs index 1f1aa3a767..95337ef225 100644 --- a/src/net/JNet/Generated/Java/Awt/ScrollPaneAdjustable.cs +++ b/src/net/JNet/Generated/Java/Awt/ScrollPaneAdjustable.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region ScrollPaneAdjustable + #region ScrollPaneAdjustable declaration + /// + /// + /// + public partial class ScrollPaneAdjustable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.ScrollPaneAdjustable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScrollPaneAdjustable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScrollPaneAdjustable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScrollPaneAdjustable implementation public partial class ScrollPaneAdjustable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Scrollbar.cs b/src/net/JNet/Generated/Java/Awt/Scrollbar.cs index c7cae83ffa..fd441a4801 100644 --- a/src/net/JNet/Generated/Java/Awt/Scrollbar.cs +++ b/src/net/JNet/Generated/Java/Awt/Scrollbar.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region Scrollbar + #region Scrollbar declaration + /// + /// + /// + public partial class Scrollbar : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.Scrollbar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Scrollbar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Scrollbar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Scrollbar implementation public partial class Scrollbar { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/SecondaryLoop.cs b/src/net/JNet/Generated/Java/Awt/SecondaryLoop.cs index 3d4c960ee5..489c3c553d 100644 --- a/src/net/JNet/Generated/Java/Awt/SecondaryLoop.cs +++ b/src/net/JNet/Generated/Java/Awt/SecondaryLoop.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region SecondaryLoop declaration + /// + /// + /// + public partial class SecondaryLoop : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.SecondaryLoop"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecondaryLoop class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecondaryLoop() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecondaryLoop class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecondaryLoop(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISecondaryLoop /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ISecondaryLoop } #endregion - #region SecondaryLoop + #region SecondaryLoop implementation public partial class SecondaryLoop : Java.Awt.ISecondaryLoop { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Shape.cs b/src/net/JNet/Generated/Java/Awt/Shape.cs index e3684bede8..f5e828ab69 100644 --- a/src/net/JNet/Generated/Java/Awt/Shape.cs +++ b/src/net/JNet/Generated/Java/Awt/Shape.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region Shape declaration + /// + /// + /// + public partial class Shape : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Shape"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Shape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Shape() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Shape class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Shape(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IShape /// /// .NET interface for TO BE DEFINED FROM USER @@ -107,7 +154,7 @@ public partial interface IShape } #endregion - #region Shape + #region Shape implementation public partial class Shape : Java.Awt.IShape { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/SplashScreen.cs b/src/net/JNet/Generated/Java/Awt/SplashScreen.cs index ac49316a02..3a3bcaf7a4 100644 --- a/src/net/JNet/Generated/Java/Awt/SplashScreen.cs +++ b/src/net/JNet/Generated/Java/Awt/SplashScreen.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region SplashScreen + #region SplashScreen declaration + /// + /// + /// + public partial class SplashScreen : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.SplashScreen"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SplashScreen() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SplashScreen(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SplashScreen implementation public partial class SplashScreen { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Stroke.cs b/src/net/JNet/Generated/Java/Awt/Stroke.cs index 7cfbd445f7..9352dc8dc6 100644 --- a/src/net/JNet/Generated/Java/Awt/Stroke.cs +++ b/src/net/JNet/Generated/Java/Awt/Stroke.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region Stroke declaration + /// + /// + /// + public partial class Stroke : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Stroke"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Stroke class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Stroke() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Stroke class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Stroke(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStroke /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IStroke } #endregion - #region Stroke + #region Stroke implementation public partial class Stroke : Java.Awt.IStroke { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/SystemColor.cs b/src/net/JNet/Generated/Java/Awt/SystemColor.cs index a80e559563..b639c4095e 100644 --- a/src/net/JNet/Generated/Java/Awt/SystemColor.cs +++ b/src/net/JNet/Generated/Java/Awt/SystemColor.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region SystemColor + #region SystemColor declaration + /// + /// + /// + public partial class SystemColor : Java.Awt.Color + { + const string _bridgeClassName = "java.awt.SystemColor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemColor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SystemColor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SystemColor implementation public partial class SystemColor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/SystemTray.cs b/src/net/JNet/Generated/Java/Awt/SystemTray.cs index c6d1d80b81..b19b97698b 100644 --- a/src/net/JNet/Generated/Java/Awt/SystemTray.cs +++ b/src/net/JNet/Generated/Java/Awt/SystemTray.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region SystemTray + #region SystemTray declaration + /// + /// + /// + public partial class SystemTray : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.SystemTray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemTray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SystemTray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SystemTray implementation public partial class SystemTray { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Taskbar.cs b/src/net/JNet/Generated/Java/Awt/Taskbar.cs index 8434ed5b69..7c6c951cdd 100644 --- a/src/net/JNet/Generated/Java/Awt/Taskbar.cs +++ b/src/net/JNet/Generated/Java/Awt/Taskbar.cs @@ -25,7 +25,142 @@ namespace Java.Awt { - #region Taskbar + #region Taskbar declaration + /// + /// + /// + public partial class Taskbar : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Taskbar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Taskbar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Taskbar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Feature declaration + /// + /// + /// + public partial class Feature : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Taskbar$Feature"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Feature() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Feature(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region State declaration + /// + /// + /// + public partial class State : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Taskbar$State"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public State() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public State(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Taskbar implementation public partial class Taskbar { #region Constructors @@ -147,7 +282,7 @@ public void SetWindowProgressValue(Java.Awt.Window arg0, int arg1) #endregion #region Nested classes - #region Feature + #region Feature implementation public partial class Feature { #region Constructors @@ -255,7 +390,7 @@ public static Java.Awt.Taskbar.Feature[] Values() } #endregion - #region State + #region State implementation public partial class State { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/TextArea.cs b/src/net/JNet/Generated/Java/Awt/TextArea.cs index 892471f47a..2cac1d2dab 100644 --- a/src/net/JNet/Generated/Java/Awt/TextArea.cs +++ b/src/net/JNet/Generated/Java/Awt/TextArea.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region TextArea + #region TextArea declaration + /// + /// + /// + public partial class TextArea : Java.Awt.TextComponent + { + const string _bridgeClassName = "java.awt.TextArea"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextArea() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextArea(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextArea implementation public partial class TextArea { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/TextComponent.cs b/src/net/JNet/Generated/Java/Awt/TextComponent.cs index 27e82eb98a..9ef9176fc3 100644 --- a/src/net/JNet/Generated/Java/Awt/TextComponent.cs +++ b/src/net/JNet/Generated/Java/Awt/TextComponent.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region TextComponent + #region TextComponent declaration + /// + /// + /// + public partial class TextComponent : Java.Awt.Component + { + const string _bridgeClassName = "java.awt.TextComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextComponent implementation public partial class TextComponent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/TextField.cs b/src/net/JNet/Generated/Java/Awt/TextField.cs index 26309756ca..9d45579432 100644 --- a/src/net/JNet/Generated/Java/Awt/TextField.cs +++ b/src/net/JNet/Generated/Java/Awt/TextField.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region TextField + #region TextField declaration + /// + /// + /// + public partial class TextField : Java.Awt.TextComponent + { + const string _bridgeClassName = "java.awt.TextField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextField implementation public partial class TextField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/TexturePaint.cs b/src/net/JNet/Generated/Java/Awt/TexturePaint.cs index 03d0b0835c..207f9d6320 100644 --- a/src/net/JNet/Generated/Java/Awt/TexturePaint.cs +++ b/src/net/JNet/Generated/Java/Awt/TexturePaint.cs @@ -25,7 +25,52 @@ namespace Java.Awt { - #region TexturePaint + #region TexturePaint declaration + /// + /// + /// + public partial class TexturePaint : Java.Awt.Paint + { + const string _bridgeClassName = "java.awt.TexturePaint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TexturePaint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TexturePaint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TexturePaint implementation public partial class TexturePaint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Toolkit.cs b/src/net/JNet/Generated/Java/Awt/Toolkit.cs index 9a4072b1dc..e3b5d65760 100644 --- a/src/net/JNet/Generated/Java/Awt/Toolkit.cs +++ b/src/net/JNet/Generated/Java/Awt/Toolkit.cs @@ -25,7 +25,54 @@ namespace Java.Awt { - #region Toolkit + #region Toolkit declaration + /// + /// + /// + public partial class Toolkit : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Toolkit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Toolkit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Toolkit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Toolkit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Toolkit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Toolkit implementation public partial class Toolkit { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Transparency.cs b/src/net/JNet/Generated/Java/Awt/Transparency.cs index 9a40b04da5..a081173d2e 100644 --- a/src/net/JNet/Generated/Java/Awt/Transparency.cs +++ b/src/net/JNet/Generated/Java/Awt/Transparency.cs @@ -25,6 +25,53 @@ namespace Java.Awt { + #region Transparency declaration + /// + /// + /// + public partial class Transparency : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.Transparency"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Transparency class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transparency() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Transparency class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transparency(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransparency /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ITransparency } #endregion - #region Transparency + #region Transparency implementation public partial class Transparency : Java.Awt.ITransparency { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/TrayIcon.cs b/src/net/JNet/Generated/Java/Awt/TrayIcon.cs index 3145aa44c6..4c48ff2147 100644 --- a/src/net/JNet/Generated/Java/Awt/TrayIcon.cs +++ b/src/net/JNet/Generated/Java/Awt/TrayIcon.cs @@ -25,7 +25,97 @@ namespace Java.Awt { - #region TrayIcon + #region TrayIcon declaration + /// + /// + /// + public partial class TrayIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.awt.TrayIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TrayIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TrayIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region MessageType declaration + /// + /// + /// + public partial class MessageType : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.TrayIcon$MessageType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MessageType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MessageType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region TrayIcon implementation public partial class TrayIcon { #region Constructors @@ -206,7 +296,7 @@ public void SetImageAutoSize(bool arg0) #endregion #region Nested classes - #region MessageType + #region MessageType implementation public partial class MessageType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Awt/Window.cs b/src/net/JNet/Generated/Java/Awt/Window.cs index 9c51fb0b88..94c9782e7c 100644 --- a/src/net/JNet/Generated/Java/Awt/Window.cs +++ b/src/net/JNet/Generated/Java/Awt/Window.cs @@ -25,7 +25,97 @@ namespace Java.Awt { - #region Window + #region Window declaration + /// + /// + /// + public partial class Window : Java.Awt.Container + { + const string _bridgeClassName = "java.awt.Window"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Window() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Window(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Java.Lang.Enum + { + const string _bridgeClassName = "java.awt.Window$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Window implementation public partial class Window { #region Constructors @@ -396,7 +486,7 @@ public void ToFront() #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Beans/AllPackageClasses.cs deleted file mode 100644 index 906068a06a..0000000000 --- a/src/net/JNet/Generated/Java/Beans/AllPackageClasses.cs +++ /dev/null @@ -1,1860 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Beans -{ - #region BeanDescriptor - /// - /// - /// - public partial class BeanDescriptor : Java.Beans.FeatureDescriptor - { - const string _bridgeClassName = "java.beans.BeanDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanInfo - /// - /// - /// - public partial class BeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.BeanInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanProperty - /// - /// - /// - public partial class BeanProperty : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.beans.BeanProperty"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanProperty() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanProperty(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Beans - /// - /// - /// - public partial class Beans : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.Beans"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Beans() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Beans(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConstructorProperties - /// - /// - /// - public partial class ConstructorProperties : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.beans.ConstructorProperties"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConstructorProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConstructorProperties() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConstructorProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConstructorProperties(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Customizer - /// - /// - /// - public partial class Customizer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.Customizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Customizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Customizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Customizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Customizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultPersistenceDelegate - /// - /// - /// - public partial class DefaultPersistenceDelegate : Java.Beans.PersistenceDelegate - { - const string _bridgeClassName = "java.beans.DefaultPersistenceDelegate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultPersistenceDelegate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultPersistenceDelegate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DesignMode - /// - /// - /// - public partial class DesignMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.DesignMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DesignMode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesignMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DesignMode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesignMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Encoder - /// - /// - /// - public partial class Encoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.Encoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Encoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Encoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventHandler - /// - /// - /// - public partial class EventHandler : Java.Lang.Reflect.InvocationHandler - { - const string _bridgeClassName = "java.beans.EventHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventSetDescriptor - /// - /// - /// - public partial class EventSetDescriptor : Java.Beans.FeatureDescriptor - { - const string _bridgeClassName = "java.beans.EventSetDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventSetDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventSetDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExceptionListener - /// - /// - /// - public partial class ExceptionListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExceptionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.beans.ExceptionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ExceptionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ExceptionListenerDirect : ExceptionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.beans.ExceptionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Expression - /// - /// - /// - public partial class Expression : Java.Beans.Statement - { - const string _bridgeClassName = "java.beans.Expression"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Expression() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Expression(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FeatureDescriptor - /// - /// - /// - public partial class FeatureDescriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.FeatureDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FeatureDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FeatureDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IndexedPropertyChangeEvent - /// - /// - /// - public partial class IndexedPropertyChangeEvent : Java.Beans.PropertyChangeEvent - { - const string _bridgeClassName = "java.beans.IndexedPropertyChangeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IndexedPropertyChangeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IndexedPropertyChangeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IndexedPropertyDescriptor - /// - /// - /// - public partial class IndexedPropertyDescriptor : Java.Beans.PropertyDescriptor - { - const string _bridgeClassName = "java.beans.IndexedPropertyDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IndexedPropertyDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IndexedPropertyDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IntrospectionException - /// - /// - /// - public partial class IntrospectionException : Java.Lang.Exception - { - const string _bridgeClassName = "java.beans.IntrospectionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Introspector - /// - /// - /// - public partial class Introspector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.Introspector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Introspector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Introspector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JavaBean - /// - /// - /// - public partial class JavaBean : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.beans.JavaBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JavaBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JavaBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MethodDescriptor - /// - /// - /// - public partial class MethodDescriptor : Java.Beans.FeatureDescriptor - { - const string _bridgeClassName = "java.beans.MethodDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MethodDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MethodDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParameterDescriptor - /// - /// - /// - public partial class ParameterDescriptor : Java.Beans.FeatureDescriptor - { - const string _bridgeClassName = "java.beans.ParameterDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParameterDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParameterDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PersistenceDelegate - /// - /// - /// - public partial class PersistenceDelegate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.PersistenceDelegate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PersistenceDelegate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PersistenceDelegate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PersistenceDelegate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PersistenceDelegate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeEvent - /// - /// - /// - public partial class PropertyChangeEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.beans.PropertyChangeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeListener - /// - /// - /// - public partial class PropertyChangeListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.beans.PropertyChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PropertyChangeListenerDirect : PropertyChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.beans.PropertyChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PropertyChangeListenerProxy - /// - /// - /// - public partial class PropertyChangeListenerProxy : Java.Util.EventListenerProxy - { - const string _bridgeClassName = "java.beans.PropertyChangeListenerProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeListenerProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeListenerProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeSupport - /// - /// - /// - public partial class PropertyChangeSupport : Java.Io.Serializable - { - const string _bridgeClassName = "java.beans.PropertyChangeSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyDescriptor - /// - /// - /// - public partial class PropertyDescriptor : Java.Beans.FeatureDescriptor - { - const string _bridgeClassName = "java.beans.PropertyDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyEditor - /// - /// - /// - public partial class PropertyEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.PropertyEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PropertyEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PropertyEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PropertyEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PropertyEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyEditorManager - /// - /// - /// - public partial class PropertyEditorManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.PropertyEditorManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyEditorManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyEditorManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyEditorSupport - /// - /// - /// - public partial class PropertyEditorSupport : Java.Beans.PropertyEditor - { - const string _bridgeClassName = "java.beans.PropertyEditorSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyEditorSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyEditorSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyVetoException - /// - /// - /// - public partial class PropertyVetoException : Java.Lang.Exception - { - const string _bridgeClassName = "java.beans.PropertyVetoException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SimpleBeanInfo - /// - /// - /// - public partial class SimpleBeanInfo : Java.Beans.BeanInfo - { - const string _bridgeClassName = "java.beans.SimpleBeanInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleBeanInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleBeanInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Statement - /// - /// - /// - public partial class Statement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.Statement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Statement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Statement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Transient - /// - /// - /// - public partial class Transient : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.beans.Transient"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Transient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transient() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Transient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transient(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VetoableChangeListener - /// - /// - /// - public partial class VetoableChangeListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VetoableChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.beans.VetoableChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region VetoableChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class VetoableChangeListenerDirect : VetoableChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.beans.VetoableChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region VetoableChangeListenerProxy - /// - /// - /// - public partial class VetoableChangeListenerProxy : Java.Util.EventListenerProxy - { - const string _bridgeClassName = "java.beans.VetoableChangeListenerProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VetoableChangeListenerProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public VetoableChangeListenerProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VetoableChangeSupport - /// - /// - /// - public partial class VetoableChangeSupport : Java.Io.Serializable - { - const string _bridgeClassName = "java.beans.VetoableChangeSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VetoableChangeSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public VetoableChangeSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Visibility - /// - /// - /// - public partial class Visibility : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.Visibility"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Visibility class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Visibility() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Visibility class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Visibility(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLDecoder - /// - /// - /// - public partial class XMLDecoder : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "java.beans.XMLDecoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XMLDecoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XMLDecoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEncoder - /// - /// - /// - public partial class XMLEncoder : Java.Beans.Encoder - { - const string _bridgeClassName = "java.beans.XMLEncoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XMLEncoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XMLEncoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Beans/BeanDescriptor.cs b/src/net/JNet/Generated/Java/Beans/BeanDescriptor.cs index 1acd3b2eb1..32b46a38f4 100644 --- a/src/net/JNet/Generated/Java/Beans/BeanDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/BeanDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region BeanDescriptor + #region BeanDescriptor declaration + /// + /// + /// + public partial class BeanDescriptor : Java.Beans.FeatureDescriptor + { + const string _bridgeClassName = "java.beans.BeanDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanDescriptor implementation public partial class BeanDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/BeanInfo.cs b/src/net/JNet/Generated/Java/Beans/BeanInfo.cs index 6f3bc07340..019115d492 100644 --- a/src/net/JNet/Generated/Java/Beans/BeanInfo.cs +++ b/src/net/JNet/Generated/Java/Beans/BeanInfo.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region BeanInfo declaration + /// + /// + /// + public partial class BeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.BeanInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -77,7 +124,7 @@ public partial interface IBeanInfo } #endregion - #region BeanInfo + #region BeanInfo implementation public partial class BeanInfo : Java.Beans.IBeanInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/BeanProperty.cs b/src/net/JNet/Generated/Java/Beans/BeanProperty.cs index 434fbc7be4..7e58c92e31 100644 --- a/src/net/JNet/Generated/Java/Beans/BeanProperty.cs +++ b/src/net/JNet/Generated/Java/Beans/BeanProperty.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region BeanProperty declaration + /// + /// + /// + public partial class BeanProperty : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.beans.BeanProperty"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanProperty() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanProperty(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanProperty /// /// .NET interface for TO BE DEFINED FROM USER @@ -83,7 +130,7 @@ public partial interface IBeanProperty : Java.Lang.Annotation.IAnnotation } #endregion - #region BeanProperty + #region BeanProperty implementation public partial class BeanProperty : Java.Beans.IBeanProperty { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/AllPackageClasses.cs deleted file mode 100644 index ddc79805ac..0000000000 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/AllPackageClasses.cs +++ /dev/null @@ -1,924 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Beans.Beancontext -{ - #region BeanContext - /// - /// - /// - public partial class BeanContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextChild - /// - /// - /// - public partial class BeanContextChild : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextChild"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextChild class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextChild() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextChild class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextChild(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextChildComponentProxy - /// - /// - /// - public partial class BeanContextChildComponentProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextChildComponentProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextChildComponentProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextChildComponentProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextChildComponentProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextChildComponentProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextChildSupport - /// - /// - /// - public partial class BeanContextChildSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextChildSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextChildSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanContextChildSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextContainerProxy - /// - /// - /// - public partial class BeanContextContainerProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextContainerProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextContainerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextContainerProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextContainerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextContainerProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextEvent - /// - /// - /// - public partial class BeanContextEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextMembershipEvent - /// - /// - /// - public partial class BeanContextMembershipEvent : Java.Beans.Beancontext.BeanContextEvent - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextMembershipEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextMembershipEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanContextMembershipEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextMembershipListener - /// - /// - /// - public partial class BeanContextMembershipListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextMembershipListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.beans.beancontext.BeanContextMembershipListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BeanContextMembershipListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BeanContextMembershipListenerDirect : BeanContextMembershipListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.beans.beancontext.BeanContextMembershipListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BeanContextProxy - /// - /// - /// - public partial class BeanContextProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextServiceAvailableEvent - /// - /// - /// - public partial class BeanContextServiceAvailableEvent : Java.Beans.Beancontext.BeanContextEvent - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceAvailableEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextServiceAvailableEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanContextServiceAvailableEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextServiceProvider - /// - /// - /// - public partial class BeanContextServiceProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextServiceProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextServiceProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextServiceProviderBeanInfo - /// - /// - /// - public partial class BeanContextServiceProviderBeanInfo : Java.Beans.BeanInfo - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceProviderBeanInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextServiceProviderBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextServiceProviderBeanInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextServiceProviderBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextServiceProviderBeanInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextServiceRevokedEvent - /// - /// - /// - public partial class BeanContextServiceRevokedEvent : Java.Beans.Beancontext.BeanContextEvent - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceRevokedEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextServiceRevokedEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanContextServiceRevokedEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextServiceRevokedListener - /// - /// - /// - public partial class BeanContextServiceRevokedListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextServiceRevokedListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.beans.beancontext.BeanContextServiceRevokedListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BeanContextServiceRevokedListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BeanContextServiceRevokedListenerDirect : BeanContextServiceRevokedListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceRevokedListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BeanContextServices - /// - /// - /// - public partial class BeanContextServices : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextServices"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BeanContextServices class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextServices() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BeanContextServices class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BeanContextServices(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextServicesListener - /// - /// - /// - public partial class BeanContextServicesListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextServicesListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.beans.beancontext.BeanContextServicesListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BeanContextServicesListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BeanContextServicesListenerDirect : BeanContextServicesListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.beans.beancontext.BeanContextServicesListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BeanContextServicesSupport - /// - /// - /// - public partial class BeanContextServicesSupport : Java.Beans.Beancontext.BeanContextSupport - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextServicesSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextServicesSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanContextServicesSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BeanContextSupport - /// - /// - /// - public partial class BeanContextSupport : Java.Beans.Beancontext.BeanContextChildSupport - { - const string _bridgeClassName = "java.beans.beancontext.BeanContextSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeanContextSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeanContextSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContext.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContext.cs index 53d13918be..f00b6ff3b8 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContext.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContext.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContext declaration + /// + /// + /// + public partial class BeanContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -77,7 +124,7 @@ public partial interface IBeanContext } #endregion - #region BeanContext + #region BeanContext implementation public partial class BeanContext : Java.Beans.Beancontext.IBeanContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChild.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChild.cs index 1088fa1759..788b4ee81d 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChild.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChild.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextChild declaration + /// + /// + /// + public partial class BeanContextChild : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextChild"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextChild class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextChild() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextChild class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextChild(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextChild /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IBeanContextChild } #endregion - #region BeanContextChild + #region BeanContextChild implementation public partial class BeanContextChild : Java.Beans.Beancontext.IBeanContextChild { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildComponentProxy.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildComponentProxy.cs index 03fdd37402..af3d48ce2a 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildComponentProxy.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildComponentProxy.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextChildComponentProxy declaration + /// + /// + /// + public partial class BeanContextChildComponentProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextChildComponentProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextChildComponentProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextChildComponentProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextChildComponentProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextChildComponentProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextChildComponentProxy /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IBeanContextChildComponentProxy } #endregion - #region BeanContextChildComponentProxy + #region BeanContextChildComponentProxy implementation public partial class BeanContextChildComponentProxy : Java.Beans.Beancontext.IBeanContextChildComponentProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildSupport.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildSupport.cs index 3bea6e6b7e..1b017423d0 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildSupport.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextChildSupport.cs @@ -25,7 +25,52 @@ namespace Java.Beans.Beancontext { - #region BeanContextChildSupport + #region BeanContextChildSupport declaration + /// + /// + /// + public partial class BeanContextChildSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextChildSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextChildSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanContextChildSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextChildSupport implementation public partial class BeanContextChildSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextContainerProxy.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextContainerProxy.cs index 51fc63efde..6b83cb2eea 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextContainerProxy.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextContainerProxy.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextContainerProxy declaration + /// + /// + /// + public partial class BeanContextContainerProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextContainerProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextContainerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextContainerProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextContainerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextContainerProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextContainerProxy /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IBeanContextContainerProxy } #endregion - #region BeanContextContainerProxy + #region BeanContextContainerProxy implementation public partial class BeanContextContainerProxy : Java.Beans.Beancontext.IBeanContextContainerProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextEvent.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextEvent.cs index 238f6501bf..a6ed686a17 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextEvent.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextEvent.cs @@ -25,7 +25,54 @@ namespace Java.Beans.Beancontext { - #region BeanContextEvent + #region BeanContextEvent declaration + /// + /// + /// + public partial class BeanContextEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextEvent implementation public partial class BeanContextEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipEvent.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipEvent.cs index 5d64d2b4dc..3099b367af 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipEvent.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipEvent.cs @@ -25,7 +25,52 @@ namespace Java.Beans.Beancontext { - #region BeanContextMembershipEvent + #region BeanContextMembershipEvent declaration + /// + /// + /// + public partial class BeanContextMembershipEvent : Java.Beans.Beancontext.BeanContextEvent + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextMembershipEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextMembershipEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanContextMembershipEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextMembershipEvent implementation public partial class BeanContextMembershipEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipListener.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipListener.cs index affcb52003..aee7df79f4 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipListener.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextMembershipListener.cs @@ -25,6 +25,73 @@ namespace Java.Beans.Beancontext { + #region BeanContextMembershipListener declaration + /// + /// + /// + public partial class BeanContextMembershipListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextMembershipListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.beans.beancontext.BeanContextMembershipListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BeanContextMembershipListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BeanContextMembershipListenerDirect : BeanContextMembershipListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.beans.beancontext.BeanContextMembershipListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IBeanContextMembershipListener /// /// .NET interface for org.mases.jnet.generated.java.beans.beancontext.BeanContextMembershipListener implementing @@ -53,7 +120,7 @@ public partial interface IBeanContextMembershipListener } #endregion - #region BeanContextMembershipListener + #region BeanContextMembershipListener implementation public partial class BeanContextMembershipListener : Java.Beans.Beancontext.IBeanContextMembershipListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ChildrenRemoved(Java.Beans.Beancontext.BeanContextMembership } #endregion - #region BeanContextMembershipListenerDirect + #region BeanContextMembershipListenerDirect implementation public partial class BeanContextMembershipListenerDirect : Java.Beans.Beancontext.IBeanContextMembershipListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextProxy.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextProxy.cs index 50ceee1ca7..9fa32026b6 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextProxy.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextProxy.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextProxy declaration + /// + /// + /// + public partial class BeanContextProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextProxy /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IBeanContextProxy } #endregion - #region BeanContextProxy + #region BeanContextProxy implementation public partial class BeanContextProxy : Java.Beans.Beancontext.IBeanContextProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceAvailableEvent.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceAvailableEvent.cs index 522465adec..ec2ba3c3bb 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceAvailableEvent.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceAvailableEvent.cs @@ -25,7 +25,52 @@ namespace Java.Beans.Beancontext { - #region BeanContextServiceAvailableEvent + #region BeanContextServiceAvailableEvent declaration + /// + /// + /// + public partial class BeanContextServiceAvailableEvent : Java.Beans.Beancontext.BeanContextEvent + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceAvailableEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextServiceAvailableEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanContextServiceAvailableEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextServiceAvailableEvent implementation public partial class BeanContextServiceAvailableEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProvider.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProvider.cs index 0493ab6250..ab6d4c8288 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProvider.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProvider.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextServiceProvider declaration + /// + /// + /// + public partial class BeanContextServiceProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextServiceProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextServiceProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextServiceProvider /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IBeanContextServiceProvider } #endregion - #region BeanContextServiceProvider + #region BeanContextServiceProvider implementation public partial class BeanContextServiceProvider : Java.Beans.Beancontext.IBeanContextServiceProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProviderBeanInfo.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProviderBeanInfo.cs index 26c4d60147..297878512c 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProviderBeanInfo.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceProviderBeanInfo.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextServiceProviderBeanInfo declaration + /// + /// + /// + public partial class BeanContextServiceProviderBeanInfo : Java.Beans.BeanInfo + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceProviderBeanInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextServiceProviderBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextServiceProviderBeanInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextServiceProviderBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextServiceProviderBeanInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextServiceProviderBeanInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IBeanContextServiceProviderBeanInfo : Java.Beans.IBeanI } #endregion - #region BeanContextServiceProviderBeanInfo + #region BeanContextServiceProviderBeanInfo implementation public partial class BeanContextServiceProviderBeanInfo : Java.Beans.Beancontext.IBeanContextServiceProviderBeanInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedEvent.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedEvent.cs index 98ae635545..e398ea13ca 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedEvent.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedEvent.cs @@ -25,7 +25,52 @@ namespace Java.Beans.Beancontext { - #region BeanContextServiceRevokedEvent + #region BeanContextServiceRevokedEvent declaration + /// + /// + /// + public partial class BeanContextServiceRevokedEvent : Java.Beans.Beancontext.BeanContextEvent + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceRevokedEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextServiceRevokedEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanContextServiceRevokedEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextServiceRevokedEvent implementation public partial class BeanContextServiceRevokedEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedListener.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedListener.cs index e303b67df3..ec12a86473 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedListener.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServiceRevokedListener.cs @@ -25,6 +25,73 @@ namespace Java.Beans.Beancontext { + #region BeanContextServiceRevokedListener declaration + /// + /// + /// + public partial class BeanContextServiceRevokedListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextServiceRevokedListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.beans.beancontext.BeanContextServiceRevokedListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BeanContextServiceRevokedListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BeanContextServiceRevokedListenerDirect : BeanContextServiceRevokedListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.beans.beancontext.BeanContextServiceRevokedListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IBeanContextServiceRevokedListener /// /// .NET interface for org.mases.jnet.generated.java.beans.beancontext.BeanContextServiceRevokedListener implementing @@ -48,7 +115,7 @@ public partial interface IBeanContextServiceRevokedListener } #endregion - #region BeanContextServiceRevokedListener + #region BeanContextServiceRevokedListener implementation public partial class BeanContextServiceRevokedListener : Java.Beans.Beancontext.IBeanContextServiceRevokedListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ServiceRevoked(Java.Beans.Beancontext.BeanContextServiceRevo } #endregion - #region BeanContextServiceRevokedListenerDirect + #region BeanContextServiceRevokedListenerDirect implementation public partial class BeanContextServiceRevokedListenerDirect : Java.Beans.Beancontext.IBeanContextServiceRevokedListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServices.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServices.cs index e7b8fd8930..0497a42ae5 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServices.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServices.cs @@ -25,6 +25,53 @@ namespace Java.Beans.Beancontext { + #region BeanContextServices declaration + /// + /// + /// + public partial class BeanContextServices : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextServices"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BeanContextServices class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextServices() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BeanContextServices class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BeanContextServices(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBeanContextServices /// /// .NET interface for TO BE DEFINED FROM USER @@ -101,7 +148,7 @@ public partial interface IBeanContextServices } #endregion - #region BeanContextServices + #region BeanContextServices implementation public partial class BeanContextServices : Java.Beans.Beancontext.IBeanContextServices { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesListener.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesListener.cs index ec5a8890e2..a5525f3338 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesListener.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesListener.cs @@ -25,6 +25,73 @@ namespace Java.Beans.Beancontext { + #region BeanContextServicesListener declaration + /// + /// + /// + public partial class BeanContextServicesListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextServicesListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.beans.beancontext.BeanContextServicesListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BeanContextServicesListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BeanContextServicesListenerDirect : BeanContextServicesListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.beans.beancontext.BeanContextServicesListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IBeanContextServicesListener /// /// .NET interface for org.mases.jnet.generated.java.beans.beancontext.BeanContextServicesListener implementing @@ -53,7 +120,7 @@ public partial interface IBeanContextServicesListener } #endregion - #region BeanContextServicesListener + #region BeanContextServicesListener implementation public partial class BeanContextServicesListener : Java.Beans.Beancontext.IBeanContextServicesListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ServiceAvailable(Java.Beans.Beancontext.BeanContextServiceAv } #endregion - #region BeanContextServicesListenerDirect + #region BeanContextServicesListenerDirect implementation public partial class BeanContextServicesListenerDirect : Java.Beans.Beancontext.IBeanContextServicesListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesSupport.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesSupport.cs index be48a45153..0f66c1440c 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesSupport.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextServicesSupport.cs @@ -25,7 +25,52 @@ namespace Java.Beans.Beancontext { - #region BeanContextServicesSupport + #region BeanContextServicesSupport declaration + /// + /// + /// + public partial class BeanContextServicesSupport : Java.Beans.Beancontext.BeanContextSupport + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextServicesSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextServicesSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanContextServicesSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextServicesSupport implementation public partial class BeanContextServicesSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextSupport.cs b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextSupport.cs index 341d4db7d5..6c0feb7b98 100644 --- a/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextSupport.cs +++ b/src/net/JNet/Generated/Java/Beans/Beancontext/BeanContextSupport.cs @@ -25,7 +25,52 @@ namespace Java.Beans.Beancontext { - #region BeanContextSupport + #region BeanContextSupport declaration + /// + /// + /// + public partial class BeanContextSupport : Java.Beans.Beancontext.BeanContextChildSupport + { + const string _bridgeClassName = "java.beans.beancontext.BeanContextSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeanContextSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeanContextSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BeanContextSupport implementation public partial class BeanContextSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Beans.cs b/src/net/JNet/Generated/Java/Beans/Beans.cs index 7164f1ac79..615b65dc61 100644 --- a/src/net/JNet/Generated/Java/Beans/Beans.cs +++ b/src/net/JNet/Generated/Java/Beans/Beans.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region Beans + #region Beans declaration + /// + /// + /// + public partial class Beans : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.Beans"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Beans() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Beans(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Beans implementation public partial class Beans { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/ConstructorProperties.cs b/src/net/JNet/Generated/Java/Beans/ConstructorProperties.cs index dcfb38eeee..253108895a 100644 --- a/src/net/JNet/Generated/Java/Beans/ConstructorProperties.cs +++ b/src/net/JNet/Generated/Java/Beans/ConstructorProperties.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region ConstructorProperties declaration + /// + /// + /// + public partial class ConstructorProperties : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.beans.ConstructorProperties"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConstructorProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConstructorProperties() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConstructorProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConstructorProperties(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IConstructorProperties /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IConstructorProperties : Java.Lang.Annotation.IAnnotati } #endregion - #region ConstructorProperties + #region ConstructorProperties implementation public partial class ConstructorProperties : Java.Beans.IConstructorProperties { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Customizer.cs b/src/net/JNet/Generated/Java/Beans/Customizer.cs index 190c5c67f6..6bba4125cb 100644 --- a/src/net/JNet/Generated/Java/Beans/Customizer.cs +++ b/src/net/JNet/Generated/Java/Beans/Customizer.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region Customizer declaration + /// + /// + /// + public partial class Customizer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.Customizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Customizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Customizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Customizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Customizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICustomizer /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface ICustomizer } #endregion - #region Customizer + #region Customizer implementation public partial class Customizer : Java.Beans.ICustomizer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/DefaultPersistenceDelegate.cs b/src/net/JNet/Generated/Java/Beans/DefaultPersistenceDelegate.cs index ed96c7edf7..22d73350d3 100644 --- a/src/net/JNet/Generated/Java/Beans/DefaultPersistenceDelegate.cs +++ b/src/net/JNet/Generated/Java/Beans/DefaultPersistenceDelegate.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region DefaultPersistenceDelegate + #region DefaultPersistenceDelegate declaration + /// + /// + /// + public partial class DefaultPersistenceDelegate : Java.Beans.PersistenceDelegate + { + const string _bridgeClassName = "java.beans.DefaultPersistenceDelegate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultPersistenceDelegate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultPersistenceDelegate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultPersistenceDelegate implementation public partial class DefaultPersistenceDelegate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/DesignMode.cs b/src/net/JNet/Generated/Java/Beans/DesignMode.cs index 737e7c1ebd..a04d921750 100644 --- a/src/net/JNet/Generated/Java/Beans/DesignMode.cs +++ b/src/net/JNet/Generated/Java/Beans/DesignMode.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region DesignMode declaration + /// + /// + /// + public partial class DesignMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.DesignMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DesignMode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesignMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DesignMode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesignMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDesignMode /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IDesignMode } #endregion - #region DesignMode + #region DesignMode implementation public partial class DesignMode : Java.Beans.IDesignMode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Encoder.cs b/src/net/JNet/Generated/Java/Beans/Encoder.cs index 8fbef58f5e..3eb963dcf6 100644 --- a/src/net/JNet/Generated/Java/Beans/Encoder.cs +++ b/src/net/JNet/Generated/Java/Beans/Encoder.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region Encoder + #region Encoder declaration + /// + /// + /// + public partial class Encoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.Encoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Encoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Encoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Encoder implementation public partial class Encoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/EventHandler.cs b/src/net/JNet/Generated/Java/Beans/EventHandler.cs index 55ad00b461..094e26e383 100644 --- a/src/net/JNet/Generated/Java/Beans/EventHandler.cs +++ b/src/net/JNet/Generated/Java/Beans/EventHandler.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region EventHandler + #region EventHandler declaration + /// + /// + /// + public partial class EventHandler : Java.Lang.Reflect.InvocationHandler + { + const string _bridgeClassName = "java.beans.EventHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventHandler implementation public partial class EventHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/EventSetDescriptor.cs b/src/net/JNet/Generated/Java/Beans/EventSetDescriptor.cs index 1767353134..024f3d3e1a 100644 --- a/src/net/JNet/Generated/Java/Beans/EventSetDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/EventSetDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region EventSetDescriptor + #region EventSetDescriptor declaration + /// + /// + /// + public partial class EventSetDescriptor : Java.Beans.FeatureDescriptor + { + const string _bridgeClassName = "java.beans.EventSetDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventSetDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventSetDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventSetDescriptor implementation public partial class EventSetDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/ExceptionListener.cs b/src/net/JNet/Generated/Java/Beans/ExceptionListener.cs index 0d7ee88128..2be13fb203 100644 --- a/src/net/JNet/Generated/Java/Beans/ExceptionListener.cs +++ b/src/net/JNet/Generated/Java/Beans/ExceptionListener.cs @@ -25,6 +25,73 @@ namespace Java.Beans { + #region ExceptionListener declaration + /// + /// + /// + public partial class ExceptionListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExceptionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.beans.ExceptionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ExceptionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ExceptionListenerDirect : ExceptionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.beans.ExceptionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IExceptionListener /// /// .NET interface for org.mases.jnet.generated.java.beans.ExceptionListener implementing @@ -48,7 +115,7 @@ public partial interface IExceptionListener } #endregion - #region ExceptionListener + #region ExceptionListener implementation public partial class ExceptionListener : Java.Beans.IExceptionListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ExceptionThrown(MASES.JCOBridge.C2JBridge.JVMBridgeException } #endregion - #region ExceptionListenerDirect + #region ExceptionListenerDirect implementation public partial class ExceptionListenerDirect : Java.Beans.IExceptionListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Expression.cs b/src/net/JNet/Generated/Java/Beans/Expression.cs index c30bde980f..757d22fef9 100644 --- a/src/net/JNet/Generated/Java/Beans/Expression.cs +++ b/src/net/JNet/Generated/Java/Beans/Expression.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region Expression + #region Expression declaration + /// + /// + /// + public partial class Expression : Java.Beans.Statement + { + const string _bridgeClassName = "java.beans.Expression"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Expression() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Expression(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Expression implementation public partial class Expression { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/FeatureDescriptor.cs b/src/net/JNet/Generated/Java/Beans/FeatureDescriptor.cs index 9b6a136d8b..1da9bceead 100644 --- a/src/net/JNet/Generated/Java/Beans/FeatureDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/FeatureDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region FeatureDescriptor + #region FeatureDescriptor declaration + /// + /// + /// + public partial class FeatureDescriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.FeatureDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FeatureDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FeatureDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FeatureDescriptor implementation public partial class FeatureDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/IndexedPropertyChangeEvent.cs b/src/net/JNet/Generated/Java/Beans/IndexedPropertyChangeEvent.cs index b39b720c23..c68ca0f348 100644 --- a/src/net/JNet/Generated/Java/Beans/IndexedPropertyChangeEvent.cs +++ b/src/net/JNet/Generated/Java/Beans/IndexedPropertyChangeEvent.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region IndexedPropertyChangeEvent + #region IndexedPropertyChangeEvent declaration + /// + /// + /// + public partial class IndexedPropertyChangeEvent : Java.Beans.PropertyChangeEvent + { + const string _bridgeClassName = "java.beans.IndexedPropertyChangeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IndexedPropertyChangeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IndexedPropertyChangeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IndexedPropertyChangeEvent implementation public partial class IndexedPropertyChangeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/IndexedPropertyDescriptor.cs b/src/net/JNet/Generated/Java/Beans/IndexedPropertyDescriptor.cs index 377a33618e..6c3c0ddcae 100644 --- a/src/net/JNet/Generated/Java/Beans/IndexedPropertyDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/IndexedPropertyDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region IndexedPropertyDescriptor + #region IndexedPropertyDescriptor declaration + /// + /// + /// + public partial class IndexedPropertyDescriptor : Java.Beans.PropertyDescriptor + { + const string _bridgeClassName = "java.beans.IndexedPropertyDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IndexedPropertyDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IndexedPropertyDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IndexedPropertyDescriptor implementation public partial class IndexedPropertyDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/IntrospectionException.cs b/src/net/JNet/Generated/Java/Beans/IntrospectionException.cs index 81ce8364d9..df6a21828d 100644 --- a/src/net/JNet/Generated/Java/Beans/IntrospectionException.cs +++ b/src/net/JNet/Generated/Java/Beans/IntrospectionException.cs @@ -25,7 +25,24 @@ namespace Java.Beans { - #region IntrospectionException + #region IntrospectionException declaration + /// + /// + /// + public partial class IntrospectionException : Java.Lang.Exception + { + const string _bridgeClassName = "java.beans.IntrospectionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IntrospectionException implementation public partial class IntrospectionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Introspector.cs b/src/net/JNet/Generated/Java/Beans/Introspector.cs index 09a49f8b7d..8c9753baaf 100644 --- a/src/net/JNet/Generated/Java/Beans/Introspector.cs +++ b/src/net/JNet/Generated/Java/Beans/Introspector.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region Introspector + #region Introspector declaration + /// + /// + /// + public partial class Introspector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.Introspector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Introspector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Introspector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Introspector implementation public partial class Introspector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/JavaBean.cs b/src/net/JNet/Generated/Java/Beans/JavaBean.cs index a047be39c9..84b8e43c37 100644 --- a/src/net/JNet/Generated/Java/Beans/JavaBean.cs +++ b/src/net/JNet/Generated/Java/Beans/JavaBean.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region JavaBean declaration + /// + /// + /// + public partial class JavaBean : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.beans.JavaBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JavaBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JavaBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJavaBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IJavaBean : Java.Lang.Annotation.IAnnotation } #endregion - #region JavaBean + #region JavaBean implementation public partial class JavaBean : Java.Beans.IJavaBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/MethodDescriptor.cs b/src/net/JNet/Generated/Java/Beans/MethodDescriptor.cs index 9c31904fae..9732f6cdcb 100644 --- a/src/net/JNet/Generated/Java/Beans/MethodDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/MethodDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region MethodDescriptor + #region MethodDescriptor declaration + /// + /// + /// + public partial class MethodDescriptor : Java.Beans.FeatureDescriptor + { + const string _bridgeClassName = "java.beans.MethodDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MethodDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MethodDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MethodDescriptor implementation public partial class MethodDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/ParameterDescriptor.cs b/src/net/JNet/Generated/Java/Beans/ParameterDescriptor.cs index 060c4318b2..ffffeb77a6 100644 --- a/src/net/JNet/Generated/Java/Beans/ParameterDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/ParameterDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region ParameterDescriptor + #region ParameterDescriptor declaration + /// + /// + /// + public partial class ParameterDescriptor : Java.Beans.FeatureDescriptor + { + const string _bridgeClassName = "java.beans.ParameterDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParameterDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParameterDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParameterDescriptor implementation public partial class ParameterDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PersistenceDelegate.cs b/src/net/JNet/Generated/Java/Beans/PersistenceDelegate.cs index 7b14084cb9..849b88f3b2 100644 --- a/src/net/JNet/Generated/Java/Beans/PersistenceDelegate.cs +++ b/src/net/JNet/Generated/Java/Beans/PersistenceDelegate.cs @@ -25,7 +25,54 @@ namespace Java.Beans { - #region PersistenceDelegate + #region PersistenceDelegate declaration + /// + /// + /// + public partial class PersistenceDelegate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.PersistenceDelegate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PersistenceDelegate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PersistenceDelegate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PersistenceDelegate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PersistenceDelegate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PersistenceDelegate implementation public partial class PersistenceDelegate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyChangeEvent.cs b/src/net/JNet/Generated/Java/Beans/PropertyChangeEvent.cs index 57134b3c32..2c47f59801 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyChangeEvent.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyChangeEvent.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region PropertyChangeEvent + #region PropertyChangeEvent declaration + /// + /// + /// + public partial class PropertyChangeEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.beans.PropertyChangeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeEvent implementation public partial class PropertyChangeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyChangeListener.cs b/src/net/JNet/Generated/Java/Beans/PropertyChangeListener.cs index 9abd776b66..d0f1ee879b 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyChangeListener.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyChangeListener.cs @@ -25,6 +25,73 @@ namespace Java.Beans { + #region PropertyChangeListener declaration + /// + /// + /// + public partial class PropertyChangeListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.beans.PropertyChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PropertyChangeListenerDirect : PropertyChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.beans.PropertyChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IPropertyChangeListener /// /// .NET interface for org.mases.jnet.generated.java.beans.PropertyChangeListener implementing @@ -48,7 +115,7 @@ public partial interface IPropertyChangeListener } #endregion - #region PropertyChangeListener + #region PropertyChangeListener implementation public partial class PropertyChangeListener : Java.Beans.IPropertyChangeListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void PropertyChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region PropertyChangeListenerDirect + #region PropertyChangeListenerDirect implementation public partial class PropertyChangeListenerDirect : Java.Beans.IPropertyChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyChangeListenerProxy.cs b/src/net/JNet/Generated/Java/Beans/PropertyChangeListenerProxy.cs index b43eedbe6b..d349fbcabf 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyChangeListenerProxy.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyChangeListenerProxy.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region PropertyChangeListenerProxy + #region PropertyChangeListenerProxy declaration + /// + /// + /// + public partial class PropertyChangeListenerProxy : Java.Util.EventListenerProxy + { + const string _bridgeClassName = "java.beans.PropertyChangeListenerProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeListenerProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeListenerProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeListenerProxy implementation public partial class PropertyChangeListenerProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyChangeSupport.cs b/src/net/JNet/Generated/Java/Beans/PropertyChangeSupport.cs index dbf08a0746..51c3899309 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyChangeSupport.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyChangeSupport.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region PropertyChangeSupport + #region PropertyChangeSupport declaration + /// + /// + /// + public partial class PropertyChangeSupport : Java.Io.Serializable + { + const string _bridgeClassName = "java.beans.PropertyChangeSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeSupport implementation public partial class PropertyChangeSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyDescriptor.cs b/src/net/JNet/Generated/Java/Beans/PropertyDescriptor.cs index cf1dd0316f..5f98f94a57 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyDescriptor.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region PropertyDescriptor + #region PropertyDescriptor declaration + /// + /// + /// + public partial class PropertyDescriptor : Java.Beans.FeatureDescriptor + { + const string _bridgeClassName = "java.beans.PropertyDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyDescriptor implementation public partial class PropertyDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyEditor.cs b/src/net/JNet/Generated/Java/Beans/PropertyEditor.cs index 2a32324c4b..26060ba474 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyEditor.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyEditor.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region PropertyEditor declaration + /// + /// + /// + public partial class PropertyEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.PropertyEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PropertyEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PropertyEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PropertyEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PropertyEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPropertyEditor /// /// .NET interface for TO BE DEFINED FROM USER @@ -89,7 +136,7 @@ public partial interface IPropertyEditor } #endregion - #region PropertyEditor + #region PropertyEditor implementation public partial class PropertyEditor : Java.Beans.IPropertyEditor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyEditorManager.cs b/src/net/JNet/Generated/Java/Beans/PropertyEditorManager.cs index f530b08154..057850cbb6 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyEditorManager.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyEditorManager.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region PropertyEditorManager + #region PropertyEditorManager declaration + /// + /// + /// + public partial class PropertyEditorManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.PropertyEditorManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyEditorManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyEditorManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyEditorManager implementation public partial class PropertyEditorManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyEditorSupport.cs b/src/net/JNet/Generated/Java/Beans/PropertyEditorSupport.cs index b9fcf32e98..e54936bf7d 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyEditorSupport.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyEditorSupport.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region PropertyEditorSupport + #region PropertyEditorSupport declaration + /// + /// + /// + public partial class PropertyEditorSupport : Java.Beans.PropertyEditor + { + const string _bridgeClassName = "java.beans.PropertyEditorSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyEditorSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyEditorSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyEditorSupport implementation public partial class PropertyEditorSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/PropertyVetoException.cs b/src/net/JNet/Generated/Java/Beans/PropertyVetoException.cs index d252eacd78..eca18db9c5 100644 --- a/src/net/JNet/Generated/Java/Beans/PropertyVetoException.cs +++ b/src/net/JNet/Generated/Java/Beans/PropertyVetoException.cs @@ -25,7 +25,24 @@ namespace Java.Beans { - #region PropertyVetoException + #region PropertyVetoException declaration + /// + /// + /// + public partial class PropertyVetoException : Java.Lang.Exception + { + const string _bridgeClassName = "java.beans.PropertyVetoException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PropertyVetoException implementation public partial class PropertyVetoException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/SimpleBeanInfo.cs b/src/net/JNet/Generated/Java/Beans/SimpleBeanInfo.cs index 65e4604846..867b650d2f 100644 --- a/src/net/JNet/Generated/Java/Beans/SimpleBeanInfo.cs +++ b/src/net/JNet/Generated/Java/Beans/SimpleBeanInfo.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region SimpleBeanInfo + #region SimpleBeanInfo declaration + /// + /// + /// + public partial class SimpleBeanInfo : Java.Beans.BeanInfo + { + const string _bridgeClassName = "java.beans.SimpleBeanInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleBeanInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleBeanInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleBeanInfo implementation public partial class SimpleBeanInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Statement.cs b/src/net/JNet/Generated/Java/Beans/Statement.cs index 258a94597d..f17db5ce27 100644 --- a/src/net/JNet/Generated/Java/Beans/Statement.cs +++ b/src/net/JNet/Generated/Java/Beans/Statement.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region Statement + #region Statement declaration + /// + /// + /// + public partial class Statement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.Statement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Statement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Statement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Statement implementation public partial class Statement { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Transient.cs b/src/net/JNet/Generated/Java/Beans/Transient.cs index 5e9585f556..814d5529d5 100644 --- a/src/net/JNet/Generated/Java/Beans/Transient.cs +++ b/src/net/JNet/Generated/Java/Beans/Transient.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region Transient declaration + /// + /// + /// + public partial class Transient : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.beans.Transient"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Transient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transient() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Transient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transient(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransient /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ITransient : Java.Lang.Annotation.IAnnotation } #endregion - #region Transient + #region Transient implementation public partial class Transient : Java.Beans.ITransient { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/VetoableChangeListener.cs b/src/net/JNet/Generated/Java/Beans/VetoableChangeListener.cs index 4d9745988c..4c2f6fcddc 100644 --- a/src/net/JNet/Generated/Java/Beans/VetoableChangeListener.cs +++ b/src/net/JNet/Generated/Java/Beans/VetoableChangeListener.cs @@ -25,6 +25,73 @@ namespace Java.Beans { + #region VetoableChangeListener declaration + /// + /// + /// + public partial class VetoableChangeListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VetoableChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.beans.VetoableChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region VetoableChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class VetoableChangeListenerDirect : VetoableChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.beans.VetoableChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IVetoableChangeListener /// /// .NET interface for org.mases.jnet.generated.java.beans.VetoableChangeListener implementing @@ -49,7 +116,7 @@ public partial interface IVetoableChangeListener } #endregion - #region VetoableChangeListener + #region VetoableChangeListener implementation public partial class VetoableChangeListener : Java.Beans.IVetoableChangeListener { #region Constructors @@ -110,7 +177,7 @@ public virtual void VetoableChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region VetoableChangeListenerDirect + #region VetoableChangeListenerDirect implementation public partial class VetoableChangeListenerDirect : Java.Beans.IVetoableChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/VetoableChangeListenerProxy.cs b/src/net/JNet/Generated/Java/Beans/VetoableChangeListenerProxy.cs index 6c65aa2cc9..04db205548 100644 --- a/src/net/JNet/Generated/Java/Beans/VetoableChangeListenerProxy.cs +++ b/src/net/JNet/Generated/Java/Beans/VetoableChangeListenerProxy.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region VetoableChangeListenerProxy + #region VetoableChangeListenerProxy declaration + /// + /// + /// + public partial class VetoableChangeListenerProxy : Java.Util.EventListenerProxy + { + const string _bridgeClassName = "java.beans.VetoableChangeListenerProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VetoableChangeListenerProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public VetoableChangeListenerProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VetoableChangeListenerProxy implementation public partial class VetoableChangeListenerProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/VetoableChangeSupport.cs b/src/net/JNet/Generated/Java/Beans/VetoableChangeSupport.cs index fbc47d3051..1178e4e078 100644 --- a/src/net/JNet/Generated/Java/Beans/VetoableChangeSupport.cs +++ b/src/net/JNet/Generated/Java/Beans/VetoableChangeSupport.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region VetoableChangeSupport + #region VetoableChangeSupport declaration + /// + /// + /// + public partial class VetoableChangeSupport : Java.Io.Serializable + { + const string _bridgeClassName = "java.beans.VetoableChangeSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VetoableChangeSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public VetoableChangeSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VetoableChangeSupport implementation public partial class VetoableChangeSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/Visibility.cs b/src/net/JNet/Generated/Java/Beans/Visibility.cs index 1f2468af4c..8da1f6269f 100644 --- a/src/net/JNet/Generated/Java/Beans/Visibility.cs +++ b/src/net/JNet/Generated/Java/Beans/Visibility.cs @@ -25,6 +25,53 @@ namespace Java.Beans { + #region Visibility declaration + /// + /// + /// + public partial class Visibility : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.beans.Visibility"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Visibility class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Visibility() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Visibility class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Visibility(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IVisibility /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IVisibility } #endregion - #region Visibility + #region Visibility implementation public partial class Visibility : Java.Beans.IVisibility { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/XMLDecoder.cs b/src/net/JNet/Generated/Java/Beans/XMLDecoder.cs index 765adba515..c167d21d18 100644 --- a/src/net/JNet/Generated/Java/Beans/XMLDecoder.cs +++ b/src/net/JNet/Generated/Java/Beans/XMLDecoder.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region XMLDecoder + #region XMLDecoder declaration + /// + /// + /// + public partial class XMLDecoder : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "java.beans.XMLDecoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XMLDecoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XMLDecoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLDecoder implementation public partial class XMLDecoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Beans/XMLEncoder.cs b/src/net/JNet/Generated/Java/Beans/XMLEncoder.cs index 58e22795b4..97b300e4da 100644 --- a/src/net/JNet/Generated/Java/Beans/XMLEncoder.cs +++ b/src/net/JNet/Generated/Java/Beans/XMLEncoder.cs @@ -25,7 +25,52 @@ namespace Java.Beans { - #region XMLEncoder + #region XMLEncoder declaration + /// + /// + /// + public partial class XMLEncoder : Java.Beans.Encoder + { + const string _bridgeClassName = "java.beans.XMLEncoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XMLEncoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XMLEncoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLEncoder implementation public partial class XMLEncoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Io/AllPackageClasses.cs deleted file mode 100644 index 614937ca6f..0000000000 --- a/src/net/JNet/Generated/Java/Io/AllPackageClasses.cs +++ /dev/null @@ -1,3305 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Io -{ - #region BufferedInputStream - /// - /// - /// - public partial class BufferedInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.io.BufferedInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferedInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferedInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferedOutputStream - /// - /// - /// - public partial class BufferedOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.io.BufferedOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferedOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferedOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferedReader - /// - /// - /// - public partial class BufferedReader : Java.Io.Reader - { - const string _bridgeClassName = "java.io.BufferedReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferedReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferedReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferedWriter - /// - /// - /// - public partial class BufferedWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.BufferedWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BufferedWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BufferedWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ByteArrayInputStream - /// - /// - /// - public partial class ByteArrayInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "java.io.ByteArrayInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ByteArrayInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ByteArrayInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ByteArrayOutputStream - /// - /// - /// - public partial class ByteArrayOutputStream : Java.Io.OutputStream - { - const string _bridgeClassName = "java.io.ByteArrayOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ByteArrayOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ByteArrayOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharArrayReader - /// - /// - /// - public partial class CharArrayReader : Java.Io.Reader - { - const string _bridgeClassName = "java.io.CharArrayReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CharArrayReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CharArrayReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharArrayWriter - /// - /// - /// - public partial class CharArrayWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.CharArrayWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CharArrayWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CharArrayWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharConversionException - /// - /// - /// - public partial class CharConversionException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.CharConversionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Closeable - /// - /// - /// - public partial class Closeable : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "java.io.Closeable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Closeable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Closeable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Closeable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Closeable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Console - /// - /// - /// - public partial class Console : Java.Io.Flushable - { - const string _bridgeClassName = "java.io.Console"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Console() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Console(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataInput - /// - /// - /// - public partial class DataInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.DataInput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DataInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataInput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DataInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataInput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataInputStream - /// - /// - /// - public partial class DataInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.io.DataInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataOutput - /// - /// - /// - public partial class DataOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.DataOutput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DataOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataOutput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DataOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataOutput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataOutputStream - /// - /// - /// - public partial class DataOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.io.DataOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DataOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DataOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EOFException - /// - /// - /// - public partial class EOFException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.EOFException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Externalizable - /// - /// - /// - public partial class Externalizable : Java.Io.Serializable - { - const string _bridgeClassName = "java.io.Externalizable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Externalizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Externalizable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Externalizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Externalizable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region File - /// - /// - /// - public partial class File : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.File"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public File() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public File(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileDescriptor - /// - /// - /// - public partial class FileDescriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.FileDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileFilter - /// - /// - /// - public partial class FileFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.FileFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileInputStream - /// - /// - /// - public partial class FileInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "java.io.FileInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilenameFilter - /// - /// - /// - public partial class FilenameFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.FilenameFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilenameFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilenameFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilenameFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilenameFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileNotFoundException - /// - /// - /// - public partial class FileNotFoundException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.FileNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FileOutputStream - /// - /// - /// - public partial class FileOutputStream : Java.Io.OutputStream - { - const string _bridgeClassName = "java.io.FileOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilePermission - /// - /// - /// - public partial class FilePermission : Java.Security.Permission - { - const string _bridgeClassName = "java.io.FilePermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilePermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilePermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileReader - /// - /// - /// - public partial class FileReader : Java.Io.InputStreamReader - { - const string _bridgeClassName = "java.io.FileReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileWriter - /// - /// - /// - public partial class FileWriter : Java.Io.OutputStreamWriter - { - const string _bridgeClassName = "java.io.FileWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilterInputStream - /// - /// - /// - public partial class FilterInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "java.io.FilterInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilterInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilterInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilterOutputStream - /// - /// - /// - public partial class FilterOutputStream : Java.Io.OutputStream - { - const string _bridgeClassName = "java.io.FilterOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilterOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilterOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilterReader - /// - /// - /// - public partial class FilterReader : Java.Io.Reader - { - const string _bridgeClassName = "java.io.FilterReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilterReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilterReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilterWriter - /// - /// - /// - public partial class FilterWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.FilterWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilterWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilterWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Flushable - /// - /// - /// - public partial class Flushable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.Flushable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Flushable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Flushable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Flushable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Flushable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputStream - /// - /// - /// - public partial class InputStream : Java.Io.Closeable - { - const string _bridgeClassName = "java.io.InputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputStreamReader - /// - /// - /// - public partial class InputStreamReader : Java.Io.Reader - { - const string _bridgeClassName = "java.io.InputStreamReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputStreamReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputStreamReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InterruptedIOException - /// - /// - /// - public partial class InterruptedIOException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.InterruptedIOException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidClassException - /// - /// - /// - public partial class InvalidClassException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.InvalidClassException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidObjectException - /// - /// - /// - public partial class InvalidObjectException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.InvalidObjectException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IOError - /// - /// - /// - public partial class IOError : Java.Lang.Error - { - const string _bridgeClassName = "java.io.IOError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IOException - /// - /// - /// - public partial class IOException : Java.Lang.Exception - { - const string _bridgeClassName = "java.io.IOException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LineNumberReader - /// - /// - /// - public partial class LineNumberReader : Java.Io.BufferedReader - { - const string _bridgeClassName = "java.io.LineNumberReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LineNumberReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LineNumberReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotActiveException - /// - /// - /// - public partial class NotActiveException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.NotActiveException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotSerializableException - /// - /// - /// - public partial class NotSerializableException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.NotSerializableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ObjectInput - /// - /// - /// - public partial class ObjectInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectInput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectInput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectInput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectInputFilter - /// - /// - /// - public partial class ObjectInputFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectInputFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectInputFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectInputFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectInputFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectInputFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Config - /// - /// - /// - public partial class Config : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectInputFilter$Config"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Config() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Config(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FilterInfo - /// - /// - /// - public partial class FilterInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectInputFilter$FilterInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Status - /// - /// - /// - public partial class Status : Java.Lang.Enum - { - const string _bridgeClassName = "java.io.ObjectInputFilter$Status"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Status() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Status(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ObjectInputStream - /// - /// - /// - public partial class ObjectInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "java.io.ObjectInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region GetField - /// - /// - /// - public partial class GetField : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectInputStream$GetField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GetField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GetField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GetField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GetField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ObjectInputValidation - /// - /// - /// - public partial class ObjectInputValidation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectInputValidation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectInputValidation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectInputValidation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectInputValidation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectInputValidation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectOutput - /// - /// - /// - public partial class ObjectOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectOutput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectOutput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectOutput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectOutputStream - /// - /// - /// - public partial class ObjectOutputStream : Java.Io.OutputStream - { - const string _bridgeClassName = "java.io.ObjectOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PutField - /// - /// - /// - public partial class PutField : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectOutputStream$PutField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PutField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PutField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PutField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PutField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ObjectStreamClass - /// - /// - /// - public partial class ObjectStreamClass : Java.Io.Serializable - { - const string _bridgeClassName = "java.io.ObjectStreamClass"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectStreamClass() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectStreamClass(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectStreamConstants - /// - /// - /// - public partial class ObjectStreamConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.ObjectStreamConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectStreamConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectStreamConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectStreamException - /// - /// - /// - public partial class ObjectStreamException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.ObjectStreamException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ObjectStreamField - /// - /// - /// - public partial class ObjectStreamField : Java.Lang.Comparable - { - const string _bridgeClassName = "java.io.ObjectStreamField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectStreamField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectStreamField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OptionalDataException - /// - /// - /// - public partial class OptionalDataException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.OptionalDataException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OutputStream - /// - /// - /// - public partial class OutputStream : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.OutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OutputStreamWriter - /// - /// - /// - public partial class OutputStreamWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.OutputStreamWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OutputStreamWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OutputStreamWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PipedInputStream - /// - /// - /// - public partial class PipedInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "java.io.PipedInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PipedInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PipedInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PipedOutputStream - /// - /// - /// - public partial class PipedOutputStream : Java.Io.OutputStream - { - const string _bridgeClassName = "java.io.PipedOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PipedOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PipedOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PipedReader - /// - /// - /// - public partial class PipedReader : Java.Io.Reader - { - const string _bridgeClassName = "java.io.PipedReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PipedReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PipedReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PipedWriter - /// - /// - /// - public partial class PipedWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.PipedWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PipedWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PipedWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintStream - /// - /// - /// - public partial class PrintStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.io.PrintStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintWriter - /// - /// - /// - public partial class PrintWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.PrintWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PushbackInputStream - /// - /// - /// - public partial class PushbackInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.io.PushbackInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PushbackInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PushbackInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PushbackReader - /// - /// - /// - public partial class PushbackReader : Java.Io.FilterReader - { - const string _bridgeClassName = "java.io.PushbackReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PushbackReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PushbackReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RandomAccessFile - /// - /// - /// - public partial class RandomAccessFile : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.RandomAccessFile"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RandomAccessFile() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RandomAccessFile(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Reader - /// - /// - /// - public partial class Reader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.Reader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Reader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Reader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SequenceInputStream - /// - /// - /// - public partial class SequenceInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "java.io.SequenceInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SequenceInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SequenceInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Serializable - /// - /// - /// - public partial class Serializable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.Serializable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Serializable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Serializable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Serializable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Serializable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerializablePermission - /// - /// - /// - public partial class SerializablePermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.io.SerializablePermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerializablePermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerializablePermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamCorruptedException - /// - /// - /// - public partial class StreamCorruptedException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.StreamCorruptedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StreamTokenizer - /// - /// - /// - public partial class StreamTokenizer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.StreamTokenizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StreamTokenizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StreamTokenizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringReader - /// - /// - /// - public partial class StringReader : Java.Io.Reader - { - const string _bridgeClassName = "java.io.StringReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringWriter - /// - /// - /// - public partial class StringWriter : Java.Io.Writer - { - const string _bridgeClassName = "java.io.StringWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SyncFailedException - /// - /// - /// - public partial class SyncFailedException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.SyncFailedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UncheckedIOException - /// - /// - /// - public partial class UncheckedIOException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.io.UncheckedIOException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedEncodingException - /// - /// - /// - public partial class UnsupportedEncodingException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.UnsupportedEncodingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UTFDataFormatException - /// - /// - /// - public partial class UTFDataFormatException : Java.Io.IOException - { - const string _bridgeClassName = "java.io.UTFDataFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region WriteAbortedException - /// - /// - /// - public partial class WriteAbortedException : Java.Io.ObjectStreamException - { - const string _bridgeClassName = "java.io.WriteAbortedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Writer - /// - /// - /// - public partial class Writer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.io.Writer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Writer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Writer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Writer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Writer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Io/BufferedInputStream.cs b/src/net/JNet/Generated/Java/Io/BufferedInputStream.cs index 815060c515..f746c9aa65 100644 --- a/src/net/JNet/Generated/Java/Io/BufferedInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/BufferedInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region BufferedInputStream + #region BufferedInputStream declaration + /// + /// + /// + public partial class BufferedInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.io.BufferedInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferedInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferedInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferedInputStream implementation public partial class BufferedInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/BufferedOutputStream.cs b/src/net/JNet/Generated/Java/Io/BufferedOutputStream.cs index 85326e288a..61bee2daff 100644 --- a/src/net/JNet/Generated/Java/Io/BufferedOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/BufferedOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region BufferedOutputStream + #region BufferedOutputStream declaration + /// + /// + /// + public partial class BufferedOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.io.BufferedOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferedOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferedOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferedOutputStream implementation public partial class BufferedOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/BufferedReader.cs b/src/net/JNet/Generated/Java/Io/BufferedReader.cs index dde347a582..473831186c 100644 --- a/src/net/JNet/Generated/Java/Io/BufferedReader.cs +++ b/src/net/JNet/Generated/Java/Io/BufferedReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region BufferedReader + #region BufferedReader declaration + /// + /// + /// + public partial class BufferedReader : Java.Io.Reader + { + const string _bridgeClassName = "java.io.BufferedReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferedReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferedReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferedReader implementation public partial class BufferedReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/BufferedWriter.cs b/src/net/JNet/Generated/Java/Io/BufferedWriter.cs index 95a6d4381d..9f917d1bd7 100644 --- a/src/net/JNet/Generated/Java/Io/BufferedWriter.cs +++ b/src/net/JNet/Generated/Java/Io/BufferedWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region BufferedWriter + #region BufferedWriter declaration + /// + /// + /// + public partial class BufferedWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.BufferedWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BufferedWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BufferedWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BufferedWriter implementation public partial class BufferedWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ByteArrayInputStream.cs b/src/net/JNet/Generated/Java/Io/ByteArrayInputStream.cs index 565db068b8..91bf96f2dd 100644 --- a/src/net/JNet/Generated/Java/Io/ByteArrayInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/ByteArrayInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region ByteArrayInputStream + #region ByteArrayInputStream declaration + /// + /// + /// + public partial class ByteArrayInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "java.io.ByteArrayInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ByteArrayInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ByteArrayInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ByteArrayInputStream implementation public partial class ByteArrayInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ByteArrayOutputStream.cs b/src/net/JNet/Generated/Java/Io/ByteArrayOutputStream.cs index bdb8e9b649..4d9bf11547 100644 --- a/src/net/JNet/Generated/Java/Io/ByteArrayOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/ByteArrayOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region ByteArrayOutputStream + #region ByteArrayOutputStream declaration + /// + /// + /// + public partial class ByteArrayOutputStream : Java.Io.OutputStream + { + const string _bridgeClassName = "java.io.ByteArrayOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ByteArrayOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ByteArrayOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ByteArrayOutputStream implementation public partial class ByteArrayOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/CharArrayReader.cs b/src/net/JNet/Generated/Java/Io/CharArrayReader.cs index e00e49d1e1..4876301e91 100644 --- a/src/net/JNet/Generated/Java/Io/CharArrayReader.cs +++ b/src/net/JNet/Generated/Java/Io/CharArrayReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region CharArrayReader + #region CharArrayReader declaration + /// + /// + /// + public partial class CharArrayReader : Java.Io.Reader + { + const string _bridgeClassName = "java.io.CharArrayReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CharArrayReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CharArrayReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharArrayReader implementation public partial class CharArrayReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/CharArrayWriter.cs b/src/net/JNet/Generated/Java/Io/CharArrayWriter.cs index d2c5f5c0d6..d421bdbb6e 100644 --- a/src/net/JNet/Generated/Java/Io/CharArrayWriter.cs +++ b/src/net/JNet/Generated/Java/Io/CharArrayWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region CharArrayWriter + #region CharArrayWriter declaration + /// + /// + /// + public partial class CharArrayWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.CharArrayWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CharArrayWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CharArrayWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharArrayWriter implementation public partial class CharArrayWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/CharConversionException.cs b/src/net/JNet/Generated/Java/Io/CharConversionException.cs index 038fda9a9c..d34d04b785 100644 --- a/src/net/JNet/Generated/Java/Io/CharConversionException.cs +++ b/src/net/JNet/Generated/Java/Io/CharConversionException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region CharConversionException + #region CharConversionException declaration + /// + /// + /// + public partial class CharConversionException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.CharConversionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CharConversionException implementation public partial class CharConversionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Closeable.cs b/src/net/JNet/Generated/Java/Io/Closeable.cs index 6e01ed724c..0af0bf0815 100644 --- a/src/net/JNet/Generated/Java/Io/Closeable.cs +++ b/src/net/JNet/Generated/Java/Io/Closeable.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region Closeable declaration + /// + /// + /// + public partial class Closeable : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "java.io.Closeable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Closeable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Closeable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Closeable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Closeable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICloseable /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ICloseable : Java.Lang.IAutoCloseable } #endregion - #region Closeable + #region Closeable implementation public partial class Closeable : Java.Io.ICloseable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Console.cs b/src/net/JNet/Generated/Java/Io/Console.cs index 206b7e38e0..9ea09a4b5b 100644 --- a/src/net/JNet/Generated/Java/Io/Console.cs +++ b/src/net/JNet/Generated/Java/Io/Console.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region Console + #region Console declaration + /// + /// + /// + public partial class Console : Java.Io.Flushable + { + const string _bridgeClassName = "java.io.Console"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Console() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Console(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Console implementation public partial class Console { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/DataInput.cs b/src/net/JNet/Generated/Java/Io/DataInput.cs index ee63cef5dc..8b285b64db 100644 --- a/src/net/JNet/Generated/Java/Io/DataInput.cs +++ b/src/net/JNet/Generated/Java/Io/DataInput.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region DataInput declaration + /// + /// + /// + public partial class DataInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.DataInput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DataInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataInput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DataInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataInput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDataInput /// /// .NET interface for TO BE DEFINED FROM USER @@ -136,7 +183,7 @@ public partial interface IDataInput } #endregion - #region DataInput + #region DataInput implementation public partial class DataInput : Java.Io.IDataInput { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/DataInputStream.cs b/src/net/JNet/Generated/Java/Io/DataInputStream.cs index ccd9c0d9a5..10b5e2c6cd 100644 --- a/src/net/JNet/Generated/Java/Io/DataInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/DataInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region DataInputStream + #region DataInputStream declaration + /// + /// + /// + public partial class DataInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.io.DataInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataInputStream implementation public partial class DataInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/DataOutput.cs b/src/net/JNet/Generated/Java/Io/DataOutput.cs index 56414c3f24..b5cb4a03ca 100644 --- a/src/net/JNet/Generated/Java/Io/DataOutput.cs +++ b/src/net/JNet/Generated/Java/Io/DataOutput.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region DataOutput declaration + /// + /// + /// + public partial class DataOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.DataOutput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DataOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataOutput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DataOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataOutput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDataOutput /// /// .NET interface for TO BE DEFINED FROM USER @@ -129,7 +176,7 @@ public partial interface IDataOutput } #endregion - #region DataOutput + #region DataOutput implementation public partial class DataOutput : Java.Io.IDataOutput { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/DataOutputStream.cs b/src/net/JNet/Generated/Java/Io/DataOutputStream.cs index b09dada18b..672c3637e3 100644 --- a/src/net/JNet/Generated/Java/Io/DataOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/DataOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region DataOutputStream + #region DataOutputStream declaration + /// + /// + /// + public partial class DataOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.io.DataOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DataOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DataOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DataOutputStream implementation public partial class DataOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/EOFException.cs b/src/net/JNet/Generated/Java/Io/EOFException.cs index 7f4494d7f4..5d2d7a8b4c 100644 --- a/src/net/JNet/Generated/Java/Io/EOFException.cs +++ b/src/net/JNet/Generated/Java/Io/EOFException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region EOFException + #region EOFException declaration + /// + /// + /// + public partial class EOFException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.EOFException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region EOFException implementation public partial class EOFException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Externalizable.cs b/src/net/JNet/Generated/Java/Io/Externalizable.cs index cc17f3a889..32f147146e 100644 --- a/src/net/JNet/Generated/Java/Io/Externalizable.cs +++ b/src/net/JNet/Generated/Java/Io/Externalizable.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region Externalizable declaration + /// + /// + /// + public partial class Externalizable : Java.Io.Serializable + { + const string _bridgeClassName = "java.io.Externalizable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Externalizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Externalizable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Externalizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Externalizable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExternalizable /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface IExternalizable : Java.Io.ISerializable } #endregion - #region Externalizable + #region Externalizable implementation public partial class Externalizable : Java.Io.IExternalizable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/File.cs b/src/net/JNet/Generated/Java/Io/File.cs index c659f752cf..44772068d0 100644 --- a/src/net/JNet/Generated/Java/Io/File.cs +++ b/src/net/JNet/Generated/Java/Io/File.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region File + #region File declaration + /// + /// + /// + public partial class File : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.File"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public File() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public File(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region File implementation public partial class File { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileDescriptor.cs b/src/net/JNet/Generated/Java/Io/FileDescriptor.cs index 5730ffbaee..fdedde1087 100644 --- a/src/net/JNet/Generated/Java/Io/FileDescriptor.cs +++ b/src/net/JNet/Generated/Java/Io/FileDescriptor.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FileDescriptor + #region FileDescriptor declaration + /// + /// + /// + public partial class FileDescriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.FileDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileDescriptor implementation public partial class FileDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileFilter.cs b/src/net/JNet/Generated/Java/Io/FileFilter.cs index 76523ddd8c..29893c7eea 100644 --- a/src/net/JNet/Generated/Java/Io/FileFilter.cs +++ b/src/net/JNet/Generated/Java/Io/FileFilter.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region FileFilter declaration + /// + /// + /// + public partial class FileFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.FileFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFileFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IFileFilter } #endregion - #region FileFilter + #region FileFilter implementation public partial class FileFilter : Java.Io.IFileFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileInputStream.cs b/src/net/JNet/Generated/Java/Io/FileInputStream.cs index 6afb5ff011..11dc3f9f44 100644 --- a/src/net/JNet/Generated/Java/Io/FileInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/FileInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FileInputStream + #region FileInputStream declaration + /// + /// + /// + public partial class FileInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "java.io.FileInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileInputStream implementation public partial class FileInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileNotFoundException.cs b/src/net/JNet/Generated/Java/Io/FileNotFoundException.cs index 3cb606cbb5..c55141aede 100644 --- a/src/net/JNet/Generated/Java/Io/FileNotFoundException.cs +++ b/src/net/JNet/Generated/Java/Io/FileNotFoundException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region FileNotFoundException + #region FileNotFoundException declaration + /// + /// + /// + public partial class FileNotFoundException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.FileNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileNotFoundException implementation public partial class FileNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileOutputStream.cs b/src/net/JNet/Generated/Java/Io/FileOutputStream.cs index f0b2413813..93bf1abab3 100644 --- a/src/net/JNet/Generated/Java/Io/FileOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/FileOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FileOutputStream + #region FileOutputStream declaration + /// + /// + /// + public partial class FileOutputStream : Java.Io.OutputStream + { + const string _bridgeClassName = "java.io.FileOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileOutputStream implementation public partial class FileOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FilePermission.cs b/src/net/JNet/Generated/Java/Io/FilePermission.cs index 8761c44e06..8b786e0d6b 100644 --- a/src/net/JNet/Generated/Java/Io/FilePermission.cs +++ b/src/net/JNet/Generated/Java/Io/FilePermission.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FilePermission + #region FilePermission declaration + /// + /// + /// + public partial class FilePermission : Java.Security.Permission + { + const string _bridgeClassName = "java.io.FilePermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilePermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilePermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilePermission implementation public partial class FilePermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileReader.cs b/src/net/JNet/Generated/Java/Io/FileReader.cs index 4e3d57d50d..799056ad7b 100644 --- a/src/net/JNet/Generated/Java/Io/FileReader.cs +++ b/src/net/JNet/Generated/Java/Io/FileReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FileReader + #region FileReader declaration + /// + /// + /// + public partial class FileReader : Java.Io.InputStreamReader + { + const string _bridgeClassName = "java.io.FileReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileReader implementation public partial class FileReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FileWriter.cs b/src/net/JNet/Generated/Java/Io/FileWriter.cs index 94b6d91075..2945b73a8d 100644 --- a/src/net/JNet/Generated/Java/Io/FileWriter.cs +++ b/src/net/JNet/Generated/Java/Io/FileWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FileWriter + #region FileWriter declaration + /// + /// + /// + public partial class FileWriter : Java.Io.OutputStreamWriter + { + const string _bridgeClassName = "java.io.FileWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileWriter implementation public partial class FileWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FilenameFilter.cs b/src/net/JNet/Generated/Java/Io/FilenameFilter.cs index 8aec8b1f94..b29ea639e3 100644 --- a/src/net/JNet/Generated/Java/Io/FilenameFilter.cs +++ b/src/net/JNet/Generated/Java/Io/FilenameFilter.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region FilenameFilter declaration + /// + /// + /// + public partial class FilenameFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.FilenameFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilenameFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilenameFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilenameFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilenameFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFilenameFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IFilenameFilter } #endregion - #region FilenameFilter + #region FilenameFilter implementation public partial class FilenameFilter : Java.Io.IFilenameFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FilterInputStream.cs b/src/net/JNet/Generated/Java/Io/FilterInputStream.cs index b1a7ebd81c..fe4d0cb8cc 100644 --- a/src/net/JNet/Generated/Java/Io/FilterInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/FilterInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FilterInputStream + #region FilterInputStream declaration + /// + /// + /// + public partial class FilterInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "java.io.FilterInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilterInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilterInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilterInputStream implementation public partial class FilterInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FilterOutputStream.cs b/src/net/JNet/Generated/Java/Io/FilterOutputStream.cs index c9fbe200a0..acec9ca51f 100644 --- a/src/net/JNet/Generated/Java/Io/FilterOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/FilterOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region FilterOutputStream + #region FilterOutputStream declaration + /// + /// + /// + public partial class FilterOutputStream : Java.Io.OutputStream + { + const string _bridgeClassName = "java.io.FilterOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilterOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilterOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilterOutputStream implementation public partial class FilterOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FilterReader.cs b/src/net/JNet/Generated/Java/Io/FilterReader.cs index d2632116ab..20630251a4 100644 --- a/src/net/JNet/Generated/Java/Io/FilterReader.cs +++ b/src/net/JNet/Generated/Java/Io/FilterReader.cs @@ -25,7 +25,54 @@ namespace Java.Io { - #region FilterReader + #region FilterReader declaration + /// + /// + /// + public partial class FilterReader : Java.Io.Reader + { + const string _bridgeClassName = "java.io.FilterReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilterReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilterReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilterReader implementation public partial class FilterReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/FilterWriter.cs b/src/net/JNet/Generated/Java/Io/FilterWriter.cs index dc9d7890e0..cc8eefbba5 100644 --- a/src/net/JNet/Generated/Java/Io/FilterWriter.cs +++ b/src/net/JNet/Generated/Java/Io/FilterWriter.cs @@ -25,7 +25,54 @@ namespace Java.Io { - #region FilterWriter + #region FilterWriter declaration + /// + /// + /// + public partial class FilterWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.FilterWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilterWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilterWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FilterWriter implementation public partial class FilterWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Flushable.cs b/src/net/JNet/Generated/Java/Io/Flushable.cs index 3606e3310b..f990125011 100644 --- a/src/net/JNet/Generated/Java/Io/Flushable.cs +++ b/src/net/JNet/Generated/Java/Io/Flushable.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region Flushable declaration + /// + /// + /// + public partial class Flushable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.Flushable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Flushable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Flushable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Flushable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Flushable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFlushable /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IFlushable } #endregion - #region Flushable + #region Flushable implementation public partial class Flushable : Java.Io.IFlushable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/IOError.cs b/src/net/JNet/Generated/Java/Io/IOError.cs index 0ae18e804e..43d5308651 100644 --- a/src/net/JNet/Generated/Java/Io/IOError.cs +++ b/src/net/JNet/Generated/Java/Io/IOError.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region IOError + #region IOError declaration + /// + /// + /// + public partial class IOError : Java.Lang.Error + { + const string _bridgeClassName = "java.io.IOError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IOError implementation public partial class IOError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/IOException.cs b/src/net/JNet/Generated/Java/Io/IOException.cs index 86cfcd70bd..76f58560e6 100644 --- a/src/net/JNet/Generated/Java/Io/IOException.cs +++ b/src/net/JNet/Generated/Java/Io/IOException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region IOException + #region IOException declaration + /// + /// + /// + public partial class IOException : Java.Lang.Exception + { + const string _bridgeClassName = "java.io.IOException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IOException implementation public partial class IOException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/InputStream.cs b/src/net/JNet/Generated/Java/Io/InputStream.cs index e16b86a549..dedf35bc87 100644 --- a/src/net/JNet/Generated/Java/Io/InputStream.cs +++ b/src/net/JNet/Generated/Java/Io/InputStream.cs @@ -25,7 +25,54 @@ namespace Java.Io { - #region InputStream + #region InputStream declaration + /// + /// + /// + public partial class InputStream : Java.Io.Closeable + { + const string _bridgeClassName = "java.io.InputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputStream implementation public partial class InputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/InputStreamReader.cs b/src/net/JNet/Generated/Java/Io/InputStreamReader.cs index 367eac8656..5600fe2f72 100644 --- a/src/net/JNet/Generated/Java/Io/InputStreamReader.cs +++ b/src/net/JNet/Generated/Java/Io/InputStreamReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region InputStreamReader + #region InputStreamReader declaration + /// + /// + /// + public partial class InputStreamReader : Java.Io.Reader + { + const string _bridgeClassName = "java.io.InputStreamReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputStreamReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputStreamReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputStreamReader implementation public partial class InputStreamReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/InterruptedIOException.cs b/src/net/JNet/Generated/Java/Io/InterruptedIOException.cs index b04ea6d656..7b53bd9f6d 100644 --- a/src/net/JNet/Generated/Java/Io/InterruptedIOException.cs +++ b/src/net/JNet/Generated/Java/Io/InterruptedIOException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region InterruptedIOException + #region InterruptedIOException declaration + /// + /// + /// + public partial class InterruptedIOException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.InterruptedIOException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InterruptedIOException implementation public partial class InterruptedIOException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/InvalidClassException.cs b/src/net/JNet/Generated/Java/Io/InvalidClassException.cs index 65e449a0b3..33c7590dc3 100644 --- a/src/net/JNet/Generated/Java/Io/InvalidClassException.cs +++ b/src/net/JNet/Generated/Java/Io/InvalidClassException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region InvalidClassException + #region InvalidClassException declaration + /// + /// + /// + public partial class InvalidClassException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.InvalidClassException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidClassException implementation public partial class InvalidClassException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/InvalidObjectException.cs b/src/net/JNet/Generated/Java/Io/InvalidObjectException.cs index 998b688c82..ffc0005f01 100644 --- a/src/net/JNet/Generated/Java/Io/InvalidObjectException.cs +++ b/src/net/JNet/Generated/Java/Io/InvalidObjectException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region InvalidObjectException + #region InvalidObjectException declaration + /// + /// + /// + public partial class InvalidObjectException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.InvalidObjectException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidObjectException implementation public partial class InvalidObjectException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/LineNumberReader.cs b/src/net/JNet/Generated/Java/Io/LineNumberReader.cs index 48d23adc63..3b1983ae95 100644 --- a/src/net/JNet/Generated/Java/Io/LineNumberReader.cs +++ b/src/net/JNet/Generated/Java/Io/LineNumberReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region LineNumberReader + #region LineNumberReader declaration + /// + /// + /// + public partial class LineNumberReader : Java.Io.BufferedReader + { + const string _bridgeClassName = "java.io.LineNumberReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LineNumberReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LineNumberReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LineNumberReader implementation public partial class LineNumberReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/NotActiveException.cs b/src/net/JNet/Generated/Java/Io/NotActiveException.cs index bccc94831c..3f015d1f58 100644 --- a/src/net/JNet/Generated/Java/Io/NotActiveException.cs +++ b/src/net/JNet/Generated/Java/Io/NotActiveException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region NotActiveException + #region NotActiveException declaration + /// + /// + /// + public partial class NotActiveException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.NotActiveException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotActiveException implementation public partial class NotActiveException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/NotSerializableException.cs b/src/net/JNet/Generated/Java/Io/NotSerializableException.cs index 311c652519..3cad50412e 100644 --- a/src/net/JNet/Generated/Java/Io/NotSerializableException.cs +++ b/src/net/JNet/Generated/Java/Io/NotSerializableException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region NotSerializableException + #region NotSerializableException declaration + /// + /// + /// + public partial class NotSerializableException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.NotSerializableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotSerializableException implementation public partial class NotSerializableException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectInput.cs b/src/net/JNet/Generated/Java/Io/ObjectInput.cs index 1fcb0e9d32..5d227e3081 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectInput.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectInput.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region ObjectInput declaration + /// + /// + /// + public partial class ObjectInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectInput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectInput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectInput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IObjectInput /// /// .NET interface for TO BE DEFINED FROM USER @@ -90,7 +137,7 @@ public partial interface IObjectInput } #endregion - #region ObjectInput + #region ObjectInput implementation public partial class ObjectInput : Java.Io.IObjectInput { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectInputFilter.cs b/src/net/JNet/Generated/Java/Io/ObjectInputFilter.cs index 1ab3228a2a..461c785a1a 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectInputFilter.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectInputFilter.cs @@ -25,6 +25,190 @@ namespace Java.Io { + #region ObjectInputFilter declaration + /// + /// + /// + public partial class ObjectInputFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectInputFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectInputFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectInputFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectInputFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectInputFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Config declaration + /// + /// + /// + public partial class Config : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectInputFilter$Config"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Config() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Config(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FilterInfo declaration + /// + /// + /// + public partial class FilterInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectInputFilter$FilterInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Status declaration + /// + /// + /// + public partial class Status : Java.Lang.Enum + { + const string _bridgeClassName = "java.io.ObjectInputFilter$Status"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Status() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Status(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IObjectInputFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +233,7 @@ public partial interface IObjectInputFilter } #endregion - #region ObjectInputFilter + #region ObjectInputFilter implementation public partial class ObjectInputFilter : Java.Io.IObjectInputFilter { #region Constructors @@ -82,7 +266,7 @@ public Java.Io.ObjectInputFilter.Status CheckInput(Java.Io.ObjectInputFilter.Fil #endregion #region Nested classes - #region Config + #region Config implementation public partial class Config { #region Constructors @@ -129,7 +313,7 @@ public static Java.Io.ObjectInputFilter CreateFilter(Java.Lang.String arg0) } #endregion - #region FilterInfo + #region FilterInfo implementation public partial class FilterInfo { #region Constructors @@ -200,7 +384,7 @@ public long StreamBytes() } #endregion - #region Status + #region Status implementation public partial class Status { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectInputStream.cs b/src/net/JNet/Generated/Java/Io/ObjectInputStream.cs index 3a5749bff4..e486a76cee 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectInputStream.cs @@ -25,7 +25,99 @@ namespace Java.Io { - #region ObjectInputStream + #region ObjectInputStream declaration + /// + /// + /// + public partial class ObjectInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "java.io.ObjectInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region GetField declaration + /// + /// + /// + public partial class GetField : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectInputStream$GetField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GetField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GetField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GetField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GetField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ObjectInputStream implementation public partial class ObjectInputStream { #region Constructors @@ -252,7 +344,7 @@ public void RegisterValidation(Java.Io.ObjectInputValidation arg0, int arg1) #endregion #region Nested classes - #region GetField + #region GetField implementation public partial class GetField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectInputValidation.cs b/src/net/JNet/Generated/Java/Io/ObjectInputValidation.cs index 47beae4ca5..38d6651711 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectInputValidation.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectInputValidation.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region ObjectInputValidation declaration + /// + /// + /// + public partial class ObjectInputValidation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectInputValidation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectInputValidation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectInputValidation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectInputValidation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectInputValidation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IObjectInputValidation /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IObjectInputValidation } #endregion - #region ObjectInputValidation + #region ObjectInputValidation implementation public partial class ObjectInputValidation : Java.Io.IObjectInputValidation { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectOutput.cs b/src/net/JNet/Generated/Java/Io/ObjectOutput.cs index 62ac1ba607..441581842b 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectOutput.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectOutput.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region ObjectOutput declaration + /// + /// + /// + public partial class ObjectOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectOutput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectOutput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectOutput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IObjectOutput /// /// .NET interface for TO BE DEFINED FROM USER @@ -79,7 +126,7 @@ public partial interface IObjectOutput } #endregion - #region ObjectOutput + #region ObjectOutput implementation public partial class ObjectOutput : Java.Io.IObjectOutput { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectOutputStream.cs b/src/net/JNet/Generated/Java/Io/ObjectOutputStream.cs index 6a8fc25f9f..cf2e9dc620 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectOutputStream.cs @@ -25,7 +25,99 @@ namespace Java.Io { - #region ObjectOutputStream + #region ObjectOutputStream declaration + /// + /// + /// + public partial class ObjectOutputStream : Java.Io.OutputStream + { + const string _bridgeClassName = "java.io.ObjectOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PutField declaration + /// + /// + /// + public partial class PutField : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectOutputStream$PutField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PutField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PutField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PutField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PutField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ObjectOutputStream implementation public partial class ObjectOutputStream { #region Constructors @@ -225,7 +317,7 @@ public void WriteUTF(Java.Lang.String arg0) #endregion #region Nested classes - #region PutField + #region PutField implementation public partial class PutField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectStreamClass.cs b/src/net/JNet/Generated/Java/Io/ObjectStreamClass.cs index 3c1432567c..6dd2b39bbd 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectStreamClass.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectStreamClass.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region ObjectStreamClass + #region ObjectStreamClass declaration + /// + /// + /// + public partial class ObjectStreamClass : Java.Io.Serializable + { + const string _bridgeClassName = "java.io.ObjectStreamClass"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectStreamClass() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectStreamClass(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ObjectStreamClass implementation public partial class ObjectStreamClass { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectStreamConstants.cs b/src/net/JNet/Generated/Java/Io/ObjectStreamConstants.cs index 91c5cb2a9c..0c120de028 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectStreamConstants.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectStreamConstants.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region ObjectStreamConstants declaration + /// + /// + /// + public partial class ObjectStreamConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.ObjectStreamConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectStreamConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectStreamConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IObjectStreamConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IObjectStreamConstants } #endregion - #region ObjectStreamConstants + #region ObjectStreamConstants implementation public partial class ObjectStreamConstants : Java.Io.IObjectStreamConstants { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectStreamException.cs b/src/net/JNet/Generated/Java/Io/ObjectStreamException.cs index 6001b47026..09b49d1907 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectStreamException.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectStreamException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region ObjectStreamException + #region ObjectStreamException declaration + /// + /// + /// + public partial class ObjectStreamException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.ObjectStreamException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ObjectStreamException implementation public partial class ObjectStreamException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/ObjectStreamField.cs b/src/net/JNet/Generated/Java/Io/ObjectStreamField.cs index b31578818c..eaa5492d4a 100644 --- a/src/net/JNet/Generated/Java/Io/ObjectStreamField.cs +++ b/src/net/JNet/Generated/Java/Io/ObjectStreamField.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region ObjectStreamField + #region ObjectStreamField declaration + /// + /// + /// + public partial class ObjectStreamField : Java.Lang.Comparable + { + const string _bridgeClassName = "java.io.ObjectStreamField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectStreamField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectStreamField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ObjectStreamField implementation public partial class ObjectStreamField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/OptionalDataException.cs b/src/net/JNet/Generated/Java/Io/OptionalDataException.cs index 21bc983401..ac2a2554bb 100644 --- a/src/net/JNet/Generated/Java/Io/OptionalDataException.cs +++ b/src/net/JNet/Generated/Java/Io/OptionalDataException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region OptionalDataException + #region OptionalDataException declaration + /// + /// + /// + public partial class OptionalDataException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.OptionalDataException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region OptionalDataException implementation public partial class OptionalDataException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/OutputStream.cs b/src/net/JNet/Generated/Java/Io/OutputStream.cs index 84fc7d2270..da3aa9257c 100644 --- a/src/net/JNet/Generated/Java/Io/OutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/OutputStream.cs @@ -25,7 +25,54 @@ namespace Java.Io { - #region OutputStream + #region OutputStream declaration + /// + /// + /// + public partial class OutputStream : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.OutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OutputStream implementation public partial class OutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/OutputStreamWriter.cs b/src/net/JNet/Generated/Java/Io/OutputStreamWriter.cs index 1378a25944..db4866dbee 100644 --- a/src/net/JNet/Generated/Java/Io/OutputStreamWriter.cs +++ b/src/net/JNet/Generated/Java/Io/OutputStreamWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region OutputStreamWriter + #region OutputStreamWriter declaration + /// + /// + /// + public partial class OutputStreamWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.OutputStreamWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OutputStreamWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OutputStreamWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OutputStreamWriter implementation public partial class OutputStreamWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PipedInputStream.cs b/src/net/JNet/Generated/Java/Io/PipedInputStream.cs index 14b259b362..43f85b6644 100644 --- a/src/net/JNet/Generated/Java/Io/PipedInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/PipedInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PipedInputStream + #region PipedInputStream declaration + /// + /// + /// + public partial class PipedInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "java.io.PipedInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PipedInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PipedInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PipedInputStream implementation public partial class PipedInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PipedOutputStream.cs b/src/net/JNet/Generated/Java/Io/PipedOutputStream.cs index 21ffc45e26..449c0ea5ad 100644 --- a/src/net/JNet/Generated/Java/Io/PipedOutputStream.cs +++ b/src/net/JNet/Generated/Java/Io/PipedOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PipedOutputStream + #region PipedOutputStream declaration + /// + /// + /// + public partial class PipedOutputStream : Java.Io.OutputStream + { + const string _bridgeClassName = "java.io.PipedOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PipedOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PipedOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PipedOutputStream implementation public partial class PipedOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PipedReader.cs b/src/net/JNet/Generated/Java/Io/PipedReader.cs index d1ec77848f..9e35a8578a 100644 --- a/src/net/JNet/Generated/Java/Io/PipedReader.cs +++ b/src/net/JNet/Generated/Java/Io/PipedReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PipedReader + #region PipedReader declaration + /// + /// + /// + public partial class PipedReader : Java.Io.Reader + { + const string _bridgeClassName = "java.io.PipedReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PipedReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PipedReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PipedReader implementation public partial class PipedReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PipedWriter.cs b/src/net/JNet/Generated/Java/Io/PipedWriter.cs index 50ee7c8770..abc1666826 100644 --- a/src/net/JNet/Generated/Java/Io/PipedWriter.cs +++ b/src/net/JNet/Generated/Java/Io/PipedWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PipedWriter + #region PipedWriter declaration + /// + /// + /// + public partial class PipedWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.PipedWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PipedWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PipedWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PipedWriter implementation public partial class PipedWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PrintStream.cs b/src/net/JNet/Generated/Java/Io/PrintStream.cs index b078908086..102f9e518d 100644 --- a/src/net/JNet/Generated/Java/Io/PrintStream.cs +++ b/src/net/JNet/Generated/Java/Io/PrintStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PrintStream + #region PrintStream declaration + /// + /// + /// + public partial class PrintStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.io.PrintStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintStream implementation public partial class PrintStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PrintWriter.cs b/src/net/JNet/Generated/Java/Io/PrintWriter.cs index 67004865e4..78fd19ac1c 100644 --- a/src/net/JNet/Generated/Java/Io/PrintWriter.cs +++ b/src/net/JNet/Generated/Java/Io/PrintWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PrintWriter + #region PrintWriter declaration + /// + /// + /// + public partial class PrintWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.PrintWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintWriter implementation public partial class PrintWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PushbackInputStream.cs b/src/net/JNet/Generated/Java/Io/PushbackInputStream.cs index 8a29df7393..e0c92183b2 100644 --- a/src/net/JNet/Generated/Java/Io/PushbackInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/PushbackInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PushbackInputStream + #region PushbackInputStream declaration + /// + /// + /// + public partial class PushbackInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.io.PushbackInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PushbackInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PushbackInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PushbackInputStream implementation public partial class PushbackInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/PushbackReader.cs b/src/net/JNet/Generated/Java/Io/PushbackReader.cs index 24787348b3..f32f0140a8 100644 --- a/src/net/JNet/Generated/Java/Io/PushbackReader.cs +++ b/src/net/JNet/Generated/Java/Io/PushbackReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region PushbackReader + #region PushbackReader declaration + /// + /// + /// + public partial class PushbackReader : Java.Io.FilterReader + { + const string _bridgeClassName = "java.io.PushbackReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PushbackReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PushbackReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PushbackReader implementation public partial class PushbackReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/RandomAccessFile.cs b/src/net/JNet/Generated/Java/Io/RandomAccessFile.cs index be9e62d653..25db9cb88d 100644 --- a/src/net/JNet/Generated/Java/Io/RandomAccessFile.cs +++ b/src/net/JNet/Generated/Java/Io/RandomAccessFile.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region RandomAccessFile + #region RandomAccessFile declaration + /// + /// + /// + public partial class RandomAccessFile : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.RandomAccessFile"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RandomAccessFile() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RandomAccessFile(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RandomAccessFile implementation public partial class RandomAccessFile { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Reader.cs b/src/net/JNet/Generated/Java/Io/Reader.cs index 5840f96186..e949b8f9df 100644 --- a/src/net/JNet/Generated/Java/Io/Reader.cs +++ b/src/net/JNet/Generated/Java/Io/Reader.cs @@ -25,7 +25,54 @@ namespace Java.Io { - #region Reader + #region Reader declaration + /// + /// + /// + public partial class Reader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.Reader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Reader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Reader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Reader implementation public partial class Reader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/SequenceInputStream.cs b/src/net/JNet/Generated/Java/Io/SequenceInputStream.cs index 9e2c67bc9f..66c1f5bccf 100644 --- a/src/net/JNet/Generated/Java/Io/SequenceInputStream.cs +++ b/src/net/JNet/Generated/Java/Io/SequenceInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region SequenceInputStream + #region SequenceInputStream declaration + /// + /// + /// + public partial class SequenceInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "java.io.SequenceInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SequenceInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SequenceInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SequenceInputStream implementation public partial class SequenceInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Serializable.cs b/src/net/JNet/Generated/Java/Io/Serializable.cs index 9b033b87e6..ccb4ec1333 100644 --- a/src/net/JNet/Generated/Java/Io/Serializable.cs +++ b/src/net/JNet/Generated/Java/Io/Serializable.cs @@ -25,6 +25,53 @@ namespace Java.Io { + #region Serializable declaration + /// + /// + /// + public partial class Serializable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.Serializable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Serializable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Serializable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Serializable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Serializable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISerializable /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISerializable } #endregion - #region Serializable + #region Serializable implementation public partial class Serializable : Java.Io.ISerializable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/SerializablePermission.cs b/src/net/JNet/Generated/Java/Io/SerializablePermission.cs index 24bc2a0c95..4b5a45c22f 100644 --- a/src/net/JNet/Generated/Java/Io/SerializablePermission.cs +++ b/src/net/JNet/Generated/Java/Io/SerializablePermission.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region SerializablePermission + #region SerializablePermission declaration + /// + /// + /// + public partial class SerializablePermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.io.SerializablePermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerializablePermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerializablePermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerializablePermission implementation public partial class SerializablePermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/StreamCorruptedException.cs b/src/net/JNet/Generated/Java/Io/StreamCorruptedException.cs index 6849ca82d0..4dbc0dce03 100644 --- a/src/net/JNet/Generated/Java/Io/StreamCorruptedException.cs +++ b/src/net/JNet/Generated/Java/Io/StreamCorruptedException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region StreamCorruptedException + #region StreamCorruptedException declaration + /// + /// + /// + public partial class StreamCorruptedException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.StreamCorruptedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region StreamCorruptedException implementation public partial class StreamCorruptedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/StreamTokenizer.cs b/src/net/JNet/Generated/Java/Io/StreamTokenizer.cs index 05e4417e10..a8503cb5f2 100644 --- a/src/net/JNet/Generated/Java/Io/StreamTokenizer.cs +++ b/src/net/JNet/Generated/Java/Io/StreamTokenizer.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region StreamTokenizer + #region StreamTokenizer declaration + /// + /// + /// + public partial class StreamTokenizer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.StreamTokenizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StreamTokenizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StreamTokenizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamTokenizer implementation public partial class StreamTokenizer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/StringReader.cs b/src/net/JNet/Generated/Java/Io/StringReader.cs index 14dc9d5aca..bd1e7d2eb3 100644 --- a/src/net/JNet/Generated/Java/Io/StringReader.cs +++ b/src/net/JNet/Generated/Java/Io/StringReader.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region StringReader + #region StringReader declaration + /// + /// + /// + public partial class StringReader : Java.Io.Reader + { + const string _bridgeClassName = "java.io.StringReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringReader implementation public partial class StringReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/StringWriter.cs b/src/net/JNet/Generated/Java/Io/StringWriter.cs index 9a6b412267..f5e32dd406 100644 --- a/src/net/JNet/Generated/Java/Io/StringWriter.cs +++ b/src/net/JNet/Generated/Java/Io/StringWriter.cs @@ -25,7 +25,52 @@ namespace Java.Io { - #region StringWriter + #region StringWriter declaration + /// + /// + /// + public partial class StringWriter : Java.Io.Writer + { + const string _bridgeClassName = "java.io.StringWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringWriter implementation public partial class StringWriter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/SyncFailedException.cs b/src/net/JNet/Generated/Java/Io/SyncFailedException.cs index f339c1f792..c5f493d4b5 100644 --- a/src/net/JNet/Generated/Java/Io/SyncFailedException.cs +++ b/src/net/JNet/Generated/Java/Io/SyncFailedException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region SyncFailedException + #region SyncFailedException declaration + /// + /// + /// + public partial class SyncFailedException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.SyncFailedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SyncFailedException implementation public partial class SyncFailedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/UTFDataFormatException.cs b/src/net/JNet/Generated/Java/Io/UTFDataFormatException.cs index 31d0c4bcb3..4e8a33bc76 100644 --- a/src/net/JNet/Generated/Java/Io/UTFDataFormatException.cs +++ b/src/net/JNet/Generated/Java/Io/UTFDataFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region UTFDataFormatException + #region UTFDataFormatException declaration + /// + /// + /// + public partial class UTFDataFormatException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.UTFDataFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UTFDataFormatException implementation public partial class UTFDataFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/UncheckedIOException.cs b/src/net/JNet/Generated/Java/Io/UncheckedIOException.cs index c93ce6c67d..4b729365a7 100644 --- a/src/net/JNet/Generated/Java/Io/UncheckedIOException.cs +++ b/src/net/JNet/Generated/Java/Io/UncheckedIOException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region UncheckedIOException + #region UncheckedIOException declaration + /// + /// + /// + public partial class UncheckedIOException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.io.UncheckedIOException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UncheckedIOException implementation public partial class UncheckedIOException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/UnsupportedEncodingException.cs b/src/net/JNet/Generated/Java/Io/UnsupportedEncodingException.cs index 95c804eca7..24ff13fe6a 100644 --- a/src/net/JNet/Generated/Java/Io/UnsupportedEncodingException.cs +++ b/src/net/JNet/Generated/Java/Io/UnsupportedEncodingException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region UnsupportedEncodingException + #region UnsupportedEncodingException declaration + /// + /// + /// + public partial class UnsupportedEncodingException : Java.Io.IOException + { + const string _bridgeClassName = "java.io.UnsupportedEncodingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedEncodingException implementation public partial class UnsupportedEncodingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/WriteAbortedException.cs b/src/net/JNet/Generated/Java/Io/WriteAbortedException.cs index 724d836ebb..f1308fc845 100644 --- a/src/net/JNet/Generated/Java/Io/WriteAbortedException.cs +++ b/src/net/JNet/Generated/Java/Io/WriteAbortedException.cs @@ -25,7 +25,24 @@ namespace Java.Io { - #region WriteAbortedException + #region WriteAbortedException declaration + /// + /// + /// + public partial class WriteAbortedException : Java.Io.ObjectStreamException + { + const string _bridgeClassName = "java.io.WriteAbortedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region WriteAbortedException implementation public partial class WriteAbortedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Io/Writer.cs b/src/net/JNet/Generated/Java/Io/Writer.cs index cda1890db1..b159e187c4 100644 --- a/src/net/JNet/Generated/Java/Io/Writer.cs +++ b/src/net/JNet/Generated/Java/Io/Writer.cs @@ -25,7 +25,54 @@ namespace Java.Io { - #region Writer + #region Writer declaration + /// + /// + /// + public partial class Writer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.io.Writer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Writer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Writer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Writer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Writer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Writer implementation public partial class Writer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/AbstractMethodError.cs b/src/net/JNet/Generated/Java/Lang/AbstractMethodError.cs index 5c4424aee4..3ce0347ba4 100644 --- a/src/net/JNet/Generated/Java/Lang/AbstractMethodError.cs +++ b/src/net/JNet/Generated/Java/Lang/AbstractMethodError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region AbstractMethodError + #region AbstractMethodError declaration + /// + /// + /// + public partial class AbstractMethodError : Java.Lang.IncompatibleClassChangeError + { + const string _bridgeClassName = "java.lang.AbstractMethodError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AbstractMethodError implementation public partial class AbstractMethodError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/AllPackageClasses.cs deleted file mode 100644 index 75c9e3d097..0000000000 --- a/src/net/JNet/Generated/Java/Lang/AllPackageClasses.cs +++ /dev/null @@ -1,4036 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang -{ - #region AbstractMethodError - /// - /// - /// - public partial class AbstractMethodError : Java.Lang.IncompatibleClassChangeError - { - const string _bridgeClassName = "java.lang.AbstractMethodError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Appendable - /// - /// - /// - public partial class Appendable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Appendable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Appendable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Appendable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Appendable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Appendable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArithmeticException - /// - /// - /// - public partial class ArithmeticException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.ArithmeticException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ArrayIndexOutOfBoundsException - /// - /// - /// - public partial class ArrayIndexOutOfBoundsException : Java.Lang.IndexOutOfBoundsException - { - const string _bridgeClassName = "java.lang.ArrayIndexOutOfBoundsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ArrayStoreException - /// - /// - /// - public partial class ArrayStoreException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.ArrayStoreException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AssertionError - /// - /// - /// - public partial class AssertionError : Java.Lang.Error - { - const string _bridgeClassName = "java.lang.AssertionError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AutoCloseable - /// - /// - /// - public partial class AutoCloseable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.AutoCloseable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AutoCloseable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AutoCloseable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AutoCloseable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AutoCloseable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Boolean - /// - /// - /// - public partial class Boolean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Boolean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Boolean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Boolean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BootstrapMethodError - /// - /// - /// - public partial class BootstrapMethodError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.BootstrapMethodError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Byte - /// - /// - /// - public partial class Byte : Java.Lang.Number - { - const string _bridgeClassName = "java.lang.Byte"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Byte() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Byte(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Character - /// - /// - /// - public partial class Character : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Character"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Character() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Character(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Subset - /// - /// - /// - public partial class Subset : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Character$Subset"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Subset() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Subset(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region UnicodeBlock - /// - /// - /// - public partial class UnicodeBlock : Java.Lang.Character.Subset - { - const string _bridgeClassName = "java.lang.Character$UnicodeBlock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnicodeBlock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnicodeBlock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region UnicodeScript - /// - /// - /// - public partial class UnicodeScript : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.Character$UnicodeScript"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnicodeScript() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnicodeScript(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region CharSequence - /// - /// - /// - public partial class CharSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.CharSequence"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharSequence class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharSequence() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharSequence class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharSequence(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Class - /// - /// - /// - public partial class Class : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Class"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Class() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Class(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Class - /// - /// - /// - /// - public partial class Class : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.lang.Class"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Class() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Class(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClassCastException - /// - /// - /// - public partial class ClassCastException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.ClassCastException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClassCircularityError - /// - /// - /// - public partial class ClassCircularityError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.ClassCircularityError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClassFormatError - /// - /// - /// - public partial class ClassFormatError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.ClassFormatError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClassLoader - /// - /// - /// - public partial class ClassLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ClassLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClassNotFoundException - /// - /// - /// - public partial class ClassNotFoundException : Java.Lang.ReflectiveOperationException - { - const string _bridgeClassName = "java.lang.ClassNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClassValue - /// - /// - /// - public partial class ClassValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ClassValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClassValue - /// - /// - /// - /// - public partial class ClassValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.lang.ClassValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Cloneable - /// - /// - /// - public partial class Cloneable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Cloneable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Cloneable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Cloneable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Cloneable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Cloneable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CloneNotSupportedException - /// - /// - /// - public partial class CloneNotSupportedException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.CloneNotSupportedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Comparable - /// - /// - /// - public partial class Comparable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Comparable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comparable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comparable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Comparable - /// - /// - /// - /// - public partial class Comparable : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.lang.Comparable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comparable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comparable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Deprecated - /// - /// - /// - public partial class Deprecated : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.Deprecated"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Deprecated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Deprecated() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Deprecated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Deprecated(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Double - /// - /// - /// - public partial class Double : Java.Lang.Number - { - const string _bridgeClassName = "java.lang.Double"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Double() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Double(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Enum - /// - /// - /// - public partial class Enum : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Enum"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enum() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enum(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Enum - /// - /// - /// - /// - public partial class Enum : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where E : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.Enum"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enum() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enum(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EnumConstantNotPresentException - /// - /// - /// - public partial class EnumConstantNotPresentException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.EnumConstantNotPresentException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Error - /// - /// - /// - public partial class Error : Java.Lang.Throwable - { - const string _bridgeClassName = "java.lang.Error"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Exception - /// - /// - /// - public partial class Exception : Java.Lang.Throwable - { - const string _bridgeClassName = "java.lang.Exception"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ExceptionInInitializerError - /// - /// - /// - public partial class ExceptionInInitializerError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.ExceptionInInitializerError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Float - /// - /// - /// - public partial class Float : Java.Lang.Number - { - const string _bridgeClassName = "java.lang.Float"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Float() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Float(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FunctionalInterface - /// - /// - /// - public partial class FunctionalInterface : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.FunctionalInterface"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FunctionalInterface class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FunctionalInterface() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FunctionalInterface class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FunctionalInterface(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalAccessError - /// - /// - /// - public partial class IllegalAccessError : Java.Lang.IncompatibleClassChangeError - { - const string _bridgeClassName = "java.lang.IllegalAccessError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalAccessException - /// - /// - /// - public partial class IllegalAccessException : Java.Lang.ReflectiveOperationException - { - const string _bridgeClassName = "java.lang.IllegalAccessException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalArgumentException - /// - /// - /// - public partial class IllegalArgumentException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.IllegalArgumentException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalCallerException - /// - /// - /// - public partial class IllegalCallerException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.IllegalCallerException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalMonitorStateException - /// - /// - /// - public partial class IllegalMonitorStateException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.IllegalMonitorStateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalStateException - /// - /// - /// - public partial class IllegalStateException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.IllegalStateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalThreadStateException - /// - /// - /// - public partial class IllegalThreadStateException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.lang.IllegalThreadStateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IncompatibleClassChangeError - /// - /// - /// - public partial class IncompatibleClassChangeError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.IncompatibleClassChangeError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IndexOutOfBoundsException - /// - /// - /// - public partial class IndexOutOfBoundsException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.IndexOutOfBoundsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InheritableThreadLocal - /// - /// - /// - public partial class InheritableThreadLocal : Java.Lang.ThreadLocal - { - const string _bridgeClassName = "java.lang.InheritableThreadLocal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InheritableThreadLocal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InheritableThreadLocal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InheritableThreadLocal - /// - /// - /// - /// - public partial class InheritableThreadLocal : Java.Lang.ThreadLocal - { - const string _bridgeClassName = "java.lang.InheritableThreadLocal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InheritableThreadLocal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InheritableThreadLocal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InstantiationError - /// - /// - /// - public partial class InstantiationError : Java.Lang.IncompatibleClassChangeError - { - const string _bridgeClassName = "java.lang.InstantiationError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InstantiationException - /// - /// - /// - public partial class InstantiationException : Java.Lang.ReflectiveOperationException - { - const string _bridgeClassName = "java.lang.InstantiationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Integer - /// - /// - /// - public partial class Integer : Java.Lang.Number - { - const string _bridgeClassName = "java.lang.Integer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Integer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Integer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InternalError - /// - /// - /// - public partial class InternalError : Java.Lang.VirtualMachineError - { - const string _bridgeClassName = "java.lang.InternalError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InterruptedException - /// - /// - /// - public partial class InterruptedException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.InterruptedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - - - - - #region LayerInstantiationException - /// - /// - /// - public partial class LayerInstantiationException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.LayerInstantiationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LinkageError - /// - /// - /// - public partial class LinkageError : Java.Lang.Error - { - const string _bridgeClassName = "java.lang.LinkageError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Long - /// - /// - /// - public partial class Long : Java.Lang.Number - { - const string _bridgeClassName = "java.lang.Long"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Long() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Long(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Math - /// - /// - /// - public partial class Math : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Math"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Math() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Math(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Module - /// - /// - /// - public partial class Module : Java.Lang.Reflect.AnnotatedElement - { - const string _bridgeClassName = "java.lang.Module"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Module() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Module(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModuleLayer - /// - /// - /// - public partial class ModuleLayer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ModuleLayer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModuleLayer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModuleLayer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Controller - /// - /// - /// - public partial class Controller : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ModuleLayer$Controller"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Controller() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Controller(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region NegativeArraySizeException - /// - /// - /// - public partial class NegativeArraySizeException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.NegativeArraySizeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoClassDefFoundError - /// - /// - /// - public partial class NoClassDefFoundError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.NoClassDefFoundError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoSuchFieldError - /// - /// - /// - public partial class NoSuchFieldError : Java.Lang.IncompatibleClassChangeError - { - const string _bridgeClassName = "java.lang.NoSuchFieldError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoSuchFieldException - /// - /// - /// - public partial class NoSuchFieldException : Java.Lang.ReflectiveOperationException - { - const string _bridgeClassName = "java.lang.NoSuchFieldException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoSuchMethodError - /// - /// - /// - public partial class NoSuchMethodError : Java.Lang.IncompatibleClassChangeError - { - const string _bridgeClassName = "java.lang.NoSuchMethodError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoSuchMethodException - /// - /// - /// - public partial class NoSuchMethodException : Java.Lang.ReflectiveOperationException - { - const string _bridgeClassName = "java.lang.NoSuchMethodException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NullPointerException - /// - /// - /// - public partial class NullPointerException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.NullPointerException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Number - /// - /// - /// - public partial class Number : Java.Io.Serializable - { - const string _bridgeClassName = "java.lang.Number"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Number class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Number() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Number class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Number(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumberFormatException - /// - /// - /// - public partial class NumberFormatException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.lang.NumberFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Object - /// - /// - /// - public partial class Object : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Object"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Object() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Object(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OutOfMemoryError - /// - /// - /// - public partial class OutOfMemoryError : Java.Lang.VirtualMachineError - { - const string _bridgeClassName = "java.lang.OutOfMemoryError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Override - /// - /// - /// - public partial class Override : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.Override"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Override class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Override() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Override class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Override(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Package - /// - /// - /// - public partial class Package : Java.Lang.Reflect.AnnotatedElement - { - const string _bridgeClassName = "java.lang.Package"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Package() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Package(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Process - /// - /// - /// - public partial class Process : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Process"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Process class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Process() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Process class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Process(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProcessBuilder - /// - /// - /// - public partial class ProcessBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ProcessBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ProcessBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ProcessBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Redirect - /// - /// - /// - public partial class Redirect : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ProcessBuilder$Redirect"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Redirect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Redirect() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Redirect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Redirect(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.ProcessBuilder$Redirect$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - - } - #endregion - - #region ProcessHandle - /// - /// - /// - public partial class ProcessHandle : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.ProcessHandle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProcessHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessHandle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProcessHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessHandle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Info - /// - /// - /// - public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ProcessHandle$Info"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Info class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Info() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Info class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Info(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Readable - /// - /// - /// - public partial class Readable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Readable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Readable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Readable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Readable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Readable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReflectiveOperationException - /// - /// - /// - public partial class ReflectiveOperationException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.ReflectiveOperationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Runnable - /// - /// - /// - public partial class Runnable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Runnable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Runnable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Runnable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Runnable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Runnable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Runtime - /// - /// - /// - public partial class Runtime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Runtime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Runtime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Runtime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Version - /// - /// - /// - public partial class Version : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.Runtime$Version"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Version() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Version(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region RuntimeException - /// - /// - /// - public partial class RuntimeException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.RuntimeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RuntimePermission - /// - /// - /// - public partial class RuntimePermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.lang.RuntimePermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RuntimePermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RuntimePermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SafeVarargs - /// - /// - /// - public partial class SafeVarargs : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.SafeVarargs"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SafeVarargs class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SafeVarargs() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SafeVarargs class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SafeVarargs(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecurityException - /// - /// - /// - public partial class SecurityException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.SecurityException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SecurityManager - /// - /// - /// - public partial class SecurityManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.SecurityManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecurityManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecurityManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Short - /// - /// - /// - public partial class Short : Java.Lang.Number - { - const string _bridgeClassName = "java.lang.Short"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Short() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Short(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StackOverflowError - /// - /// - /// - public partial class StackOverflowError : Java.Lang.VirtualMachineError - { - const string _bridgeClassName = "java.lang.StackOverflowError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StackTraceElement - /// - /// - /// - public partial class StackTraceElement : Java.Io.Serializable - { - const string _bridgeClassName = "java.lang.StackTraceElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StackTraceElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StackTraceElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StackWalker - /// - /// - /// - public partial class StackWalker : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.StackWalker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StackWalker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StackWalker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Option - /// - /// - /// - public partial class Option : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.StackWalker$Option"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Option() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Option(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region StackFrame - /// - /// - /// - public partial class StackFrame : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.StackWalker$StackFrame"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StackFrame class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StackFrame() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StackFrame class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StackFrame(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region StrictMath - /// - /// - /// - public partial class StrictMath : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.StrictMath"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StrictMath() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StrictMath(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region String - /// - /// - /// - public partial class String : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.String"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public String() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public String(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringBuffer - /// - /// - /// - public partial class StringBuffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.StringBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringBuilder - /// - /// - /// - public partial class StringBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.StringBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringIndexOutOfBoundsException - /// - /// - /// - public partial class StringIndexOutOfBoundsException : Java.Lang.IndexOutOfBoundsException - { - const string _bridgeClassName = "java.lang.StringIndexOutOfBoundsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SuppressWarnings - /// - /// - /// - public partial class SuppressWarnings : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.SuppressWarnings"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SuppressWarnings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SuppressWarnings() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SuppressWarnings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SuppressWarnings(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region System - /// - /// - /// - public partial class System : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.System"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public System() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public System(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Logger - /// - /// - /// - public partial class Logger : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.System$Logger"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Logger class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Logger() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Logger class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Logger(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - #region Level - /// - /// - /// - public partial class Level : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.System$Logger$Level"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Level() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Level(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region LoggerFinder - /// - /// - /// - public partial class LoggerFinder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.System$LoggerFinder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LoggerFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LoggerFinder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LoggerFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LoggerFinder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Thread - /// - /// - /// - public partial class Thread : Java.Lang.Runnable - { - const string _bridgeClassName = "java.lang.Thread"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Thread() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Thread(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region State - /// - /// - /// - public partial class State : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.Thread$State"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public State() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public State(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ThreadDeath - /// - /// - /// - public partial class ThreadDeath : Java.Lang.Error - { - const string _bridgeClassName = "java.lang.ThreadDeath"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ThreadGroup - /// - /// - /// - public partial class ThreadGroup : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ThreadGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThreadGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThreadGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadLocal - /// - /// - /// - public partial class ThreadLocal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ThreadLocal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThreadLocal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThreadLocal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadLocal - /// - /// - /// - /// - public partial class ThreadLocal : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.lang.ThreadLocal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThreadLocal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThreadLocal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeNotPresentException - /// - /// - /// - public partial class TypeNotPresentException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.TypeNotPresentException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownError - /// - /// - /// - public partial class UnknownError : Java.Lang.VirtualMachineError - { - const string _bridgeClassName = "java.lang.UnknownError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnsatisfiedLinkError - /// - /// - /// - public partial class UnsatisfiedLinkError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.UnsatisfiedLinkError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedClassVersionError - /// - /// - /// - public partial class UnsupportedClassVersionError : Java.Lang.ClassFormatError - { - const string _bridgeClassName = "java.lang.UnsupportedClassVersionError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedOperationException - /// - /// - /// - public partial class UnsupportedOperationException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.UnsupportedOperationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region VerifyError - /// - /// - /// - public partial class VerifyError : Java.Lang.LinkageError - { - const string _bridgeClassName = "java.lang.VerifyError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region VirtualMachineError - /// - /// - /// - public partial class VirtualMachineError : Java.Lang.Error - { - const string _bridgeClassName = "java.lang.VirtualMachineError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Void - /// - /// - /// - public partial class Void : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.Void"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Void() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Void(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/Annotation/AllPackageClasses.cs deleted file mode 100644 index ebcf19e88c..0000000000 --- a/src/net/JNet/Generated/Java/Lang/Annotation/AllPackageClasses.cs +++ /dev/null @@ -1,500 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.Annotation -{ - #region Annotation - /// - /// - /// - public partial class Annotation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.annotation.Annotation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Annotation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Annotation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Annotation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Annotation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotationFormatError - /// - /// - /// - public partial class AnnotationFormatError : Java.Lang.Error - { - const string _bridgeClassName = "java.lang.annotation.AnnotationFormatError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AnnotationTypeMismatchException - /// - /// - /// - public partial class AnnotationTypeMismatchException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.annotation.AnnotationTypeMismatchException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Documented - /// - /// - /// - public partial class Documented : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.annotation.Documented"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Documented class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Documented() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Documented class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Documented(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementType - /// - /// - /// - public partial class ElementType : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.annotation.ElementType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IncompleteAnnotationException - /// - /// - /// - public partial class IncompleteAnnotationException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.annotation.IncompleteAnnotationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Inherited - /// - /// - /// - public partial class Inherited : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.annotation.Inherited"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Inherited class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Inherited() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Inherited class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Inherited(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Native - /// - /// - /// - public partial class Native : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.annotation.Native"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Native class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Native() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Native class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Native(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Repeatable - /// - /// - /// - public partial class Repeatable : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.annotation.Repeatable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Repeatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Repeatable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Repeatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Repeatable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Retention - /// - /// - /// - public partial class Retention : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.annotation.Retention"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Retention class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Retention() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Retention class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Retention(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RetentionPolicy - /// - /// - /// - public partial class RetentionPolicy : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.annotation.RetentionPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RetentionPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RetentionPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Target - /// - /// - /// - public partial class Target : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "java.lang.annotation.Target"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Target class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Target() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Target class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Target(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Annotation.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Annotation.cs index a44648664a..c9c1694979 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Annotation.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Annotation.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Annotation declaration + /// + /// + /// + public partial class Annotation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.annotation.Annotation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Annotation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Annotation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Annotation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Annotation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotation /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IAnnotation } #endregion - #region Annotation + #region Annotation implementation public partial class Annotation : Java.Lang.Annotation.IAnnotation { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationFormatError.cs b/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationFormatError.cs index 9be63e3b0e..e281a68deb 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationFormatError.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationFormatError.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Annotation { - #region AnnotationFormatError + #region AnnotationFormatError declaration + /// + /// + /// + public partial class AnnotationFormatError : Java.Lang.Error + { + const string _bridgeClassName = "java.lang.annotation.AnnotationFormatError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AnnotationFormatError implementation public partial class AnnotationFormatError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationTypeMismatchException.cs b/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationTypeMismatchException.cs index 23b02e69c7..72758fc97f 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationTypeMismatchException.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/AnnotationTypeMismatchException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Annotation { - #region AnnotationTypeMismatchException + #region AnnotationTypeMismatchException declaration + /// + /// + /// + public partial class AnnotationTypeMismatchException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.annotation.AnnotationTypeMismatchException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AnnotationTypeMismatchException implementation public partial class AnnotationTypeMismatchException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Documented.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Documented.cs index 9c999a133b..baf758a886 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Documented.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Documented.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Documented declaration + /// + /// + /// + public partial class Documented : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.annotation.Documented"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Documented class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Documented() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Documented class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Documented(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumented /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IDocumented : Java.Lang.Annotation.IAnnotation } #endregion - #region Documented + #region Documented implementation public partial class Documented : Java.Lang.Annotation.IDocumented { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/ElementType.cs b/src/net/JNet/Generated/Java/Lang/Annotation/ElementType.cs index c35945ac31..a51509f670 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/ElementType.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/ElementType.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Annotation { - #region ElementType + #region ElementType declaration + /// + /// + /// + public partial class ElementType : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.annotation.ElementType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementType implementation public partial class ElementType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/IncompleteAnnotationException.cs b/src/net/JNet/Generated/Java/Lang/Annotation/IncompleteAnnotationException.cs index 0e276ce1a2..e109661631 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/IncompleteAnnotationException.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/IncompleteAnnotationException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Annotation { - #region IncompleteAnnotationException + #region IncompleteAnnotationException declaration + /// + /// + /// + public partial class IncompleteAnnotationException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.annotation.IncompleteAnnotationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IncompleteAnnotationException implementation public partial class IncompleteAnnotationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Inherited.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Inherited.cs index b646df8032..131a1bfc5a 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Inherited.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Inherited.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Inherited declaration + /// + /// + /// + public partial class Inherited : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.annotation.Inherited"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Inherited class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Inherited() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Inherited class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Inherited(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInherited /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IInherited : Java.Lang.Annotation.IAnnotation } #endregion - #region Inherited + #region Inherited implementation public partial class Inherited : Java.Lang.Annotation.IInherited { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Native.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Native.cs index f10e2043b3..ad16c4c970 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Native.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Native.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Native declaration + /// + /// + /// + public partial class Native : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.annotation.Native"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Native class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Native() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Native class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Native(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INative /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface INative : Java.Lang.Annotation.IAnnotation } #endregion - #region Native + #region Native implementation public partial class Native : Java.Lang.Annotation.INative { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Repeatable.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Repeatable.cs index 6b82f13de9..6e6f908a22 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Repeatable.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Repeatable.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Repeatable declaration + /// + /// + /// + public partial class Repeatable : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.annotation.Repeatable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Repeatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Repeatable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Repeatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Repeatable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRepeatable /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IRepeatable : Java.Lang.Annotation.IAnnotation } #endregion - #region Repeatable + #region Repeatable implementation public partial class Repeatable : Java.Lang.Annotation.IRepeatable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Retention.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Retention.cs index 98c87e99b6..9124bfcc18 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Retention.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Retention.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Retention declaration + /// + /// + /// + public partial class Retention : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.annotation.Retention"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Retention class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Retention() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Retention class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Retention(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRetention /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IRetention : Java.Lang.Annotation.IAnnotation } #endregion - #region Retention + #region Retention implementation public partial class Retention : Java.Lang.Annotation.IRetention { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/RetentionPolicy.cs b/src/net/JNet/Generated/Java/Lang/Annotation/RetentionPolicy.cs index 6f74754e65..75cca07a00 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/RetentionPolicy.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/RetentionPolicy.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Annotation { - #region RetentionPolicy + #region RetentionPolicy declaration + /// + /// + /// + public partial class RetentionPolicy : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.annotation.RetentionPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RetentionPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RetentionPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RetentionPolicy implementation public partial class RetentionPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Annotation/Target.cs b/src/net/JNet/Generated/Java/Lang/Annotation/Target.cs index 8d237ede96..60a0b3c0d6 100644 --- a/src/net/JNet/Generated/Java/Lang/Annotation/Target.cs +++ b/src/net/JNet/Generated/Java/Lang/Annotation/Target.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Annotation { + #region Target declaration + /// + /// + /// + public partial class Target : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.annotation.Target"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Target class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Target() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Target class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Target(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITarget /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ITarget : Java.Lang.Annotation.IAnnotation } #endregion - #region Target + #region Target implementation public partial class Target : Java.Lang.Annotation.ITarget { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Appendable.cs b/src/net/JNet/Generated/Java/Lang/Appendable.cs index f6a1a28689..3fc6b93de1 100644 --- a/src/net/JNet/Generated/Java/Lang/Appendable.cs +++ b/src/net/JNet/Generated/Java/Lang/Appendable.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region Appendable declaration + /// + /// + /// + public partial class Appendable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Appendable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Appendable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Appendable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Appendable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Appendable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAppendable /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IAppendable } #endregion - #region Appendable + #region Appendable implementation public partial class Appendable : Java.Lang.IAppendable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ArithmeticException.cs b/src/net/JNet/Generated/Java/Lang/ArithmeticException.cs index bec610ebac..14e95e8e44 100644 --- a/src/net/JNet/Generated/Java/Lang/ArithmeticException.cs +++ b/src/net/JNet/Generated/Java/Lang/ArithmeticException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ArithmeticException + #region ArithmeticException declaration + /// + /// + /// + public partial class ArithmeticException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.ArithmeticException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ArithmeticException implementation public partial class ArithmeticException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ArrayIndexOutOfBoundsException.cs b/src/net/JNet/Generated/Java/Lang/ArrayIndexOutOfBoundsException.cs index a800c3329a..e1c6b6ad84 100644 --- a/src/net/JNet/Generated/Java/Lang/ArrayIndexOutOfBoundsException.cs +++ b/src/net/JNet/Generated/Java/Lang/ArrayIndexOutOfBoundsException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ArrayIndexOutOfBoundsException + #region ArrayIndexOutOfBoundsException declaration + /// + /// + /// + public partial class ArrayIndexOutOfBoundsException : Java.Lang.IndexOutOfBoundsException + { + const string _bridgeClassName = "java.lang.ArrayIndexOutOfBoundsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ArrayIndexOutOfBoundsException implementation public partial class ArrayIndexOutOfBoundsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ArrayStoreException.cs b/src/net/JNet/Generated/Java/Lang/ArrayStoreException.cs index 99a9d911e5..a7a37fbfac 100644 --- a/src/net/JNet/Generated/Java/Lang/ArrayStoreException.cs +++ b/src/net/JNet/Generated/Java/Lang/ArrayStoreException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ArrayStoreException + #region ArrayStoreException declaration + /// + /// + /// + public partial class ArrayStoreException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.ArrayStoreException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ArrayStoreException implementation public partial class ArrayStoreException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/AssertionError.cs b/src/net/JNet/Generated/Java/Lang/AssertionError.cs index e58f9496a6..2f8d4f431c 100644 --- a/src/net/JNet/Generated/Java/Lang/AssertionError.cs +++ b/src/net/JNet/Generated/Java/Lang/AssertionError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region AssertionError + #region AssertionError declaration + /// + /// + /// + public partial class AssertionError : Java.Lang.Error + { + const string _bridgeClassName = "java.lang.AssertionError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AssertionError implementation public partial class AssertionError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/AutoCloseable.cs b/src/net/JNet/Generated/Java/Lang/AutoCloseable.cs index 1bfbb6e492..bebf99e2dd 100644 --- a/src/net/JNet/Generated/Java/Lang/AutoCloseable.cs +++ b/src/net/JNet/Generated/Java/Lang/AutoCloseable.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region AutoCloseable declaration + /// + /// + /// + public partial class AutoCloseable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.AutoCloseable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AutoCloseable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AutoCloseable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AutoCloseable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AutoCloseable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAutoCloseable /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IAutoCloseable } #endregion - #region AutoCloseable + #region AutoCloseable implementation public partial class AutoCloseable : Java.Lang.IAutoCloseable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Boolean.cs b/src/net/JNet/Generated/Java/Lang/Boolean.cs index 555ba1ea80..7c41e7fffa 100644 --- a/src/net/JNet/Generated/Java/Lang/Boolean.cs +++ b/src/net/JNet/Generated/Java/Lang/Boolean.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Boolean + #region Boolean declaration + /// + /// + /// + public partial class Boolean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Boolean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Boolean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Boolean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Boolean implementation public partial class Boolean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/BootstrapMethodError.cs b/src/net/JNet/Generated/Java/Lang/BootstrapMethodError.cs index 01b391eb7f..c0caa98728 100644 --- a/src/net/JNet/Generated/Java/Lang/BootstrapMethodError.cs +++ b/src/net/JNet/Generated/Java/Lang/BootstrapMethodError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region BootstrapMethodError + #region BootstrapMethodError declaration + /// + /// + /// + public partial class BootstrapMethodError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.BootstrapMethodError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BootstrapMethodError implementation public partial class BootstrapMethodError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Byte.cs b/src/net/JNet/Generated/Java/Lang/Byte.cs index 0f5b06bbfb..f6bd80edfd 100644 --- a/src/net/JNet/Generated/Java/Lang/Byte.cs +++ b/src/net/JNet/Generated/Java/Lang/Byte.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Byte + #region Byte declaration + /// + /// + /// + public partial class Byte : Java.Lang.Number + { + const string _bridgeClassName = "java.lang.Byte"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Byte() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Byte(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Byte implementation public partial class Byte { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/CharSequence.cs b/src/net/JNet/Generated/Java/Lang/CharSequence.cs index d6f34267b7..5b9839c5e4 100644 --- a/src/net/JNet/Generated/Java/Lang/CharSequence.cs +++ b/src/net/JNet/Generated/Java/Lang/CharSequence.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region CharSequence declaration + /// + /// + /// + public partial class CharSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.CharSequence"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharSequence class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharSequence() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharSequence class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharSequence(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICharSequence /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface ICharSequence } #endregion - #region CharSequence + #region CharSequence implementation public partial class CharSequence : Java.Lang.ICharSequence { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Character.cs b/src/net/JNet/Generated/Java/Lang/Character.cs index c4682ef611..cf0d87f0dd 100644 --- a/src/net/JNet/Generated/Java/Lang/Character.cs +++ b/src/net/JNet/Generated/Java/Lang/Character.cs @@ -25,7 +25,187 @@ namespace Java.Lang { - #region Character + #region Character declaration + /// + /// + /// + public partial class Character : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Character"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Character() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Character(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Subset declaration + /// + /// + /// + public partial class Subset : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Character$Subset"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Subset() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Subset(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region UnicodeBlock declaration + /// + /// + /// + public partial class UnicodeBlock : Java.Lang.Character.Subset + { + const string _bridgeClassName = "java.lang.Character$UnicodeBlock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnicodeBlock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnicodeBlock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region UnicodeScript declaration + /// + /// + /// + public partial class UnicodeScript : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.Character$UnicodeScript"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnicodeScript() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnicodeScript(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Character implementation public partial class Character { #region Constructors @@ -1249,7 +1429,7 @@ public int CompareTo(object arg0) #endregion #region Nested classes - #region Subset + #region Subset implementation public partial class Subset { #region Constructors @@ -1280,7 +1460,7 @@ public partial class Subset } #endregion - #region UnicodeBlock + #region UnicodeBlock implementation public partial class UnicodeBlock { #region Constructors @@ -3018,7 +3198,7 @@ public static Java.Lang.Character.UnicodeBlock Of(int arg0) } #endregion - #region UnicodeScript + #region UnicodeScript implementation public partial class UnicodeScript { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Class.cs b/src/net/JNet/Generated/Java/Lang/Class.cs index 0d59e5618d..bcf7d74f49 100644 --- a/src/net/JNet/Generated/Java/Lang/Class.cs +++ b/src/net/JNet/Generated/Java/Lang/Class.cs @@ -25,7 +25,98 @@ namespace Java.Lang { - #region Class + #region Class declaration + /// + /// + /// + public partial class Class : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Class"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Class() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Class(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Class declaration + /// + /// + /// + /// + public partial class Class : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.lang.Class"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Class() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Class(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Class implementation public partial class Class { #region Constructors @@ -620,7 +711,7 @@ public object Cast(object arg0) } #endregion - #region Class + #region Class implementation public partial class Class { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ClassCastException.cs b/src/net/JNet/Generated/Java/Lang/ClassCastException.cs index 3c0edc591e..074daab42f 100644 --- a/src/net/JNet/Generated/Java/Lang/ClassCastException.cs +++ b/src/net/JNet/Generated/Java/Lang/ClassCastException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ClassCastException + #region ClassCastException declaration + /// + /// + /// + public partial class ClassCastException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.ClassCastException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClassCastException implementation public partial class ClassCastException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ClassCircularityError.cs b/src/net/JNet/Generated/Java/Lang/ClassCircularityError.cs index b33ea7c6bf..18a41f6ee0 100644 --- a/src/net/JNet/Generated/Java/Lang/ClassCircularityError.cs +++ b/src/net/JNet/Generated/Java/Lang/ClassCircularityError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ClassCircularityError + #region ClassCircularityError declaration + /// + /// + /// + public partial class ClassCircularityError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.ClassCircularityError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClassCircularityError implementation public partial class ClassCircularityError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ClassFormatError.cs b/src/net/JNet/Generated/Java/Lang/ClassFormatError.cs index e4d5499cfb..68a469a97a 100644 --- a/src/net/JNet/Generated/Java/Lang/ClassFormatError.cs +++ b/src/net/JNet/Generated/Java/Lang/ClassFormatError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ClassFormatError + #region ClassFormatError declaration + /// + /// + /// + public partial class ClassFormatError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.ClassFormatError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClassFormatError implementation public partial class ClassFormatError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ClassLoader.cs b/src/net/JNet/Generated/Java/Lang/ClassLoader.cs index f69c06c7ac..30831ce465 100644 --- a/src/net/JNet/Generated/Java/Lang/ClassLoader.cs +++ b/src/net/JNet/Generated/Java/Lang/ClassLoader.cs @@ -25,7 +25,54 @@ namespace Java.Lang { - #region ClassLoader + #region ClassLoader declaration + /// + /// + /// + public partial class ClassLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ClassLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ClassLoader implementation public partial class ClassLoader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ClassNotFoundException.cs b/src/net/JNet/Generated/Java/Lang/ClassNotFoundException.cs index 947c9f27eb..e1f0d93389 100644 --- a/src/net/JNet/Generated/Java/Lang/ClassNotFoundException.cs +++ b/src/net/JNet/Generated/Java/Lang/ClassNotFoundException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ClassNotFoundException + #region ClassNotFoundException declaration + /// + /// + /// + public partial class ClassNotFoundException : Java.Lang.ReflectiveOperationException + { + const string _bridgeClassName = "java.lang.ClassNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClassNotFoundException implementation public partial class ClassNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ClassValue.cs b/src/net/JNet/Generated/Java/Lang/ClassValue.cs index e337bc0700..7a2fd39263 100644 --- a/src/net/JNet/Generated/Java/Lang/ClassValue.cs +++ b/src/net/JNet/Generated/Java/Lang/ClassValue.cs @@ -25,7 +25,102 @@ namespace Java.Lang { - #region ClassValue + #region ClassValue declaration + /// + /// + /// + public partial class ClassValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ClassValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ClassValue declaration + /// + /// + /// + /// + public partial class ClassValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.lang.ClassValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClassValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ClassValue implementation public partial class ClassValue { #region Constructors @@ -73,7 +168,7 @@ public void Remove(Java.Lang.Class arg0) } #endregion - #region ClassValue + #region ClassValue implementation public partial class ClassValue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/CloneNotSupportedException.cs b/src/net/JNet/Generated/Java/Lang/CloneNotSupportedException.cs index e39dd09f79..15de89aad1 100644 --- a/src/net/JNet/Generated/Java/Lang/CloneNotSupportedException.cs +++ b/src/net/JNet/Generated/Java/Lang/CloneNotSupportedException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region CloneNotSupportedException + #region CloneNotSupportedException declaration + /// + /// + /// + public partial class CloneNotSupportedException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.CloneNotSupportedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CloneNotSupportedException implementation public partial class CloneNotSupportedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Cloneable.cs b/src/net/JNet/Generated/Java/Lang/Cloneable.cs index e2ce68f8be..2aed7189f4 100644 --- a/src/net/JNet/Generated/Java/Lang/Cloneable.cs +++ b/src/net/JNet/Generated/Java/Lang/Cloneable.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region Cloneable declaration + /// + /// + /// + public partial class Cloneable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Cloneable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Cloneable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Cloneable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Cloneable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Cloneable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICloneable /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICloneable } #endregion - #region Cloneable + #region Cloneable implementation public partial class Cloneable : Java.Lang.ICloneable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Comparable.cs b/src/net/JNet/Generated/Java/Lang/Comparable.cs index 6645a5bc56..5fea4be221 100644 --- a/src/net/JNet/Generated/Java/Lang/Comparable.cs +++ b/src/net/JNet/Generated/Java/Lang/Comparable.cs @@ -25,7 +25,102 @@ namespace Java.Lang { - #region Comparable + #region Comparable declaration + /// + /// + /// + public partial class Comparable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Comparable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comparable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comparable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Comparable declaration + /// + /// + /// + /// + public partial class Comparable : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.lang.Comparable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comparable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Comparable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comparable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Comparable implementation public partial class Comparable { #region Constructors @@ -89,7 +184,7 @@ public partial interface IComparable } #endregion - #region Comparable + #region Comparable implementation public partial class Comparable : Java.Lang.IComparable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Deprecated.cs b/src/net/JNet/Generated/Java/Lang/Deprecated.cs index 0d469c2ac6..9a9953bf17 100644 --- a/src/net/JNet/Generated/Java/Lang/Deprecated.cs +++ b/src/net/JNet/Generated/Java/Lang/Deprecated.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region Deprecated declaration + /// + /// + /// + public partial class Deprecated : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.Deprecated"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Deprecated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Deprecated() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Deprecated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Deprecated(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDeprecated /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IDeprecated : Java.Lang.Annotation.IAnnotation } #endregion - #region Deprecated + #region Deprecated implementation public partial class Deprecated : Java.Lang.IDeprecated { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Double.cs b/src/net/JNet/Generated/Java/Lang/Double.cs index d6084e2476..8518ee157c 100644 --- a/src/net/JNet/Generated/Java/Lang/Double.cs +++ b/src/net/JNet/Generated/Java/Lang/Double.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Double + #region Double declaration + /// + /// + /// + public partial class Double : Java.Lang.Number + { + const string _bridgeClassName = "java.lang.Double"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Double() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Double(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Double implementation public partial class Double { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Enum.cs b/src/net/JNet/Generated/Java/Lang/Enum.cs index bcda813597..6d96e68b67 100644 --- a/src/net/JNet/Generated/Java/Lang/Enum.cs +++ b/src/net/JNet/Generated/Java/Lang/Enum.cs @@ -25,7 +25,102 @@ namespace Java.Lang { - #region Enum + #region Enum declaration + /// + /// + /// + public partial class Enum : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Enum"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enum() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enum(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Enum declaration + /// + /// + /// + /// + public partial class Enum : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where E : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.Enum"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enum() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Enum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enum(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Enum implementation public partial class Enum { #region Constructors @@ -115,7 +210,7 @@ public int CompareTo(object arg0) } #endregion - #region Enum + #region Enum implementation public partial class Enum { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/EnumConstantNotPresentException.cs b/src/net/JNet/Generated/Java/Lang/EnumConstantNotPresentException.cs index 1949cb5d3a..bee0effdb7 100644 --- a/src/net/JNet/Generated/Java/Lang/EnumConstantNotPresentException.cs +++ b/src/net/JNet/Generated/Java/Lang/EnumConstantNotPresentException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region EnumConstantNotPresentException + #region EnumConstantNotPresentException declaration + /// + /// + /// + public partial class EnumConstantNotPresentException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.EnumConstantNotPresentException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region EnumConstantNotPresentException implementation public partial class EnumConstantNotPresentException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Error.cs b/src/net/JNet/Generated/Java/Lang/Error.cs index 1df2e02821..1dcc6a6820 100644 --- a/src/net/JNet/Generated/Java/Lang/Error.cs +++ b/src/net/JNet/Generated/Java/Lang/Error.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region Error + #region Error declaration + /// + /// + /// + public partial class Error : Java.Lang.Throwable + { + const string _bridgeClassName = "java.lang.Error"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region Error implementation public partial class Error { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Exception.cs b/src/net/JNet/Generated/Java/Lang/Exception.cs index 093af3e065..5e3b8faca7 100644 --- a/src/net/JNet/Generated/Java/Lang/Exception.cs +++ b/src/net/JNet/Generated/Java/Lang/Exception.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region Exception + #region Exception declaration + /// + /// + /// + public partial class Exception : Java.Lang.Throwable + { + const string _bridgeClassName = "java.lang.Exception"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region Exception implementation public partial class Exception { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ExceptionInInitializerError.cs b/src/net/JNet/Generated/Java/Lang/ExceptionInInitializerError.cs index 440edea632..691d20c30f 100644 --- a/src/net/JNet/Generated/Java/Lang/ExceptionInInitializerError.cs +++ b/src/net/JNet/Generated/Java/Lang/ExceptionInInitializerError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ExceptionInInitializerError + #region ExceptionInInitializerError declaration + /// + /// + /// + public partial class ExceptionInInitializerError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.ExceptionInInitializerError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ExceptionInInitializerError implementation public partial class ExceptionInInitializerError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Float.cs b/src/net/JNet/Generated/Java/Lang/Float.cs index 35f23e3359..59eaeabe9a 100644 --- a/src/net/JNet/Generated/Java/Lang/Float.cs +++ b/src/net/JNet/Generated/Java/Lang/Float.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Float + #region Float declaration + /// + /// + /// + public partial class Float : Java.Lang.Number + { + const string _bridgeClassName = "java.lang.Float"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Float() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Float(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Float implementation public partial class Float { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/FunctionalInterface.cs b/src/net/JNet/Generated/Java/Lang/FunctionalInterface.cs index 1a4fd1c9ad..7d84c0e043 100644 --- a/src/net/JNet/Generated/Java/Lang/FunctionalInterface.cs +++ b/src/net/JNet/Generated/Java/Lang/FunctionalInterface.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region FunctionalInterface declaration + /// + /// + /// + public partial class FunctionalInterface : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.FunctionalInterface"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FunctionalInterface class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FunctionalInterface() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FunctionalInterface class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FunctionalInterface(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFunctionalInterface /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IFunctionalInterface : Java.Lang.Annotation.IAnnotation } #endregion - #region FunctionalInterface + #region FunctionalInterface implementation public partial class FunctionalInterface : Java.Lang.IFunctionalInterface { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalAccessError.cs b/src/net/JNet/Generated/Java/Lang/IllegalAccessError.cs index 900a4b6cae..b7f6366f3a 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalAccessError.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalAccessError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalAccessError + #region IllegalAccessError declaration + /// + /// + /// + public partial class IllegalAccessError : Java.Lang.IncompatibleClassChangeError + { + const string _bridgeClassName = "java.lang.IllegalAccessError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalAccessError implementation public partial class IllegalAccessError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalAccessException.cs b/src/net/JNet/Generated/Java/Lang/IllegalAccessException.cs index d989e17073..32c7891aba 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalAccessException.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalAccessException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalAccessException + #region IllegalAccessException declaration + /// + /// + /// + public partial class IllegalAccessException : Java.Lang.ReflectiveOperationException + { + const string _bridgeClassName = "java.lang.IllegalAccessException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalAccessException implementation public partial class IllegalAccessException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalArgumentException.cs b/src/net/JNet/Generated/Java/Lang/IllegalArgumentException.cs index ceb9087bd3..401ff4c672 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalArgumentException.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalArgumentException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalArgumentException + #region IllegalArgumentException declaration + /// + /// + /// + public partial class IllegalArgumentException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.IllegalArgumentException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalArgumentException implementation public partial class IllegalArgumentException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalCallerException.cs b/src/net/JNet/Generated/Java/Lang/IllegalCallerException.cs index f3182cb1c7..d324883bae 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalCallerException.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalCallerException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalCallerException + #region IllegalCallerException declaration + /// + /// + /// + public partial class IllegalCallerException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.IllegalCallerException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalCallerException implementation public partial class IllegalCallerException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalMonitorStateException.cs b/src/net/JNet/Generated/Java/Lang/IllegalMonitorStateException.cs index 6f1be03fd1..fde618899a 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalMonitorStateException.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalMonitorStateException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalMonitorStateException + #region IllegalMonitorStateException declaration + /// + /// + /// + public partial class IllegalMonitorStateException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.IllegalMonitorStateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalMonitorStateException implementation public partial class IllegalMonitorStateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalStateException.cs b/src/net/JNet/Generated/Java/Lang/IllegalStateException.cs index ad3bb7551e..09a5e07639 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalStateException.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalStateException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalStateException + #region IllegalStateException declaration + /// + /// + /// + public partial class IllegalStateException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.IllegalStateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalStateException implementation public partial class IllegalStateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IllegalThreadStateException.cs b/src/net/JNet/Generated/Java/Lang/IllegalThreadStateException.cs index 6fbafc10ce..ccb9b6c5ac 100644 --- a/src/net/JNet/Generated/Java/Lang/IllegalThreadStateException.cs +++ b/src/net/JNet/Generated/Java/Lang/IllegalThreadStateException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IllegalThreadStateException + #region IllegalThreadStateException declaration + /// + /// + /// + public partial class IllegalThreadStateException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.lang.IllegalThreadStateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalThreadStateException implementation public partial class IllegalThreadStateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IncompatibleClassChangeError.cs b/src/net/JNet/Generated/Java/Lang/IncompatibleClassChangeError.cs index f5349f5ec7..4502ff2a0c 100644 --- a/src/net/JNet/Generated/Java/Lang/IncompatibleClassChangeError.cs +++ b/src/net/JNet/Generated/Java/Lang/IncompatibleClassChangeError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IncompatibleClassChangeError + #region IncompatibleClassChangeError declaration + /// + /// + /// + public partial class IncompatibleClassChangeError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.IncompatibleClassChangeError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IncompatibleClassChangeError implementation public partial class IncompatibleClassChangeError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/IndexOutOfBoundsException.cs b/src/net/JNet/Generated/Java/Lang/IndexOutOfBoundsException.cs index 3c6e94b4dd..7afc72170e 100644 --- a/src/net/JNet/Generated/Java/Lang/IndexOutOfBoundsException.cs +++ b/src/net/JNet/Generated/Java/Lang/IndexOutOfBoundsException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region IndexOutOfBoundsException + #region IndexOutOfBoundsException declaration + /// + /// + /// + public partial class IndexOutOfBoundsException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.IndexOutOfBoundsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IndexOutOfBoundsException implementation public partial class IndexOutOfBoundsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/InheritableThreadLocal.cs b/src/net/JNet/Generated/Java/Lang/InheritableThreadLocal.cs index 43bfba57ae..6da73dc897 100644 --- a/src/net/JNet/Generated/Java/Lang/InheritableThreadLocal.cs +++ b/src/net/JNet/Generated/Java/Lang/InheritableThreadLocal.cs @@ -25,7 +25,98 @@ namespace Java.Lang { - #region InheritableThreadLocal + #region InheritableThreadLocal declaration + /// + /// + /// + public partial class InheritableThreadLocal : Java.Lang.ThreadLocal + { + const string _bridgeClassName = "java.lang.InheritableThreadLocal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InheritableThreadLocal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InheritableThreadLocal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InheritableThreadLocal declaration + /// + /// + /// + /// + public partial class InheritableThreadLocal : Java.Lang.ThreadLocal + { + const string _bridgeClassName = "java.lang.InheritableThreadLocal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InheritableThreadLocal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InheritableThreadLocal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InheritableThreadLocal implementation public partial class InheritableThreadLocal { #region Constructors @@ -56,7 +147,7 @@ public partial class InheritableThreadLocal } #endregion - #region InheritableThreadLocal + #region InheritableThreadLocal implementation public partial class InheritableThreadLocal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/InstantiationError.cs b/src/net/JNet/Generated/Java/Lang/InstantiationError.cs index e286709ce4..d39d64806b 100644 --- a/src/net/JNet/Generated/Java/Lang/InstantiationError.cs +++ b/src/net/JNet/Generated/Java/Lang/InstantiationError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region InstantiationError + #region InstantiationError declaration + /// + /// + /// + public partial class InstantiationError : Java.Lang.IncompatibleClassChangeError + { + const string _bridgeClassName = "java.lang.InstantiationError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InstantiationError implementation public partial class InstantiationError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/InstantiationException.cs b/src/net/JNet/Generated/Java/Lang/InstantiationException.cs index 658cef7874..40e3cbeb6e 100644 --- a/src/net/JNet/Generated/Java/Lang/InstantiationException.cs +++ b/src/net/JNet/Generated/Java/Lang/InstantiationException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region InstantiationException + #region InstantiationException declaration + /// + /// + /// + public partial class InstantiationException : Java.Lang.ReflectiveOperationException + { + const string _bridgeClassName = "java.lang.InstantiationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InstantiationException implementation public partial class InstantiationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/Instrument/AllPackageClasses.cs deleted file mode 100644 index 4e6e74670a..0000000000 --- a/src/net/JNet/Generated/Java/Lang/Instrument/AllPackageClasses.cs +++ /dev/null @@ -1,220 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.Instrument -{ - #region ClassDefinition - /// - /// - /// - public partial class ClassDefinition : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.instrument.ClassDefinition"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ClassDefinition() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ClassDefinition(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClassFileTransformer - /// - /// - /// - public partial class ClassFileTransformer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.instrument.ClassFileTransformer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClassFileTransformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassFileTransformer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClassFileTransformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassFileTransformer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalClassFormatException - /// - /// - /// - public partial class IllegalClassFormatException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.instrument.IllegalClassFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Instrumentation - /// - /// - /// - public partial class Instrumentation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.instrument.Instrumentation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Instrumentation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Instrumentation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Instrumentation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Instrumentation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnmodifiableClassException - /// - /// - /// - public partial class UnmodifiableClassException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.instrument.UnmodifiableClassException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnmodifiableModuleException - /// - /// - /// - public partial class UnmodifiableModuleException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.instrument.UnmodifiableModuleException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/ClassDefinition.cs b/src/net/JNet/Generated/Java/Lang/Instrument/ClassDefinition.cs index 045bfcbe2b..1395d404f4 100644 --- a/src/net/JNet/Generated/Java/Lang/Instrument/ClassDefinition.cs +++ b/src/net/JNet/Generated/Java/Lang/Instrument/ClassDefinition.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Instrument { - #region ClassDefinition + #region ClassDefinition declaration + /// + /// + /// + public partial class ClassDefinition : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.instrument.ClassDefinition"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ClassDefinition() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ClassDefinition(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ClassDefinition implementation public partial class ClassDefinition { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/ClassFileTransformer.cs b/src/net/JNet/Generated/Java/Lang/Instrument/ClassFileTransformer.cs index 12c9499ad9..7fce0c0128 100644 --- a/src/net/JNet/Generated/Java/Lang/Instrument/ClassFileTransformer.cs +++ b/src/net/JNet/Generated/Java/Lang/Instrument/ClassFileTransformer.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Instrument { + #region ClassFileTransformer declaration + /// + /// + /// + public partial class ClassFileTransformer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.instrument.ClassFileTransformer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClassFileTransformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassFileTransformer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClassFileTransformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassFileTransformer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IClassFileTransformer /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IClassFileTransformer } #endregion - #region ClassFileTransformer + #region ClassFileTransformer implementation public partial class ClassFileTransformer : Java.Lang.Instrument.IClassFileTransformer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/IllegalClassFormatException.cs b/src/net/JNet/Generated/Java/Lang/Instrument/IllegalClassFormatException.cs index cae43c51df..762089d222 100644 --- a/src/net/JNet/Generated/Java/Lang/Instrument/IllegalClassFormatException.cs +++ b/src/net/JNet/Generated/Java/Lang/Instrument/IllegalClassFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Instrument { - #region IllegalClassFormatException + #region IllegalClassFormatException declaration + /// + /// + /// + public partial class IllegalClassFormatException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.instrument.IllegalClassFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalClassFormatException implementation public partial class IllegalClassFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/Instrumentation.cs b/src/net/JNet/Generated/Java/Lang/Instrument/Instrumentation.cs index 190c1ee1ba..d94c51c57a 100644 --- a/src/net/JNet/Generated/Java/Lang/Instrument/Instrumentation.cs +++ b/src/net/JNet/Generated/Java/Lang/Instrument/Instrumentation.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Instrument { + #region Instrumentation declaration + /// + /// + /// + public partial class Instrumentation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.instrument.Instrumentation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Instrumentation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Instrumentation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Instrumentation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Instrumentation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInstrumentation /// /// .NET interface for TO BE DEFINED FROM USER @@ -142,7 +189,7 @@ public partial interface IInstrumentation } #endregion - #region Instrumentation + #region Instrumentation implementation public partial class Instrumentation : Java.Lang.Instrument.IInstrumentation { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableClassException.cs b/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableClassException.cs index 13a6a78e49..4aba9ab47b 100644 --- a/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableClassException.cs +++ b/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableClassException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Instrument { - #region UnmodifiableClassException + #region UnmodifiableClassException declaration + /// + /// + /// + public partial class UnmodifiableClassException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.instrument.UnmodifiableClassException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnmodifiableClassException implementation public partial class UnmodifiableClassException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableModuleException.cs b/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableModuleException.cs index ef68158efe..8e7c86b331 100644 --- a/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableModuleException.cs +++ b/src/net/JNet/Generated/Java/Lang/Instrument/UnmodifiableModuleException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Instrument { - #region UnmodifiableModuleException + #region UnmodifiableModuleException declaration + /// + /// + /// + public partial class UnmodifiableModuleException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.instrument.UnmodifiableModuleException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnmodifiableModuleException implementation public partial class UnmodifiableModuleException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Integer.cs b/src/net/JNet/Generated/Java/Lang/Integer.cs index 5208ef69e6..5e0aff0980 100644 --- a/src/net/JNet/Generated/Java/Lang/Integer.cs +++ b/src/net/JNet/Generated/Java/Lang/Integer.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Integer + #region Integer declaration + /// + /// + /// + public partial class Integer : Java.Lang.Number + { + const string _bridgeClassName = "java.lang.Integer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Integer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Integer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Integer implementation public partial class Integer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/InternalError.cs b/src/net/JNet/Generated/Java/Lang/InternalError.cs index 44aa73b206..6111d69b46 100644 --- a/src/net/JNet/Generated/Java/Lang/InternalError.cs +++ b/src/net/JNet/Generated/Java/Lang/InternalError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region InternalError + #region InternalError declaration + /// + /// + /// + public partial class InternalError : Java.Lang.VirtualMachineError + { + const string _bridgeClassName = "java.lang.InternalError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InternalError implementation public partial class InternalError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/InterruptedException.cs b/src/net/JNet/Generated/Java/Lang/InterruptedException.cs index b8891bc565..c4af862dc6 100644 --- a/src/net/JNet/Generated/Java/Lang/InterruptedException.cs +++ b/src/net/JNet/Generated/Java/Lang/InterruptedException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region InterruptedException + #region InterruptedException declaration + /// + /// + /// + public partial class InterruptedException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.InterruptedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InterruptedException implementation public partial class InterruptedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/Invoke/AllPackageClasses.cs deleted file mode 100644 index 732b0af710..0000000000 --- a/src/net/JNet/Generated/Java/Lang/Invoke/AllPackageClasses.cs +++ /dev/null @@ -1,854 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.Invoke -{ - #region CallSite - /// - /// - /// - public partial class CallSite : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.CallSite"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CallSite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CallSite() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CallSite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CallSite(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConstantBootstraps - /// - /// - /// - public partial class ConstantBootstraps : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.ConstantBootstraps"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConstantBootstraps() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConstantBootstraps(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConstantCallSite - /// - /// - /// - public partial class ConstantCallSite : Java.Lang.Invoke.CallSite - { - const string _bridgeClassName = "java.lang.invoke.ConstantCallSite"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConstantCallSite() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConstantCallSite(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LambdaConversionException - /// - /// - /// - public partial class LambdaConversionException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.invoke.LambdaConversionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LambdaMetafactory - /// - /// - /// - public partial class LambdaMetafactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.LambdaMetafactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LambdaMetafactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LambdaMetafactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MethodHandle - /// - /// - /// - public partial class MethodHandle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.MethodHandle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MethodHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MethodHandle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MethodHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MethodHandle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MethodHandleInfo - /// - /// - /// - public partial class MethodHandleInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.MethodHandleInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MethodHandleInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MethodHandleInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MethodHandleInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MethodHandleInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MethodHandleProxies - /// - /// - /// - public partial class MethodHandleProxies : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.MethodHandleProxies"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MethodHandleProxies() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MethodHandleProxies(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MethodHandles - /// - /// - /// - public partial class MethodHandles : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.MethodHandles"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MethodHandles() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MethodHandles(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Lookup - /// - /// - /// - public partial class Lookup : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.MethodHandles$Lookup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Lookup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Lookup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MethodType - /// - /// - /// - public partial class MethodType : Java.Io.Serializable - { - const string _bridgeClassName = "java.lang.invoke.MethodType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MethodType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MethodType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MutableCallSite - /// - /// - /// - public partial class MutableCallSite : Java.Lang.Invoke.CallSite - { - const string _bridgeClassName = "java.lang.invoke.MutableCallSite"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MutableCallSite() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MutableCallSite(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerializedLambda - /// - /// - /// - public partial class SerializedLambda : Java.Io.Serializable - { - const string _bridgeClassName = "java.lang.invoke.SerializedLambda"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerializedLambda() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerializedLambda(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringConcatException - /// - /// - /// - public partial class StringConcatException : Java.Lang.Exception - { - const string _bridgeClassName = "java.lang.invoke.StringConcatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StringConcatFactory - /// - /// - /// - public partial class StringConcatFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.StringConcatFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringConcatFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringConcatFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SwitchPoint - /// - /// - /// - public partial class SwitchPoint : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.SwitchPoint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SwitchPoint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SwitchPoint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VarHandle - /// - /// - /// - public partial class VarHandle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.invoke.VarHandle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("VarHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public VarHandle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("VarHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public VarHandle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AccessMode - /// - /// - /// - public partial class AccessMode : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.invoke.VarHandle$AccessMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region VolatileCallSite - /// - /// - /// - public partial class VolatileCallSite : Java.Lang.Invoke.CallSite - { - const string _bridgeClassName = "java.lang.invoke.VolatileCallSite"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VolatileCallSite() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public VolatileCallSite(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WrongMethodTypeException - /// - /// - /// - public partial class WrongMethodTypeException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.invoke.WrongMethodTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/CallSite.cs b/src/net/JNet/Generated/Java/Lang/Invoke/CallSite.cs index abbf41a7ca..cc4ab55226 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/CallSite.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/CallSite.cs @@ -25,7 +25,54 @@ namespace Java.Lang.Invoke { - #region CallSite + #region CallSite declaration + /// + /// + /// + public partial class CallSite : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.CallSite"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CallSite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CallSite() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CallSite class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CallSite(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CallSite implementation public partial class CallSite { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/ConstantBootstraps.cs b/src/net/JNet/Generated/Java/Lang/Invoke/ConstantBootstraps.cs index 7acdbc8261..845a0ef846 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/ConstantBootstraps.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/ConstantBootstraps.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region ConstantBootstraps + #region ConstantBootstraps declaration + /// + /// + /// + public partial class ConstantBootstraps : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.ConstantBootstraps"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConstantBootstraps() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConstantBootstraps(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConstantBootstraps implementation public partial class ConstantBootstraps { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/ConstantCallSite.cs b/src/net/JNet/Generated/Java/Lang/Invoke/ConstantCallSite.cs index 996166434f..4aca8ee519 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/ConstantCallSite.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/ConstantCallSite.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region ConstantCallSite + #region ConstantCallSite declaration + /// + /// + /// + public partial class ConstantCallSite : Java.Lang.Invoke.CallSite + { + const string _bridgeClassName = "java.lang.invoke.ConstantCallSite"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConstantCallSite() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConstantCallSite(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConstantCallSite implementation public partial class ConstantCallSite { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/LambdaConversionException.cs b/src/net/JNet/Generated/Java/Lang/Invoke/LambdaConversionException.cs index b3af788387..e32bfa094b 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/LambdaConversionException.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/LambdaConversionException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Invoke { - #region LambdaConversionException + #region LambdaConversionException declaration + /// + /// + /// + public partial class LambdaConversionException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.invoke.LambdaConversionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LambdaConversionException implementation public partial class LambdaConversionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/LambdaMetafactory.cs b/src/net/JNet/Generated/Java/Lang/Invoke/LambdaMetafactory.cs index e65ff43dca..b44b2faff6 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/LambdaMetafactory.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/LambdaMetafactory.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region LambdaMetafactory + #region LambdaMetafactory declaration + /// + /// + /// + public partial class LambdaMetafactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.LambdaMetafactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LambdaMetafactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LambdaMetafactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LambdaMetafactory implementation public partial class LambdaMetafactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandle.cs b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandle.cs index f1f5d82be3..888a8d8d09 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandle.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandle.cs @@ -25,7 +25,54 @@ namespace Java.Lang.Invoke { - #region MethodHandle + #region MethodHandle declaration + /// + /// + /// + public partial class MethodHandle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.MethodHandle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MethodHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MethodHandle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MethodHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MethodHandle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MethodHandle implementation public partial class MethodHandle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleInfo.cs b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleInfo.cs index e2718ec23c..d1f9bbfa14 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleInfo.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleInfo.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Invoke { + #region MethodHandleInfo declaration + /// + /// + /// + public partial class MethodHandleInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.MethodHandleInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MethodHandleInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MethodHandleInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MethodHandleInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MethodHandleInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMethodHandleInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -76,7 +123,7 @@ public partial interface IMethodHandleInfo } #endregion - #region MethodHandleInfo + #region MethodHandleInfo implementation public partial class MethodHandleInfo : Java.Lang.Invoke.IMethodHandleInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleProxies.cs b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleProxies.cs index 9992b8808e..72b5864222 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleProxies.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandleProxies.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region MethodHandleProxies + #region MethodHandleProxies declaration + /// + /// + /// + public partial class MethodHandleProxies : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.MethodHandleProxies"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MethodHandleProxies() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MethodHandleProxies(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MethodHandleProxies implementation public partial class MethodHandleProxies { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandles.cs b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandles.cs index 9263442b7e..2430f70974 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandles.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/MethodHandles.cs @@ -25,7 +25,97 @@ namespace Java.Lang.Invoke { - #region MethodHandles + #region MethodHandles declaration + /// + /// + /// + public partial class MethodHandles : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.MethodHandles"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MethodHandles() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MethodHandles(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Lookup declaration + /// + /// + /// + public partial class Lookup : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.MethodHandles$Lookup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Lookup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Lookup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MethodHandles implementation public partial class MethodHandles { #region Constructors @@ -470,7 +560,7 @@ public static Java.Lang.Invoke.VarHandle ByteBufferViewVarHandle(Java.Lang.Class #endregion #region Nested classes - #region Lookup + #region Lookup implementation public partial class Lookup { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/MethodType.cs b/src/net/JNet/Generated/Java/Lang/Invoke/MethodType.cs index e89a7460b6..1770e76e1a 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/MethodType.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/MethodType.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region MethodType + #region MethodType declaration + /// + /// + /// + public partial class MethodType : Java.Io.Serializable + { + const string _bridgeClassName = "java.lang.invoke.MethodType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MethodType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MethodType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MethodType implementation public partial class MethodType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/MutableCallSite.cs b/src/net/JNet/Generated/Java/Lang/Invoke/MutableCallSite.cs index 30ae8f3727..670285973c 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/MutableCallSite.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/MutableCallSite.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region MutableCallSite + #region MutableCallSite declaration + /// + /// + /// + public partial class MutableCallSite : Java.Lang.Invoke.CallSite + { + const string _bridgeClassName = "java.lang.invoke.MutableCallSite"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MutableCallSite() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MutableCallSite(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MutableCallSite implementation public partial class MutableCallSite { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/SerializedLambda.cs b/src/net/JNet/Generated/Java/Lang/Invoke/SerializedLambda.cs index 476e1c074d..03b31625b4 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/SerializedLambda.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/SerializedLambda.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region SerializedLambda + #region SerializedLambda declaration + /// + /// + /// + public partial class SerializedLambda : Java.Io.Serializable + { + const string _bridgeClassName = "java.lang.invoke.SerializedLambda"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerializedLambda() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerializedLambda(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerializedLambda implementation public partial class SerializedLambda { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatException.cs b/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatException.cs index df1554fe83..24b2bce55f 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatException.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Invoke { - #region StringConcatException + #region StringConcatException declaration + /// + /// + /// + public partial class StringConcatException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.invoke.StringConcatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region StringConcatException implementation public partial class StringConcatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatFactory.cs b/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatFactory.cs index 5a48c9cd1f..ac0b8523e1 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatFactory.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/StringConcatFactory.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region StringConcatFactory + #region StringConcatFactory declaration + /// + /// + /// + public partial class StringConcatFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.StringConcatFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringConcatFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringConcatFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringConcatFactory implementation public partial class StringConcatFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/SwitchPoint.cs b/src/net/JNet/Generated/Java/Lang/Invoke/SwitchPoint.cs index f94622112d..93235c5cee 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/SwitchPoint.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/SwitchPoint.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region SwitchPoint + #region SwitchPoint declaration + /// + /// + /// + public partial class SwitchPoint : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.SwitchPoint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SwitchPoint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SwitchPoint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SwitchPoint implementation public partial class SwitchPoint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/VarHandle.cs b/src/net/JNet/Generated/Java/Lang/Invoke/VarHandle.cs index 22404daa00..520d6ad945 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/VarHandle.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/VarHandle.cs @@ -25,7 +25,99 @@ namespace Java.Lang.Invoke { - #region VarHandle + #region VarHandle declaration + /// + /// + /// + public partial class VarHandle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.invoke.VarHandle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("VarHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public VarHandle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("VarHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public VarHandle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AccessMode declaration + /// + /// + /// + public partial class AccessMode : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.invoke.VarHandle$AccessMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region VarHandle implementation public partial class VarHandle { #region Constructors @@ -402,7 +494,7 @@ public void SetVolatile(params object[] arg0) #endregion #region Nested classes - #region AccessMode + #region AccessMode implementation public partial class AccessMode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/VolatileCallSite.cs b/src/net/JNet/Generated/Java/Lang/Invoke/VolatileCallSite.cs index 1bfbcfe1a5..a7e06c6588 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/VolatileCallSite.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/VolatileCallSite.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Invoke { - #region VolatileCallSite + #region VolatileCallSite declaration + /// + /// + /// + public partial class VolatileCallSite : Java.Lang.Invoke.CallSite + { + const string _bridgeClassName = "java.lang.invoke.VolatileCallSite"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VolatileCallSite() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public VolatileCallSite(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VolatileCallSite implementation public partial class VolatileCallSite { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Invoke/WrongMethodTypeException.cs b/src/net/JNet/Generated/Java/Lang/Invoke/WrongMethodTypeException.cs index 3535ba4893..b839722cdb 100644 --- a/src/net/JNet/Generated/Java/Lang/Invoke/WrongMethodTypeException.cs +++ b/src/net/JNet/Generated/Java/Lang/Invoke/WrongMethodTypeException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Invoke { - #region WrongMethodTypeException + #region WrongMethodTypeException declaration + /// + /// + /// + public partial class WrongMethodTypeException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.invoke.WrongMethodTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region WrongMethodTypeException implementation public partial class WrongMethodTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/LayerInstantiationException.cs b/src/net/JNet/Generated/Java/Lang/LayerInstantiationException.cs index c6b9598acf..215cf4541e 100644 --- a/src/net/JNet/Generated/Java/Lang/LayerInstantiationException.cs +++ b/src/net/JNet/Generated/Java/Lang/LayerInstantiationException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region LayerInstantiationException + #region LayerInstantiationException declaration + /// + /// + /// + public partial class LayerInstantiationException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.LayerInstantiationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LayerInstantiationException implementation public partial class LayerInstantiationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/LinkageError.cs b/src/net/JNet/Generated/Java/Lang/LinkageError.cs index 286a01b7d3..b0b22c6993 100644 --- a/src/net/JNet/Generated/Java/Lang/LinkageError.cs +++ b/src/net/JNet/Generated/Java/Lang/LinkageError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region LinkageError + #region LinkageError declaration + /// + /// + /// + public partial class LinkageError : Java.Lang.Error + { + const string _bridgeClassName = "java.lang.LinkageError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LinkageError implementation public partial class LinkageError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Long.cs b/src/net/JNet/Generated/Java/Lang/Long.cs index 3f8241bd03..8f2088ecaa 100644 --- a/src/net/JNet/Generated/Java/Lang/Long.cs +++ b/src/net/JNet/Generated/Java/Lang/Long.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Long + #region Long declaration + /// + /// + /// + public partial class Long : Java.Lang.Number + { + const string _bridgeClassName = "java.lang.Long"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Long() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Long(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Long implementation public partial class Long { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/Management/AllPackageClasses.cs deleted file mode 100644 index b08497cd5b..0000000000 --- a/src/net/JNet/Generated/Java/Lang/Management/AllPackageClasses.cs +++ /dev/null @@ -1,954 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.Management -{ - #region BufferPoolMXBean - /// - /// - /// - public partial class BufferPoolMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.BufferPoolMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BufferPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BufferPoolMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BufferPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BufferPoolMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClassLoadingMXBean - /// - /// - /// - public partial class ClassLoadingMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.ClassLoadingMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClassLoadingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassLoadingMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClassLoadingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassLoadingMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompilationMXBean - /// - /// - /// - public partial class CompilationMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.CompilationMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompilationMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompilationMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompilationMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompilationMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GarbageCollectorMXBean - /// - /// - /// - public partial class GarbageCollectorMXBean : Java.Lang.Management.MemoryManagerMXBean - { - const string _bridgeClassName = "java.lang.management.GarbageCollectorMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GarbageCollectorMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GarbageCollectorMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GarbageCollectorMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GarbageCollectorMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LockInfo - /// - /// - /// - public partial class LockInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.management.LockInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LockInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LockInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ManagementFactory - /// - /// - /// - public partial class ManagementFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.management.ManagementFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ManagementFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ManagementFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ManagementPermission - /// - /// - /// - public partial class ManagementPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.lang.management.ManagementPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ManagementPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ManagementPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryManagerMXBean - /// - /// - /// - public partial class MemoryManagerMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.MemoryManagerMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MemoryManagerMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MemoryManagerMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MemoryManagerMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MemoryManagerMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryMXBean - /// - /// - /// - public partial class MemoryMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.MemoryMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MemoryMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MemoryMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MemoryMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MemoryMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryNotificationInfo - /// - /// - /// - public partial class MemoryNotificationInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.management.MemoryNotificationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryNotificationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryNotificationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryPoolMXBean - /// - /// - /// - public partial class MemoryPoolMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.MemoryPoolMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MemoryPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MemoryPoolMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MemoryPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MemoryPoolMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryType - /// - /// - /// - public partial class MemoryType : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.management.MemoryType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryUsage - /// - /// - /// - public partial class MemoryUsage : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.management.MemoryUsage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryUsage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryUsage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MonitorInfo - /// - /// - /// - public partial class MonitorInfo : Java.Lang.Management.LockInfo - { - const string _bridgeClassName = "java.lang.management.MonitorInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MonitorInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MonitorInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OperatingSystemMXBean - /// - /// - /// - public partial class OperatingSystemMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.OperatingSystemMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OperatingSystemMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OperatingSystemMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OperatingSystemMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OperatingSystemMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PlatformLoggingMXBean - /// - /// - /// - public partial class PlatformLoggingMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.PlatformLoggingMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PlatformLoggingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PlatformLoggingMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PlatformLoggingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PlatformLoggingMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PlatformManagedObject - /// - /// - /// - public partial class PlatformManagedObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.management.PlatformManagedObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PlatformManagedObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PlatformManagedObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PlatformManagedObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PlatformManagedObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RuntimeMXBean - /// - /// - /// - public partial class RuntimeMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.RuntimeMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RuntimeMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RuntimeMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RuntimeMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RuntimeMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadInfo - /// - /// - /// - public partial class ThreadInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.management.ThreadInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThreadInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThreadInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadMXBean - /// - /// - /// - public partial class ThreadMXBean : Java.Lang.Management.PlatformManagedObject - { - const string _bridgeClassName = "java.lang.management.ThreadMXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ThreadMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ThreadMXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ThreadMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ThreadMXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Management/BufferPoolMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/BufferPoolMXBean.cs index 1cfab3c9e9..67c958cb96 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/BufferPoolMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/BufferPoolMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region BufferPoolMXBean declaration + /// + /// + /// + public partial class BufferPoolMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.BufferPoolMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BufferPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BufferPoolMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BufferPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BufferPoolMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBufferPoolMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IBufferPoolMXBean : Java.Lang.Management.IPlatformManag } #endregion - #region BufferPoolMXBean + #region BufferPoolMXBean implementation public partial class BufferPoolMXBean : Java.Lang.Management.IBufferPoolMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/ClassLoadingMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/ClassLoadingMXBean.cs index b8caa867af..fb7135e5d8 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/ClassLoadingMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/ClassLoadingMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region ClassLoadingMXBean declaration + /// + /// + /// + public partial class ClassLoadingMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.ClassLoadingMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClassLoadingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassLoadingMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClassLoadingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassLoadingMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IClassLoadingMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IClassLoadingMXBean : Java.Lang.Management.IPlatformMan } #endregion - #region ClassLoadingMXBean + #region ClassLoadingMXBean implementation public partial class ClassLoadingMXBean : Java.Lang.Management.IClassLoadingMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/CompilationMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/CompilationMXBean.cs index 003dd73af5..be96d54f46 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/CompilationMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/CompilationMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region CompilationMXBean declaration + /// + /// + /// + public partial class CompilationMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.CompilationMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompilationMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompilationMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompilationMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompilationMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICompilationMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface ICompilationMXBean : Java.Lang.Management.IPlatformMana } #endregion - #region CompilationMXBean + #region CompilationMXBean implementation public partial class CompilationMXBean : Java.Lang.Management.ICompilationMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/GarbageCollectorMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/GarbageCollectorMXBean.cs index cc97ff426e..0038ff19fa 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/GarbageCollectorMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/GarbageCollectorMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region GarbageCollectorMXBean declaration + /// + /// + /// + public partial class GarbageCollectorMXBean : Java.Lang.Management.MemoryManagerMXBean + { + const string _bridgeClassName = "java.lang.management.GarbageCollectorMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GarbageCollectorMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GarbageCollectorMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GarbageCollectorMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GarbageCollectorMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGarbageCollectorMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IGarbageCollectorMXBean : Java.Lang.Management.IMemoryM } #endregion - #region GarbageCollectorMXBean + #region GarbageCollectorMXBean implementation public partial class GarbageCollectorMXBean : Java.Lang.Management.IGarbageCollectorMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/LockInfo.cs b/src/net/JNet/Generated/Java/Lang/Management/LockInfo.cs index 4c7724d331..373b513bbc 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/LockInfo.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/LockInfo.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region LockInfo + #region LockInfo declaration + /// + /// + /// + public partial class LockInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.management.LockInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LockInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LockInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LockInfo implementation public partial class LockInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/ManagementFactory.cs b/src/net/JNet/Generated/Java/Lang/Management/ManagementFactory.cs index b2fa8f7e98..abf29bcb4a 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/ManagementFactory.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/ManagementFactory.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region ManagementFactory + #region ManagementFactory declaration + /// + /// + /// + public partial class ManagementFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.management.ManagementFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ManagementFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ManagementFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ManagementFactory implementation public partial class ManagementFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/ManagementPermission.cs b/src/net/JNet/Generated/Java/Lang/Management/ManagementPermission.cs index b706f7a9b6..4ad5023488 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/ManagementPermission.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/ManagementPermission.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region ManagementPermission + #region ManagementPermission declaration + /// + /// + /// + public partial class ManagementPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.lang.management.ManagementPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ManagementPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ManagementPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ManagementPermission implementation public partial class ManagementPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MemoryMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/MemoryMXBean.cs index 2f71e621f1..a5de425b1c 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MemoryMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MemoryMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region MemoryMXBean declaration + /// + /// + /// + public partial class MemoryMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.MemoryMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MemoryMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MemoryMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MemoryMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MemoryMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMemoryMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -69,7 +116,7 @@ public partial interface IMemoryMXBean : Java.Lang.Management.IPlatformManagedOb } #endregion - #region MemoryMXBean + #region MemoryMXBean implementation public partial class MemoryMXBean : Java.Lang.Management.IMemoryMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MemoryManagerMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/MemoryManagerMXBean.cs index 03320be5b9..c931e6af44 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MemoryManagerMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MemoryManagerMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region MemoryManagerMXBean declaration + /// + /// + /// + public partial class MemoryManagerMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.MemoryManagerMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MemoryManagerMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MemoryManagerMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MemoryManagerMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MemoryManagerMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMemoryManagerMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface IMemoryManagerMXBean : Java.Lang.Management.IPlatformMa } #endregion - #region MemoryManagerMXBean + #region MemoryManagerMXBean implementation public partial class MemoryManagerMXBean : Java.Lang.Management.IMemoryManagerMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MemoryNotificationInfo.cs b/src/net/JNet/Generated/Java/Lang/Management/MemoryNotificationInfo.cs index 568607fa82..69f2ac077b 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MemoryNotificationInfo.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MemoryNotificationInfo.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region MemoryNotificationInfo + #region MemoryNotificationInfo declaration + /// + /// + /// + public partial class MemoryNotificationInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.management.MemoryNotificationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryNotificationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryNotificationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryNotificationInfo implementation public partial class MemoryNotificationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MemoryPoolMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/MemoryPoolMXBean.cs index 09ea373696..0ee4dc2c6c 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MemoryPoolMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MemoryPoolMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region MemoryPoolMXBean declaration + /// + /// + /// + public partial class MemoryPoolMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.MemoryPoolMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MemoryPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MemoryPoolMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MemoryPoolMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MemoryPoolMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMemoryPoolMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -112,7 +159,7 @@ public partial interface IMemoryPoolMXBean : Java.Lang.Management.IPlatformManag } #endregion - #region MemoryPoolMXBean + #region MemoryPoolMXBean implementation public partial class MemoryPoolMXBean : Java.Lang.Management.IMemoryPoolMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MemoryType.cs b/src/net/JNet/Generated/Java/Lang/Management/MemoryType.cs index 12e9bf431a..958a3946eb 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MemoryType.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MemoryType.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region MemoryType + #region MemoryType declaration + /// + /// + /// + public partial class MemoryType : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.management.MemoryType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryType implementation public partial class MemoryType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MemoryUsage.cs b/src/net/JNet/Generated/Java/Lang/Management/MemoryUsage.cs index f58fa87fe0..7ccf5da29b 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MemoryUsage.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MemoryUsage.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region MemoryUsage + #region MemoryUsage declaration + /// + /// + /// + public partial class MemoryUsage : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.management.MemoryUsage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryUsage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryUsage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryUsage implementation public partial class MemoryUsage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/MonitorInfo.cs b/src/net/JNet/Generated/Java/Lang/Management/MonitorInfo.cs index b5d37f834b..852012185b 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/MonitorInfo.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/MonitorInfo.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region MonitorInfo + #region MonitorInfo declaration + /// + /// + /// + public partial class MonitorInfo : Java.Lang.Management.LockInfo + { + const string _bridgeClassName = "java.lang.management.MonitorInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MonitorInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MonitorInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MonitorInfo implementation public partial class MonitorInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/OperatingSystemMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/OperatingSystemMXBean.cs index 074e253496..53e01b5318 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/OperatingSystemMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/OperatingSystemMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region OperatingSystemMXBean declaration + /// + /// + /// + public partial class OperatingSystemMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.OperatingSystemMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OperatingSystemMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OperatingSystemMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OperatingSystemMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OperatingSystemMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOperatingSystemMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IOperatingSystemMXBean : Java.Lang.Management.IPlatform } #endregion - #region OperatingSystemMXBean + #region OperatingSystemMXBean implementation public partial class OperatingSystemMXBean : Java.Lang.Management.IOperatingSystemMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/PlatformLoggingMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/PlatformLoggingMXBean.cs index 12d64f0e46..3d6549124d 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/PlatformLoggingMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/PlatformLoggingMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region PlatformLoggingMXBean declaration + /// + /// + /// + public partial class PlatformLoggingMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.PlatformLoggingMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PlatformLoggingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PlatformLoggingMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PlatformLoggingMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PlatformLoggingMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPlatformLoggingMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IPlatformLoggingMXBean : Java.Lang.Management.IPlatform } #endregion - #region PlatformLoggingMXBean + #region PlatformLoggingMXBean implementation public partial class PlatformLoggingMXBean : Java.Lang.Management.IPlatformLoggingMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/PlatformManagedObject.cs b/src/net/JNet/Generated/Java/Lang/Management/PlatformManagedObject.cs index ff1a7c530e..ad22c89878 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/PlatformManagedObject.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/PlatformManagedObject.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region PlatformManagedObject declaration + /// + /// + /// + public partial class PlatformManagedObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.management.PlatformManagedObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PlatformManagedObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PlatformManagedObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PlatformManagedObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PlatformManagedObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPlatformManagedObject /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IPlatformManagedObject } #endregion - #region PlatformManagedObject + #region PlatformManagedObject implementation public partial class PlatformManagedObject : Java.Lang.Management.IPlatformManagedObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/RuntimeMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/RuntimeMXBean.cs index 6522abb293..81df2444f6 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/RuntimeMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/RuntimeMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region RuntimeMXBean declaration + /// + /// + /// + public partial class RuntimeMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.RuntimeMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RuntimeMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RuntimeMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RuntimeMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RuntimeMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRuntimeMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -112,7 +159,7 @@ public partial interface IRuntimeMXBean : Java.Lang.Management.IPlatformManagedO } #endregion - #region RuntimeMXBean + #region RuntimeMXBean implementation public partial class RuntimeMXBean : Java.Lang.Management.IRuntimeMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/ThreadInfo.cs b/src/net/JNet/Generated/Java/Lang/Management/ThreadInfo.cs index d54af8fac6..0bbb40af80 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/ThreadInfo.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/ThreadInfo.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Management { - #region ThreadInfo + #region ThreadInfo declaration + /// + /// + /// + public partial class ThreadInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.management.ThreadInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThreadInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThreadInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThreadInfo implementation public partial class ThreadInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Management/ThreadMXBean.cs b/src/net/JNet/Generated/Java/Lang/Management/ThreadMXBean.cs index 4454757798..9dd31a2f29 100644 --- a/src/net/JNet/Generated/Java/Lang/Management/ThreadMXBean.cs +++ b/src/net/JNet/Generated/Java/Lang/Management/ThreadMXBean.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Management { + #region ThreadMXBean declaration + /// + /// + /// + public partial class ThreadMXBean : Java.Lang.Management.PlatformManagedObject + { + const string _bridgeClassName = "java.lang.management.ThreadMXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ThreadMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ThreadMXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ThreadMXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ThreadMXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IThreadMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -200,7 +247,7 @@ public partial interface IThreadMXBean : Java.Lang.Management.IPlatformManagedOb } #endregion - #region ThreadMXBean + #region ThreadMXBean implementation public partial class ThreadMXBean : Java.Lang.Management.IThreadMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Math.cs b/src/net/JNet/Generated/Java/Lang/Math.cs index 4c582bf808..f39feac65e 100644 --- a/src/net/JNet/Generated/Java/Lang/Math.cs +++ b/src/net/JNet/Generated/Java/Lang/Math.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Math + #region Math declaration + /// + /// + /// + public partial class Math : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Math"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Math() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Math(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Math implementation public partial class Math { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Module.cs b/src/net/JNet/Generated/Java/Lang/Module.cs index df4f00a534..477c4b4a50 100644 --- a/src/net/JNet/Generated/Java/Lang/Module.cs +++ b/src/net/JNet/Generated/Java/Lang/Module.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Module + #region Module declaration + /// + /// + /// + public partial class Module : Java.Lang.Reflect.AnnotatedElement + { + const string _bridgeClassName = "java.lang.Module"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Module() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Module(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Module implementation public partial class Module { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleLayer.cs b/src/net/JNet/Generated/Java/Lang/ModuleLayer.cs index 6f2e7b7bf5..d663123511 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleLayer.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleLayer.cs @@ -25,7 +25,97 @@ namespace Java.Lang { - #region ModuleLayer + #region ModuleLayer declaration + /// + /// + /// + public partial class ModuleLayer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ModuleLayer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModuleLayer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModuleLayer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Controller declaration + /// + /// + /// + public partial class Controller : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ModuleLayer$Controller"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Controller() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Controller(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ModuleLayer implementation public partial class ModuleLayer { #region Constructors @@ -170,7 +260,7 @@ public Java.Lang.ModuleLayer DefineModulesWithOneLoader(Java.Lang.ModuleNs.Confi #endregion #region Nested classes - #region Controller + #region Controller implementation public partial class Controller { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/AllPackageClasses.cs deleted file mode 100644 index 42d165f7f5..0000000000 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/AllPackageClasses.cs +++ /dev/null @@ -1,807 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.ModuleNs -{ - #region Configuration - /// - /// - /// - public partial class Configuration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.module.Configuration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Configuration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Configuration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FindException - /// - /// - /// - public partial class FindException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.module.FindException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidModuleDescriptorException - /// - /// - /// - public partial class InvalidModuleDescriptorException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.module.InvalidModuleDescriptorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ModuleDescriptor - /// - /// - /// - public partial class ModuleDescriptor : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModuleDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModuleDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Exports - /// - /// - /// - public partial class Exports : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Exports"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Exports() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Exports(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - #region Modifier - /// - /// - /// - public partial class Modifier : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Exports$Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Modifier - /// - /// - /// - public partial class Modifier : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Opens - /// - /// - /// - public partial class Opens : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Opens"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Opens() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Opens(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - #region Modifier - /// - /// - /// - public partial class Modifier : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Opens$Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Provides - /// - /// - /// - public partial class Provides : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Provides"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Provides() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Provides(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Requires - /// - /// - /// - public partial class Requires : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Requires"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Requires() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Requires(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - #region Modifier - /// - /// - /// - public partial class Modifier : Java.Lang.Enum - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Requires$Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Version - /// - /// - /// - public partial class Version : Java.Lang.Comparable - { - const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Version"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Version() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Version(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ModuleFinder - /// - /// - /// - public partial class ModuleFinder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.module.ModuleFinder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModuleFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleFinder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModuleFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleFinder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModuleReader - /// - /// - /// - public partial class ModuleReader : Java.Io.Closeable - { - const string _bridgeClassName = "java.lang.module.ModuleReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModuleReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModuleReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModuleReference - /// - /// - /// - public partial class ModuleReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.module.ModuleReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModuleReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModuleReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResolutionException - /// - /// - /// - public partial class ResolutionException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.module.ResolutionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ResolvedModule - /// - /// - /// - public partial class ResolvedModule : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.module.ResolvedModule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ResolvedModule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ResolvedModule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/Configuration.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/Configuration.cs index 7c5612dbdf..950c4d3447 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/Configuration.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/Configuration.cs @@ -25,7 +25,52 @@ namespace Java.Lang.ModuleNs { - #region Configuration + #region Configuration declaration + /// + /// + /// + public partial class Configuration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.module.Configuration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Configuration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Configuration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Configuration implementation public partial class Configuration { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/FindException.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/FindException.cs index fe96e1e6f1..76e5f6f010 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/FindException.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/FindException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.ModuleNs { - #region FindException + #region FindException declaration + /// + /// + /// + public partial class FindException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.module.FindException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FindException implementation public partial class FindException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/InvalidModuleDescriptorException.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/InvalidModuleDescriptorException.cs index 4ec91d6b28..17efa8717c 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/InvalidModuleDescriptorException.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/InvalidModuleDescriptorException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.ModuleNs { - #region InvalidModuleDescriptorException + #region InvalidModuleDescriptorException declaration + /// + /// + /// + public partial class InvalidModuleDescriptorException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.module.InvalidModuleDescriptorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidModuleDescriptorException implementation public partial class InvalidModuleDescriptorException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleDescriptor.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleDescriptor.cs index f3838691ee..1e21a56acb 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleDescriptor.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleDescriptor.cs @@ -25,7 +25,502 @@ namespace Java.Lang.ModuleNs { - #region ModuleDescriptor + #region ModuleDescriptor declaration + /// + /// + /// + public partial class ModuleDescriptor : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModuleDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModuleDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Exports declaration + /// + /// + /// + public partial class Exports : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Exports"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Exports() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Exports(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + #region Modifier declaration + /// + /// + /// + public partial class Modifier : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Exports$Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Modifier declaration + /// + /// + /// + public partial class Modifier : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Opens declaration + /// + /// + /// + public partial class Opens : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Opens"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Opens() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Opens(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + #region Modifier declaration + /// + /// + /// + public partial class Modifier : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Opens$Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Provides declaration + /// + /// + /// + public partial class Provides : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Provides"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Provides() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Provides(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Requires declaration + /// + /// + /// + public partial class Requires : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Requires"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Requires() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Requires(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + #region Modifier declaration + /// + /// + /// + public partial class Modifier : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Requires$Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Version declaration + /// + /// + /// + public partial class Version : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.module.ModuleDescriptor$Version"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Version() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Version(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ModuleDescriptor implementation public partial class ModuleDescriptor { #region Constructors @@ -256,7 +751,7 @@ public Java.Lang.String ToNameAndVersion() #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors @@ -496,7 +991,7 @@ public Java.Lang.ModuleNs.ModuleDescriptor.Builder VersionMethod(Java.Lang.Strin } #endregion - #region Exports + #region Exports implementation public partial class Exports { #region Constructors @@ -570,7 +1065,7 @@ public Java.Lang.String Source() #endregion #region Nested classes - #region Modifier + #region Modifier implementation public partial class Modifier { #region Constructors @@ -637,7 +1132,7 @@ public static Java.Lang.ModuleNs.ModuleDescriptor.Exports.Modifier[] Values() } #endregion - #region Modifier + #region Modifier implementation public partial class Modifier { #region Constructors @@ -709,7 +1204,7 @@ public static Java.Lang.ModuleNs.ModuleDescriptor.Modifier[] Values() } #endregion - #region Opens + #region Opens implementation public partial class Opens { #region Constructors @@ -783,7 +1278,7 @@ public Java.Lang.String Source() #endregion #region Nested classes - #region Modifier + #region Modifier implementation public partial class Modifier { #region Constructors @@ -850,7 +1345,7 @@ public static Java.Lang.ModuleNs.ModuleDescriptor.Opens.Modifier[] Values() } #endregion - #region Provides + #region Provides implementation public partial class Provides { #region Constructors @@ -915,7 +1410,7 @@ public Java.Lang.String Service() } #endregion - #region Requires + #region Requires implementation public partial class Requires { #region Constructors @@ -989,7 +1484,7 @@ public Java.Lang.String Name() #endregion #region Nested classes - #region Modifier + #region Modifier implementation public partial class Modifier { #region Constructors @@ -1068,7 +1563,7 @@ public static Java.Lang.ModuleNs.ModuleDescriptor.Requires.Modifier[] Values() } #endregion - #region Version + #region Version implementation public partial class Version { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleFinder.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleFinder.cs index e81f6af3a8..d5de5a2192 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleFinder.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleFinder.cs @@ -25,6 +25,53 @@ namespace Java.Lang.ModuleNs { + #region ModuleFinder declaration + /// + /// + /// + public partial class ModuleFinder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.module.ModuleFinder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModuleFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleFinder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModuleFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleFinder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IModuleFinder /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IModuleFinder } #endregion - #region ModuleFinder + #region ModuleFinder implementation public partial class ModuleFinder : Java.Lang.ModuleNs.IModuleFinder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReader.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReader.cs index 001f6fadc3..13f31d4246 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReader.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReader.cs @@ -25,6 +25,53 @@ namespace Java.Lang.ModuleNs { + #region ModuleReader declaration + /// + /// + /// + public partial class ModuleReader : Java.Io.Closeable + { + const string _bridgeClassName = "java.lang.module.ModuleReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModuleReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModuleReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IModuleReader /// /// .NET interface for TO BE DEFINED FROM USER @@ -80,7 +127,7 @@ public partial interface IModuleReader : Java.Io.ICloseable } #endregion - #region ModuleReader + #region ModuleReader implementation public partial class ModuleReader : Java.Lang.ModuleNs.IModuleReader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReference.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReference.cs index 0c241797cc..3b8dfa199e 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReference.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/ModuleReference.cs @@ -25,7 +25,54 @@ namespace Java.Lang.ModuleNs { - #region ModuleReference + #region ModuleReference declaration + /// + /// + /// + public partial class ModuleReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.module.ModuleReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModuleReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModuleReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModuleReference implementation public partial class ModuleReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolutionException.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolutionException.cs index 5e403f2351..654cdf54ac 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolutionException.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolutionException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.ModuleNs { - #region ResolutionException + #region ResolutionException declaration + /// + /// + /// + public partial class ResolutionException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.module.ResolutionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ResolutionException implementation public partial class ResolutionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolvedModule.cs b/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolvedModule.cs index cea4fc4d80..0f9112e869 100644 --- a/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolvedModule.cs +++ b/src/net/JNet/Generated/Java/Lang/ModuleNs/ResolvedModule.cs @@ -25,7 +25,52 @@ namespace Java.Lang.ModuleNs { - #region ResolvedModule + #region ResolvedModule declaration + /// + /// + /// + public partial class ResolvedModule : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.module.ResolvedModule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ResolvedModule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ResolvedModule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ResolvedModule implementation public partial class ResolvedModule { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NegativeArraySizeException.cs b/src/net/JNet/Generated/Java/Lang/NegativeArraySizeException.cs index c1d51c79fd..d99bd0a206 100644 --- a/src/net/JNet/Generated/Java/Lang/NegativeArraySizeException.cs +++ b/src/net/JNet/Generated/Java/Lang/NegativeArraySizeException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NegativeArraySizeException + #region NegativeArraySizeException declaration + /// + /// + /// + public partial class NegativeArraySizeException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.NegativeArraySizeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NegativeArraySizeException implementation public partial class NegativeArraySizeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NoClassDefFoundError.cs b/src/net/JNet/Generated/Java/Lang/NoClassDefFoundError.cs index a1741b34b1..13ac277c6d 100644 --- a/src/net/JNet/Generated/Java/Lang/NoClassDefFoundError.cs +++ b/src/net/JNet/Generated/Java/Lang/NoClassDefFoundError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NoClassDefFoundError + #region NoClassDefFoundError declaration + /// + /// + /// + public partial class NoClassDefFoundError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.NoClassDefFoundError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoClassDefFoundError implementation public partial class NoClassDefFoundError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NoSuchFieldError.cs b/src/net/JNet/Generated/Java/Lang/NoSuchFieldError.cs index a51a7c598f..974b915bc6 100644 --- a/src/net/JNet/Generated/Java/Lang/NoSuchFieldError.cs +++ b/src/net/JNet/Generated/Java/Lang/NoSuchFieldError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NoSuchFieldError + #region NoSuchFieldError declaration + /// + /// + /// + public partial class NoSuchFieldError : Java.Lang.IncompatibleClassChangeError + { + const string _bridgeClassName = "java.lang.NoSuchFieldError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchFieldError implementation public partial class NoSuchFieldError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NoSuchFieldException.cs b/src/net/JNet/Generated/Java/Lang/NoSuchFieldException.cs index 92af1ceebe..6e1d124f2f 100644 --- a/src/net/JNet/Generated/Java/Lang/NoSuchFieldException.cs +++ b/src/net/JNet/Generated/Java/Lang/NoSuchFieldException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NoSuchFieldException + #region NoSuchFieldException declaration + /// + /// + /// + public partial class NoSuchFieldException : Java.Lang.ReflectiveOperationException + { + const string _bridgeClassName = "java.lang.NoSuchFieldException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchFieldException implementation public partial class NoSuchFieldException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NoSuchMethodError.cs b/src/net/JNet/Generated/Java/Lang/NoSuchMethodError.cs index 384129c130..7aa4c0c813 100644 --- a/src/net/JNet/Generated/Java/Lang/NoSuchMethodError.cs +++ b/src/net/JNet/Generated/Java/Lang/NoSuchMethodError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NoSuchMethodError + #region NoSuchMethodError declaration + /// + /// + /// + public partial class NoSuchMethodError : Java.Lang.IncompatibleClassChangeError + { + const string _bridgeClassName = "java.lang.NoSuchMethodError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchMethodError implementation public partial class NoSuchMethodError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NoSuchMethodException.cs b/src/net/JNet/Generated/Java/Lang/NoSuchMethodException.cs index b30427a974..21082c80d6 100644 --- a/src/net/JNet/Generated/Java/Lang/NoSuchMethodException.cs +++ b/src/net/JNet/Generated/Java/Lang/NoSuchMethodException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NoSuchMethodException + #region NoSuchMethodException declaration + /// + /// + /// + public partial class NoSuchMethodException : Java.Lang.ReflectiveOperationException + { + const string _bridgeClassName = "java.lang.NoSuchMethodException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchMethodException implementation public partial class NoSuchMethodException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NullPointerException.cs b/src/net/JNet/Generated/Java/Lang/NullPointerException.cs index a0b93ecd66..0d78c523ad 100644 --- a/src/net/JNet/Generated/Java/Lang/NullPointerException.cs +++ b/src/net/JNet/Generated/Java/Lang/NullPointerException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NullPointerException + #region NullPointerException declaration + /// + /// + /// + public partial class NullPointerException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.NullPointerException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NullPointerException implementation public partial class NullPointerException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Number.cs b/src/net/JNet/Generated/Java/Lang/Number.cs index e6803d04e6..778ce0c6ed 100644 --- a/src/net/JNet/Generated/Java/Lang/Number.cs +++ b/src/net/JNet/Generated/Java/Lang/Number.cs @@ -25,7 +25,54 @@ namespace Java.Lang { - #region Number + #region Number declaration + /// + /// + /// + public partial class Number : Java.Io.Serializable + { + const string _bridgeClassName = "java.lang.Number"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Number class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Number() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Number class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Number(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Number implementation public partial class Number { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/NumberFormatException.cs b/src/net/JNet/Generated/Java/Lang/NumberFormatException.cs index eeb395268f..1d29b676da 100644 --- a/src/net/JNet/Generated/Java/Lang/NumberFormatException.cs +++ b/src/net/JNet/Generated/Java/Lang/NumberFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region NumberFormatException + #region NumberFormatException declaration + /// + /// + /// + public partial class NumberFormatException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.lang.NumberFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NumberFormatException implementation public partial class NumberFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Object.cs b/src/net/JNet/Generated/Java/Lang/Object.cs index 693c47a288..3e681f029c 100644 --- a/src/net/JNet/Generated/Java/Lang/Object.cs +++ b/src/net/JNet/Generated/Java/Lang/Object.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Object + #region Object declaration + /// + /// + /// + public partial class Object : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Object"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Object() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Object(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Object implementation public partial class Object { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/OutOfMemoryError.cs b/src/net/JNet/Generated/Java/Lang/OutOfMemoryError.cs index d6b5edbe4b..9701ca0858 100644 --- a/src/net/JNet/Generated/Java/Lang/OutOfMemoryError.cs +++ b/src/net/JNet/Generated/Java/Lang/OutOfMemoryError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region OutOfMemoryError + #region OutOfMemoryError declaration + /// + /// + /// + public partial class OutOfMemoryError : Java.Lang.VirtualMachineError + { + const string _bridgeClassName = "java.lang.OutOfMemoryError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region OutOfMemoryError implementation public partial class OutOfMemoryError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Override.cs b/src/net/JNet/Generated/Java/Lang/Override.cs index eb9949fd43..74bb37e12d 100644 --- a/src/net/JNet/Generated/Java/Lang/Override.cs +++ b/src/net/JNet/Generated/Java/Lang/Override.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region Override declaration + /// + /// + /// + public partial class Override : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.Override"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Override class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Override() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Override class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Override(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOverride /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IOverride : Java.Lang.Annotation.IAnnotation } #endregion - #region Override + #region Override implementation public partial class Override : Java.Lang.IOverride { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Package.cs b/src/net/JNet/Generated/Java/Lang/Package.cs index a6cef1bd69..62ecb34bb8 100644 --- a/src/net/JNet/Generated/Java/Lang/Package.cs +++ b/src/net/JNet/Generated/Java/Lang/Package.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Package + #region Package declaration + /// + /// + /// + public partial class Package : Java.Lang.Reflect.AnnotatedElement + { + const string _bridgeClassName = "java.lang.Package"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Package() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Package(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Package implementation public partial class Package { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Process.cs b/src/net/JNet/Generated/Java/Lang/Process.cs index 8b66e56091..84c076f1f2 100644 --- a/src/net/JNet/Generated/Java/Lang/Process.cs +++ b/src/net/JNet/Generated/Java/Lang/Process.cs @@ -25,7 +25,54 @@ namespace Java.Lang { - #region Process + #region Process declaration + /// + /// + /// + public partial class Process : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Process"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Process class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Process() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Process class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Process(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Process implementation public partial class Process { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ProcessBuilder.cs b/src/net/JNet/Generated/Java/Lang/ProcessBuilder.cs index 30eaef587b..7eccbe2378 100644 --- a/src/net/JNet/Generated/Java/Lang/ProcessBuilder.cs +++ b/src/net/JNet/Generated/Java/Lang/ProcessBuilder.cs @@ -25,7 +25,144 @@ namespace Java.Lang { - #region ProcessBuilder + #region ProcessBuilder declaration + /// + /// + /// + public partial class ProcessBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ProcessBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ProcessBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ProcessBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Redirect declaration + /// + /// + /// + public partial class Redirect : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ProcessBuilder$Redirect"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Redirect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Redirect() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Redirect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Redirect(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.ProcessBuilder$Redirect$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + + } + #endregion + + #region ProcessBuilder implementation public partial class ProcessBuilder { #region Constructors @@ -238,7 +375,7 @@ public Java.Lang.ProcessBuilder.Redirect RedirectOutput() #endregion #region Nested classes - #region Redirect + #region Redirect implementation public partial class Redirect { #region Constructors @@ -315,7 +452,7 @@ public Java.Io.File File() #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ProcessHandle.cs b/src/net/JNet/Generated/Java/Lang/ProcessHandle.cs index bbeb33b9ae..61d27a003f 100644 --- a/src/net/JNet/Generated/Java/Lang/ProcessHandle.cs +++ b/src/net/JNet/Generated/Java/Lang/ProcessHandle.cs @@ -25,6 +25,100 @@ namespace Java.Lang { + #region ProcessHandle declaration + /// + /// + /// + public partial class ProcessHandle : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.ProcessHandle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProcessHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessHandle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProcessHandle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessHandle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Info declaration + /// + /// + /// + public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ProcessHandle$Info"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Info class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Info() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Info class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Info(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IProcessHandle /// /// .NET interface for TO BE DEFINED FROM USER @@ -105,7 +199,7 @@ public partial interface IProcessHandle : Java.Lang.IComparable + /// + /// + public partial class Readable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Readable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Readable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Readable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Readable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Readable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReadable /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IReadable } #endregion - #region Readable + #region Readable implementation public partial class Readable : Java.Lang.IReadable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Ref/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/Ref/AllPackageClasses.cs deleted file mode 100644 index 0a26af1476..0000000000 --- a/src/net/JNet/Generated/Java/Lang/Ref/AllPackageClasses.cs +++ /dev/null @@ -1,581 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.Ref -{ - #region Cleaner - /// - /// - /// - public partial class Cleaner : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ref.Cleaner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Cleaner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Cleaner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Cleanable - /// - /// - /// - public partial class Cleanable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ref.Cleaner$Cleanable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Cleanable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Cleanable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Cleanable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Cleanable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region PhantomReference - /// - /// - /// - public partial class PhantomReference : Java.Lang.Ref.Reference - { - const string _bridgeClassName = "java.lang.ref.PhantomReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PhantomReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PhantomReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PhantomReference - /// - /// - /// - /// - public partial class PhantomReference : Java.Lang.Ref.Reference - { - const string _bridgeClassName = "java.lang.ref.PhantomReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PhantomReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PhantomReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Reference - /// - /// - /// - public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ref.Reference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Reference - /// - /// - /// - /// - public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.lang.ref.Reference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReferenceQueue - /// - /// - /// - public partial class ReferenceQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.ref.ReferenceQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReferenceQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReferenceQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReferenceQueue - /// - /// - /// - /// - public partial class ReferenceQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.lang.ref.ReferenceQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReferenceQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReferenceQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SoftReference - /// - /// - /// - public partial class SoftReference : Java.Lang.Ref.Reference - { - const string _bridgeClassName = "java.lang.ref.SoftReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SoftReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SoftReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SoftReference - /// - /// - /// - /// - public partial class SoftReference : Java.Lang.Ref.Reference - { - const string _bridgeClassName = "java.lang.ref.SoftReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SoftReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SoftReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WeakReference - /// - /// - /// - public partial class WeakReference : Java.Lang.Ref.Reference - { - const string _bridgeClassName = "java.lang.ref.WeakReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WeakReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WeakReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WeakReference - /// - /// - /// - /// - public partial class WeakReference : Java.Lang.Ref.Reference - { - const string _bridgeClassName = "java.lang.ref.WeakReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WeakReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WeakReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Ref/Cleaner.cs b/src/net/JNet/Generated/Java/Lang/Ref/Cleaner.cs index b1aa3cca80..7525207b5f 100644 --- a/src/net/JNet/Generated/Java/Lang/Ref/Cleaner.cs +++ b/src/net/JNet/Generated/Java/Lang/Ref/Cleaner.cs @@ -25,7 +25,99 @@ namespace Java.Lang.Ref { - #region Cleaner + #region Cleaner declaration + /// + /// + /// + public partial class Cleaner : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ref.Cleaner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Cleaner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Cleaner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Cleanable declaration + /// + /// + /// + public partial class Cleanable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ref.Cleaner$Cleanable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Cleanable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Cleanable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Cleanable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Cleanable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Cleaner implementation public partial class Cleaner { #region Constructors @@ -76,7 +168,7 @@ public Java.Lang.Ref.Cleaner.Cleanable Register(object arg0, Java.Lang.Runnable #endregion #region Nested classes - #region Cleanable + #region Cleanable implementation public partial class Cleanable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Ref/PhantomReference.cs b/src/net/JNet/Generated/Java/Lang/Ref/PhantomReference.cs index 4aee934882..b104d61519 100644 --- a/src/net/JNet/Generated/Java/Lang/Ref/PhantomReference.cs +++ b/src/net/JNet/Generated/Java/Lang/Ref/PhantomReference.cs @@ -25,7 +25,98 @@ namespace Java.Lang.Ref { - #region PhantomReference + #region PhantomReference declaration + /// + /// + /// + public partial class PhantomReference : Java.Lang.Ref.Reference + { + const string _bridgeClassName = "java.lang.ref.PhantomReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PhantomReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PhantomReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PhantomReference declaration + /// + /// + /// + /// + public partial class PhantomReference : Java.Lang.Ref.Reference + { + const string _bridgeClassName = "java.lang.ref.PhantomReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PhantomReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PhantomReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PhantomReference implementation public partial class PhantomReference { #region Constructors @@ -65,7 +156,7 @@ public PhantomReference(object arg0, Java.Lang.Ref.ReferenceQueue arg1) } #endregion - #region PhantomReference + #region PhantomReference implementation public partial class PhantomReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Ref/Reference.cs b/src/net/JNet/Generated/Java/Lang/Ref/Reference.cs index 8b320e739b..52298c033e 100644 --- a/src/net/JNet/Generated/Java/Lang/Ref/Reference.cs +++ b/src/net/JNet/Generated/Java/Lang/Ref/Reference.cs @@ -25,7 +25,102 @@ namespace Java.Lang.Ref { - #region Reference + #region Reference declaration + /// + /// + /// + public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ref.Reference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Reference declaration + /// + /// + /// + /// + public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.lang.ref.Reference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Reference implementation public partial class Reference { #region Constructors @@ -95,7 +190,7 @@ public void Clear() } #endregion - #region Reference + #region Reference implementation public partial class Reference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Ref/ReferenceQueue.cs b/src/net/JNet/Generated/Java/Lang/Ref/ReferenceQueue.cs index 15cf9abdcb..7d66d25aa0 100644 --- a/src/net/JNet/Generated/Java/Lang/Ref/ReferenceQueue.cs +++ b/src/net/JNet/Generated/Java/Lang/Ref/ReferenceQueue.cs @@ -25,7 +25,98 @@ namespace Java.Lang.Ref { - #region ReferenceQueue + #region ReferenceQueue declaration + /// + /// + /// + public partial class ReferenceQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ref.ReferenceQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReferenceQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReferenceQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReferenceQueue declaration + /// + /// + /// + /// + public partial class ReferenceQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.lang.ref.ReferenceQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReferenceQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReferenceQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReferenceQueue implementation public partial class ReferenceQueue { #region Constructors @@ -84,7 +175,7 @@ public Java.Lang.Ref.Reference Remove(long arg0) } #endregion - #region ReferenceQueue + #region ReferenceQueue implementation public partial class ReferenceQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Ref/SoftReference.cs b/src/net/JNet/Generated/Java/Lang/Ref/SoftReference.cs index fea929de47..6dfd7c48d7 100644 --- a/src/net/JNet/Generated/Java/Lang/Ref/SoftReference.cs +++ b/src/net/JNet/Generated/Java/Lang/Ref/SoftReference.cs @@ -25,7 +25,98 @@ namespace Java.Lang.Ref { - #region SoftReference + #region SoftReference declaration + /// + /// + /// + public partial class SoftReference : Java.Lang.Ref.Reference + { + const string _bridgeClassName = "java.lang.ref.SoftReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SoftReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SoftReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SoftReference declaration + /// + /// + /// + /// + public partial class SoftReference : Java.Lang.Ref.Reference + { + const string _bridgeClassName = "java.lang.ref.SoftReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SoftReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SoftReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SoftReference implementation public partial class SoftReference { #region Constructors @@ -73,7 +164,7 @@ public SoftReference(object arg0) } #endregion - #region SoftReference + #region SoftReference implementation public partial class SoftReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Ref/WeakReference.cs b/src/net/JNet/Generated/Java/Lang/Ref/WeakReference.cs index 3ac76d2dee..809c4a4d48 100644 --- a/src/net/JNet/Generated/Java/Lang/Ref/WeakReference.cs +++ b/src/net/JNet/Generated/Java/Lang/Ref/WeakReference.cs @@ -25,7 +25,98 @@ namespace Java.Lang.Ref { - #region WeakReference + #region WeakReference declaration + /// + /// + /// + public partial class WeakReference : Java.Lang.Ref.Reference + { + const string _bridgeClassName = "java.lang.ref.WeakReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WeakReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WeakReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WeakReference declaration + /// + /// + /// + /// + public partial class WeakReference : Java.Lang.Ref.Reference + { + const string _bridgeClassName = "java.lang.ref.WeakReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WeakReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WeakReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WeakReference implementation public partial class WeakReference { #region Constructors @@ -73,7 +164,7 @@ public WeakReference(object arg0) } #endregion - #region WeakReference + #region WeakReference implementation public partial class WeakReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AccessibleObject.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AccessibleObject.cs index fb566a096e..c515f11509 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AccessibleObject.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AccessibleObject.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region AccessibleObject + #region AccessibleObject declaration + /// + /// + /// + public partial class AccessibleObject : Java.Lang.Reflect.AnnotatedElement + { + const string _bridgeClassName = "java.lang.reflect.AccessibleObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleObject implementation public partial class AccessibleObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AllPackageClasses.cs deleted file mode 100644 index 3a3a39708f..0000000000 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AllPackageClasses.cs +++ /dev/null @@ -1,1336 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Lang.Reflect -{ - #region AccessibleObject - /// - /// - /// - public partial class AccessibleObject : Java.Lang.Reflect.AnnotatedElement - { - const string _bridgeClassName = "java.lang.reflect.AccessibleObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotatedArrayType - /// - /// - /// - public partial class AnnotatedArrayType : Java.Lang.Reflect.AnnotatedType - { - const string _bridgeClassName = "java.lang.reflect.AnnotatedArrayType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedArrayType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedArrayType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotatedElement - /// - /// - /// - public partial class AnnotatedElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.AnnotatedElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotatedParameterizedType - /// - /// - /// - public partial class AnnotatedParameterizedType : Java.Lang.Reflect.AnnotatedType - { - const string _bridgeClassName = "java.lang.reflect.AnnotatedParameterizedType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedParameterizedType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedParameterizedType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotatedType - /// - /// - /// - public partial class AnnotatedType : Java.Lang.Reflect.AnnotatedElement - { - const string _bridgeClassName = "java.lang.reflect.AnnotatedType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotatedTypeVariable - /// - /// - /// - public partial class AnnotatedTypeVariable : Java.Lang.Reflect.AnnotatedType - { - const string _bridgeClassName = "java.lang.reflect.AnnotatedTypeVariable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedTypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedTypeVariable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedTypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedTypeVariable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotatedWildcardType - /// - /// - /// - public partial class AnnotatedWildcardType : Java.Lang.Reflect.AnnotatedType - { - const string _bridgeClassName = "java.lang.reflect.AnnotatedWildcardType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedWildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedWildcardType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedWildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedWildcardType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Array - /// - /// - /// - public partial class Array : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.Array"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Array() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Array(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Constructor - /// - /// - /// - public partial class Constructor : Java.Lang.Reflect.Executable - { - const string _bridgeClassName = "java.lang.reflect.Constructor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Constructor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Constructor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Constructor - /// - /// - /// - /// - public partial class Constructor : Java.Lang.Reflect.Executable - { - const string _bridgeClassName = "java.lang.reflect.Constructor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Constructor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Constructor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Executable - /// - /// - /// - public partial class Executable : Java.Lang.Reflect.AccessibleObject - { - const string _bridgeClassName = "java.lang.reflect.Executable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Executable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Executable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Executable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Executable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Field - /// - /// - /// - public partial class Field : Java.Lang.Reflect.AccessibleObject - { - const string _bridgeClassName = "java.lang.reflect.Field"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Field() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Field(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GenericArrayType - /// - /// - /// - public partial class GenericArrayType : Java.Lang.Reflect.Type - { - const string _bridgeClassName = "java.lang.reflect.GenericArrayType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GenericArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GenericArrayType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GenericArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GenericArrayType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GenericDeclaration - /// - /// - /// - public partial class GenericDeclaration : Java.Lang.Reflect.AnnotatedElement - { - const string _bridgeClassName = "java.lang.reflect.GenericDeclaration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GenericDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GenericDeclaration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GenericDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GenericDeclaration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GenericSignatureFormatError - /// - /// - /// - public partial class GenericSignatureFormatError : Java.Lang.ClassFormatError - { - const string _bridgeClassName = "java.lang.reflect.GenericSignatureFormatError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InaccessibleObjectException - /// - /// - /// - public partial class InaccessibleObjectException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.reflect.InaccessibleObjectException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvocationHandler - /// - /// - /// - public partial class InvocationHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.InvocationHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InvocationHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InvocationHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InvocationHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InvocationHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvocationTargetException - /// - /// - /// - public partial class InvocationTargetException : Java.Lang.ReflectiveOperationException - { - const string _bridgeClassName = "java.lang.reflect.InvocationTargetException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MalformedParameterizedTypeException - /// - /// - /// - public partial class MalformedParameterizedTypeException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.reflect.MalformedParameterizedTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MalformedParametersException - /// - /// - /// - public partial class MalformedParametersException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.reflect.MalformedParametersException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Member - /// - /// - /// - public partial class Member : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.Member"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Member class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Member() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Member class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Member(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Method - /// - /// - /// - public partial class Method : Java.Lang.Reflect.Executable - { - const string _bridgeClassName = "java.lang.reflect.Method"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Method() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Method(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Modifier - /// - /// - /// - public partial class Modifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Parameter - /// - /// - /// - public partial class Parameter : Java.Lang.Reflect.AnnotatedElement - { - const string _bridgeClassName = "java.lang.reflect.Parameter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Parameter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Parameter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParameterizedType - /// - /// - /// - public partial class ParameterizedType : Java.Lang.Reflect.Type - { - const string _bridgeClassName = "java.lang.reflect.ParameterizedType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ParameterizedType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ParameterizedType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Proxy - /// - /// - /// - public partial class Proxy : Java.Io.Serializable - { - const string _bridgeClassName = "java.lang.reflect.Proxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Proxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Proxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReflectPermission - /// - /// - /// - public partial class ReflectPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.lang.reflect.ReflectPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReflectPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReflectPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Type - /// - /// - /// - public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Type class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Type class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeVariable - /// - /// - /// - public partial class TypeVariable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.lang.reflect.TypeVariable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVariable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVariable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeVariable - /// - /// - /// - /// - public partial class TypeVariable : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where D : Java.Lang.Reflect.IGenericDeclaration, new() - { - const string _bridgeClassName = "java.lang.reflect.TypeVariable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVariable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVariable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UndeclaredThrowableException - /// - /// - /// - public partial class UndeclaredThrowableException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.lang.reflect.UndeclaredThrowableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region WildcardType - /// - /// - /// - public partial class WildcardType : Java.Lang.Reflect.Type - { - const string _bridgeClassName = "java.lang.reflect.WildcardType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WildcardType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WildcardType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedArrayType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedArrayType.cs index 1b3830757a..07a1b13678 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedArrayType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedArrayType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region AnnotatedArrayType declaration + /// + /// + /// + public partial class AnnotatedArrayType : Java.Lang.Reflect.AnnotatedType + { + const string _bridgeClassName = "java.lang.reflect.AnnotatedArrayType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedArrayType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedArrayType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedArrayType /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAnnotatedArrayType : Java.Lang.Reflect.IAnnotatedType } #endregion - #region AnnotatedArrayType + #region AnnotatedArrayType implementation public partial class AnnotatedArrayType : Java.Lang.Reflect.IAnnotatedArrayType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedElement.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedElement.cs index 17e26beea6..ebc8779434 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedElement.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedElement.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region AnnotatedElement declaration + /// + /// + /// + public partial class AnnotatedElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.AnnotatedElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -85,7 +132,7 @@ public partial interface IAnnotatedElement } #endregion - #region AnnotatedElement + #region AnnotatedElement implementation public partial class AnnotatedElement : Java.Lang.Reflect.IAnnotatedElement { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedParameterizedType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedParameterizedType.cs index f8023cb706..55251a618b 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedParameterizedType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedParameterizedType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region AnnotatedParameterizedType declaration + /// + /// + /// + public partial class AnnotatedParameterizedType : Java.Lang.Reflect.AnnotatedType + { + const string _bridgeClassName = "java.lang.reflect.AnnotatedParameterizedType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedParameterizedType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedParameterizedType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedParameterizedType /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAnnotatedParameterizedType : Java.Lang.Reflect.IAnnota } #endregion - #region AnnotatedParameterizedType + #region AnnotatedParameterizedType implementation public partial class AnnotatedParameterizedType : Java.Lang.Reflect.IAnnotatedParameterizedType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedType.cs index 850d9ac91f..9dd8c76bdc 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region AnnotatedType declaration + /// + /// + /// + public partial class AnnotatedType : Java.Lang.Reflect.AnnotatedElement + { + const string _bridgeClassName = "java.lang.reflect.AnnotatedType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedType /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAnnotatedType : Java.Lang.Reflect.IAnnotatedElement } #endregion - #region AnnotatedType + #region AnnotatedType implementation public partial class AnnotatedType : Java.Lang.Reflect.IAnnotatedType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedTypeVariable.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedTypeVariable.cs index c68c358e68..92f4bbfff4 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedTypeVariable.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedTypeVariable.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region AnnotatedTypeVariable declaration + /// + /// + /// + public partial class AnnotatedTypeVariable : Java.Lang.Reflect.AnnotatedType + { + const string _bridgeClassName = "java.lang.reflect.AnnotatedTypeVariable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedTypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedTypeVariable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedTypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedTypeVariable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedTypeVariable /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAnnotatedTypeVariable : Java.Lang.Reflect.IAnnotatedTy } #endregion - #region AnnotatedTypeVariable + #region AnnotatedTypeVariable implementation public partial class AnnotatedTypeVariable : Java.Lang.Reflect.IAnnotatedTypeVariable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedWildcardType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedWildcardType.cs index d5e809190c..2f4eec9f30 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedWildcardType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/AnnotatedWildcardType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region AnnotatedWildcardType declaration + /// + /// + /// + public partial class AnnotatedWildcardType : Java.Lang.Reflect.AnnotatedType + { + const string _bridgeClassName = "java.lang.reflect.AnnotatedWildcardType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedWildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedWildcardType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedWildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedWildcardType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedWildcardType /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IAnnotatedWildcardType : Java.Lang.Reflect.IAnnotatedTy } #endregion - #region AnnotatedWildcardType + #region AnnotatedWildcardType implementation public partial class AnnotatedWildcardType : Java.Lang.Reflect.IAnnotatedWildcardType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Array.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Array.cs index a67b29afe7..a43dbb2433 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Array.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Array.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region Array + #region Array declaration + /// + /// + /// + public partial class Array : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.Array"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Array() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Array(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Array implementation public partial class Array { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Constructor.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Constructor.cs index 75e656b739..7187c4bc9a 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Constructor.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Constructor.cs @@ -25,7 +25,98 @@ namespace Java.Lang.Reflect { - #region Constructor + #region Constructor declaration + /// + /// + /// + public partial class Constructor : Java.Lang.Reflect.Executable + { + const string _bridgeClassName = "java.lang.reflect.Constructor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Constructor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Constructor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Constructor declaration + /// + /// + /// + /// + public partial class Constructor : Java.Lang.Reflect.Executable + { + const string _bridgeClassName = "java.lang.reflect.Constructor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Constructor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Constructor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Constructor implementation public partial class Constructor { #region Constructors @@ -69,7 +160,7 @@ public object NewInstance(params object[] arg0) } #endregion - #region Constructor + #region Constructor implementation public partial class Constructor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Executable.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Executable.cs index 7874ab3f30..c3fd3fa946 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Executable.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Executable.cs @@ -25,7 +25,54 @@ namespace Java.Lang.Reflect { - #region Executable + #region Executable declaration + /// + /// + /// + public partial class Executable : Java.Lang.Reflect.AccessibleObject + { + const string _bridgeClassName = "java.lang.reflect.Executable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Executable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Executable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Executable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Executable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Executable implementation public partial class Executable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Field.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Field.cs index b726b2504e..5ece44aff7 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Field.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Field.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region Field + #region Field declaration + /// + /// + /// + public partial class Field : Java.Lang.Reflect.AccessibleObject + { + const string _bridgeClassName = "java.lang.reflect.Field"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Field() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Field(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Field implementation public partial class Field { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/GenericArrayType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/GenericArrayType.cs index 6b0cea29ba..22d3501812 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/GenericArrayType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/GenericArrayType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region GenericArrayType declaration + /// + /// + /// + public partial class GenericArrayType : Java.Lang.Reflect.Type + { + const string _bridgeClassName = "java.lang.reflect.GenericArrayType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GenericArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GenericArrayType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GenericArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GenericArrayType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGenericArrayType /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IGenericArrayType : Java.Lang.Reflect.IType } #endregion - #region GenericArrayType + #region GenericArrayType implementation public partial class GenericArrayType : Java.Lang.Reflect.IGenericArrayType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/GenericDeclaration.cs b/src/net/JNet/Generated/Java/Lang/Reflect/GenericDeclaration.cs index 7424e834c0..8f8ef2fd6d 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/GenericDeclaration.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/GenericDeclaration.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region GenericDeclaration declaration + /// + /// + /// + public partial class GenericDeclaration : Java.Lang.Reflect.AnnotatedElement + { + const string _bridgeClassName = "java.lang.reflect.GenericDeclaration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GenericDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GenericDeclaration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GenericDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GenericDeclaration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGenericDeclaration /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IGenericDeclaration : Java.Lang.Reflect.IAnnotatedEleme } #endregion - #region GenericDeclaration + #region GenericDeclaration implementation public partial class GenericDeclaration : Java.Lang.Reflect.IGenericDeclaration { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/GenericSignatureFormatError.cs b/src/net/JNet/Generated/Java/Lang/Reflect/GenericSignatureFormatError.cs index ceff3c7c0a..5d769cca17 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/GenericSignatureFormatError.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/GenericSignatureFormatError.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Reflect { - #region GenericSignatureFormatError + #region GenericSignatureFormatError declaration + /// + /// + /// + public partial class GenericSignatureFormatError : Java.Lang.ClassFormatError + { + const string _bridgeClassName = "java.lang.reflect.GenericSignatureFormatError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region GenericSignatureFormatError implementation public partial class GenericSignatureFormatError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/InaccessibleObjectException.cs b/src/net/JNet/Generated/Java/Lang/Reflect/InaccessibleObjectException.cs index 183976a4eb..12e0b9bf88 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/InaccessibleObjectException.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/InaccessibleObjectException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Reflect { - #region InaccessibleObjectException + #region InaccessibleObjectException declaration + /// + /// + /// + public partial class InaccessibleObjectException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.reflect.InaccessibleObjectException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InaccessibleObjectException implementation public partial class InaccessibleObjectException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/InvocationHandler.cs b/src/net/JNet/Generated/Java/Lang/Reflect/InvocationHandler.cs index 435e7fc303..a251ad876a 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/InvocationHandler.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/InvocationHandler.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region InvocationHandler declaration + /// + /// + /// + public partial class InvocationHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.InvocationHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InvocationHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InvocationHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InvocationHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InvocationHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInvocationHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IInvocationHandler } #endregion - #region InvocationHandler + #region InvocationHandler implementation public partial class InvocationHandler : Java.Lang.Reflect.IInvocationHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/InvocationTargetException.cs b/src/net/JNet/Generated/Java/Lang/Reflect/InvocationTargetException.cs index f841e7dec8..c95c869c2e 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/InvocationTargetException.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/InvocationTargetException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Reflect { - #region InvocationTargetException + #region InvocationTargetException declaration + /// + /// + /// + public partial class InvocationTargetException : Java.Lang.ReflectiveOperationException + { + const string _bridgeClassName = "java.lang.reflect.InvocationTargetException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvocationTargetException implementation public partial class InvocationTargetException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParameterizedTypeException.cs b/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParameterizedTypeException.cs index e642af8cbd..78800cdfe2 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParameterizedTypeException.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParameterizedTypeException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Reflect { - #region MalformedParameterizedTypeException + #region MalformedParameterizedTypeException declaration + /// + /// + /// + public partial class MalformedParameterizedTypeException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.reflect.MalformedParameterizedTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MalformedParameterizedTypeException implementation public partial class MalformedParameterizedTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParametersException.cs b/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParametersException.cs index a75997c309..1fb73fc77d 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParametersException.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/MalformedParametersException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Reflect { - #region MalformedParametersException + #region MalformedParametersException declaration + /// + /// + /// + public partial class MalformedParametersException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.reflect.MalformedParametersException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MalformedParametersException implementation public partial class MalformedParametersException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Member.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Member.cs index dcb071c51d..65b0f9dc7c 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Member.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Member.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region Member declaration + /// + /// + /// + public partial class Member : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.Member"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Member class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Member() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Member class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Member(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMember /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IMember } #endregion - #region Member + #region Member implementation public partial class Member : Java.Lang.Reflect.IMember { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Method.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Method.cs index 87e98f011e..250a0d387d 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Method.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Method.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region Method + #region Method declaration + /// + /// + /// + public partial class Method : Java.Lang.Reflect.Executable + { + const string _bridgeClassName = "java.lang.reflect.Method"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Method() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Method(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Method implementation public partial class Method { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Modifier.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Modifier.cs index 99acf32b6b..c047d57b46 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Modifier.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Modifier.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region Modifier + #region Modifier declaration + /// + /// + /// + public partial class Modifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Modifier implementation public partial class Modifier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Parameter.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Parameter.cs index 06c11368e8..76a466d7d7 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Parameter.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Parameter.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region Parameter + #region Parameter declaration + /// + /// + /// + public partial class Parameter : Java.Lang.Reflect.AnnotatedElement + { + const string _bridgeClassName = "java.lang.reflect.Parameter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Parameter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Parameter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Parameter implementation public partial class Parameter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/ParameterizedType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/ParameterizedType.cs index 9d7da43b36..6bd2b7220b 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/ParameterizedType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/ParameterizedType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region ParameterizedType declaration + /// + /// + /// + public partial class ParameterizedType : Java.Lang.Reflect.Type + { + const string _bridgeClassName = "java.lang.reflect.ParameterizedType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ParameterizedType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ParameterizedType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ParameterizedType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IParameterizedType /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IParameterizedType : Java.Lang.Reflect.IType } #endregion - #region ParameterizedType + #region ParameterizedType implementation public partial class ParameterizedType : Java.Lang.Reflect.IParameterizedType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Proxy.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Proxy.cs index e3f40fe775..1e8f77e1d7 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Proxy.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Proxy.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region Proxy + #region Proxy declaration + /// + /// + /// + public partial class Proxy : Java.Io.Serializable + { + const string _bridgeClassName = "java.lang.reflect.Proxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Proxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Proxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Proxy implementation public partial class Proxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/ReflectPermission.cs b/src/net/JNet/Generated/Java/Lang/Reflect/ReflectPermission.cs index 857939073c..e2c59849d0 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/ReflectPermission.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/ReflectPermission.cs @@ -25,7 +25,52 @@ namespace Java.Lang.Reflect { - #region ReflectPermission + #region ReflectPermission declaration + /// + /// + /// + public partial class ReflectPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.lang.reflect.ReflectPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReflectPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReflectPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReflectPermission implementation public partial class ReflectPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/Type.cs b/src/net/JNet/Generated/Java/Lang/Reflect/Type.cs index 4aeb26621c..3642facdfe 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/Type.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/Type.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region Type declaration + /// + /// + /// + public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Type class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Type class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IType /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IType } #endregion - #region Type + #region Type implementation public partial class Type : Java.Lang.Reflect.IType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/TypeVariable.cs b/src/net/JNet/Generated/Java/Lang/Reflect/TypeVariable.cs index 0938a42b8f..164d5f530f 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/TypeVariable.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/TypeVariable.cs @@ -25,7 +25,102 @@ namespace Java.Lang.Reflect { - #region TypeVariable + #region TypeVariable declaration + /// + /// + /// + public partial class TypeVariable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.reflect.TypeVariable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVariable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVariable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeVariable declaration + /// + /// + /// + /// + public partial class TypeVariable : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where D : Java.Lang.Reflect.IGenericDeclaration, new() + { + const string _bridgeClassName = "java.lang.reflect.TypeVariable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVariable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVariable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeVariable implementation public partial class TypeVariable { #region Constructors @@ -126,7 +221,7 @@ public partial interface ITypeVariable } #endregion - #region TypeVariable + #region TypeVariable implementation public partial class TypeVariable : Java.Lang.Reflect.ITypeVariable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/UndeclaredThrowableException.cs b/src/net/JNet/Generated/Java/Lang/Reflect/UndeclaredThrowableException.cs index 2b65df748c..6a01460eef 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/UndeclaredThrowableException.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/UndeclaredThrowableException.cs @@ -25,7 +25,24 @@ namespace Java.Lang.Reflect { - #region UndeclaredThrowableException + #region UndeclaredThrowableException declaration + /// + /// + /// + public partial class UndeclaredThrowableException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.reflect.UndeclaredThrowableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UndeclaredThrowableException implementation public partial class UndeclaredThrowableException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Reflect/WildcardType.cs b/src/net/JNet/Generated/Java/Lang/Reflect/WildcardType.cs index 95d3f97a58..50e8324dfe 100644 --- a/src/net/JNet/Generated/Java/Lang/Reflect/WildcardType.cs +++ b/src/net/JNet/Generated/Java/Lang/Reflect/WildcardType.cs @@ -25,6 +25,53 @@ namespace Java.Lang.Reflect { + #region WildcardType declaration + /// + /// + /// + public partial class WildcardType : Java.Lang.Reflect.Type + { + const string _bridgeClassName = "java.lang.reflect.WildcardType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WildcardType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WildcardType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWildcardType /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IWildcardType : Java.Lang.Reflect.IType } #endregion - #region WildcardType + #region WildcardType implementation public partial class WildcardType : Java.Lang.Reflect.IWildcardType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ReflectiveOperationException.cs b/src/net/JNet/Generated/Java/Lang/ReflectiveOperationException.cs index 4aa5dd555b..cf2a1d72a9 100644 --- a/src/net/JNet/Generated/Java/Lang/ReflectiveOperationException.cs +++ b/src/net/JNet/Generated/Java/Lang/ReflectiveOperationException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ReflectiveOperationException + #region ReflectiveOperationException declaration + /// + /// + /// + public partial class ReflectiveOperationException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.ReflectiveOperationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ReflectiveOperationException implementation public partial class ReflectiveOperationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Runnable.cs b/src/net/JNet/Generated/Java/Lang/Runnable.cs index baca84c87e..9829ae3ab4 100644 --- a/src/net/JNet/Generated/Java/Lang/Runnable.cs +++ b/src/net/JNet/Generated/Java/Lang/Runnable.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region Runnable declaration + /// + /// + /// + public partial class Runnable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Runnable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Runnable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Runnable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Runnable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Runnable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRunnable /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IRunnable } #endregion - #region Runnable + #region Runnable implementation public partial class Runnable : Java.Lang.IRunnable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Runtime.cs b/src/net/JNet/Generated/Java/Lang/Runtime.cs index 08af9a7964..69acc101bf 100644 --- a/src/net/JNet/Generated/Java/Lang/Runtime.cs +++ b/src/net/JNet/Generated/Java/Lang/Runtime.cs @@ -25,7 +25,97 @@ namespace Java.Lang { - #region Runtime + #region Runtime declaration + /// + /// + /// + public partial class Runtime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Runtime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Runtime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Runtime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Version declaration + /// + /// + /// + public partial class Version : Java.Lang.Comparable + { + const string _bridgeClassName = "java.lang.Runtime$Version"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Version() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Version(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Runtime implementation public partial class Runtime { #region Constructors @@ -225,7 +315,7 @@ public void RunFinalization() #endregion #region Nested classes - #region Version + #region Version implementation public partial class Version { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/RuntimeException.cs b/src/net/JNet/Generated/Java/Lang/RuntimeException.cs index bdca49d713..963dd6740f 100644 --- a/src/net/JNet/Generated/Java/Lang/RuntimeException.cs +++ b/src/net/JNet/Generated/Java/Lang/RuntimeException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region RuntimeException + #region RuntimeException declaration + /// + /// + /// + public partial class RuntimeException : Java.Lang.Exception + { + const string _bridgeClassName = "java.lang.RuntimeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RuntimeException implementation public partial class RuntimeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/RuntimePermission.cs b/src/net/JNet/Generated/Java/Lang/RuntimePermission.cs index c38ac49cbd..2e93a3c276 100644 --- a/src/net/JNet/Generated/Java/Lang/RuntimePermission.cs +++ b/src/net/JNet/Generated/Java/Lang/RuntimePermission.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region RuntimePermission + #region RuntimePermission declaration + /// + /// + /// + public partial class RuntimePermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.lang.RuntimePermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RuntimePermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RuntimePermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RuntimePermission implementation public partial class RuntimePermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/SafeVarargs.cs b/src/net/JNet/Generated/Java/Lang/SafeVarargs.cs index 73a708c1cd..69903548ac 100644 --- a/src/net/JNet/Generated/Java/Lang/SafeVarargs.cs +++ b/src/net/JNet/Generated/Java/Lang/SafeVarargs.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region SafeVarargs declaration + /// + /// + /// + public partial class SafeVarargs : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.SafeVarargs"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SafeVarargs class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SafeVarargs() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SafeVarargs class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SafeVarargs(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISafeVarargs /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISafeVarargs : Java.Lang.Annotation.IAnnotation } #endregion - #region SafeVarargs + #region SafeVarargs implementation public partial class SafeVarargs : Java.Lang.ISafeVarargs { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/SecurityException.cs b/src/net/JNet/Generated/Java/Lang/SecurityException.cs index 9993e54b31..110ea06c9d 100644 --- a/src/net/JNet/Generated/Java/Lang/SecurityException.cs +++ b/src/net/JNet/Generated/Java/Lang/SecurityException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region SecurityException + #region SecurityException declaration + /// + /// + /// + public partial class SecurityException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.SecurityException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SecurityException implementation public partial class SecurityException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/SecurityManager.cs b/src/net/JNet/Generated/Java/Lang/SecurityManager.cs index e9ee7c04d6..6713344a5d 100644 --- a/src/net/JNet/Generated/Java/Lang/SecurityManager.cs +++ b/src/net/JNet/Generated/Java/Lang/SecurityManager.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region SecurityManager + #region SecurityManager declaration + /// + /// + /// + public partial class SecurityManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.SecurityManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecurityManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecurityManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecurityManager implementation public partial class SecurityManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Short.cs b/src/net/JNet/Generated/Java/Lang/Short.cs index c8559db37d..567aa4399e 100644 --- a/src/net/JNet/Generated/Java/Lang/Short.cs +++ b/src/net/JNet/Generated/Java/Lang/Short.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Short + #region Short declaration + /// + /// + /// + public partial class Short : Java.Lang.Number + { + const string _bridgeClassName = "java.lang.Short"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Short() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Short(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Short implementation public partial class Short { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StackOverflowError.cs b/src/net/JNet/Generated/Java/Lang/StackOverflowError.cs index b79999e7c7..72fa545474 100644 --- a/src/net/JNet/Generated/Java/Lang/StackOverflowError.cs +++ b/src/net/JNet/Generated/Java/Lang/StackOverflowError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region StackOverflowError + #region StackOverflowError declaration + /// + /// + /// + public partial class StackOverflowError : Java.Lang.VirtualMachineError + { + const string _bridgeClassName = "java.lang.StackOverflowError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region StackOverflowError implementation public partial class StackOverflowError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StackTraceElement.cs b/src/net/JNet/Generated/Java/Lang/StackTraceElement.cs index 344e4c58c8..3668571ae4 100644 --- a/src/net/JNet/Generated/Java/Lang/StackTraceElement.cs +++ b/src/net/JNet/Generated/Java/Lang/StackTraceElement.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region StackTraceElement + #region StackTraceElement declaration + /// + /// + /// + public partial class StackTraceElement : Java.Io.Serializable + { + const string _bridgeClassName = "java.lang.StackTraceElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StackTraceElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StackTraceElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StackTraceElement implementation public partial class StackTraceElement { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StackWalker.cs b/src/net/JNet/Generated/Java/Lang/StackWalker.cs index 280af9d67a..d8c3747fbb 100644 --- a/src/net/JNet/Generated/Java/Lang/StackWalker.cs +++ b/src/net/JNet/Generated/Java/Lang/StackWalker.cs @@ -25,7 +25,144 @@ namespace Java.Lang { - #region StackWalker + #region StackWalker declaration + /// + /// + /// + public partial class StackWalker : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.StackWalker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StackWalker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StackWalker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Option declaration + /// + /// + /// + public partial class Option : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.StackWalker$Option"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Option() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Option(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region StackFrame declaration + /// + /// + /// + public partial class StackFrame : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.StackWalker$StackFrame"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StackFrame class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StackFrame() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StackFrame class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StackFrame(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region StackWalker implementation public partial class StackWalker { #region Constructors @@ -112,7 +249,7 @@ public void ForEach(Java.Util.F #endregion #region Nested classes - #region Option + #region Option implementation public partial class Option { #region Constructors @@ -178,7 +315,7 @@ public static Java.Lang.StackWalker.Option[] Values() } #endregion - #region StackFrame + #region StackFrame implementation public partial class StackFrame { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StrictMath.cs b/src/net/JNet/Generated/Java/Lang/StrictMath.cs index 99b9441a4b..550ec5d1a0 100644 --- a/src/net/JNet/Generated/Java/Lang/StrictMath.cs +++ b/src/net/JNet/Generated/Java/Lang/StrictMath.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region StrictMath + #region StrictMath declaration + /// + /// + /// + public partial class StrictMath : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.StrictMath"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StrictMath() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StrictMath(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StrictMath implementation public partial class StrictMath { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/String.cs b/src/net/JNet/Generated/Java/Lang/String.cs index 25bf65e1df..585fabb7af 100644 --- a/src/net/JNet/Generated/Java/Lang/String.cs +++ b/src/net/JNet/Generated/Java/Lang/String.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region String + #region String declaration + /// + /// + /// + public partial class String : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.String"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public String() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public String(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region String implementation public partial class String { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StringBuffer.cs b/src/net/JNet/Generated/Java/Lang/StringBuffer.cs index 55c456e2d1..3af36e30c9 100644 --- a/src/net/JNet/Generated/Java/Lang/StringBuffer.cs +++ b/src/net/JNet/Generated/Java/Lang/StringBuffer.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region StringBuffer + #region StringBuffer declaration + /// + /// + /// + public partial class StringBuffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.StringBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringBuffer implementation public partial class StringBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StringBuilder.cs b/src/net/JNet/Generated/Java/Lang/StringBuilder.cs index b7017e4691..52da3009d2 100644 --- a/src/net/JNet/Generated/Java/Lang/StringBuilder.cs +++ b/src/net/JNet/Generated/Java/Lang/StringBuilder.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region StringBuilder + #region StringBuilder declaration + /// + /// + /// + public partial class StringBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.StringBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringBuilder implementation public partial class StringBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/StringIndexOutOfBoundsException.cs b/src/net/JNet/Generated/Java/Lang/StringIndexOutOfBoundsException.cs index 0bfbf06414..eee1d29f4c 100644 --- a/src/net/JNet/Generated/Java/Lang/StringIndexOutOfBoundsException.cs +++ b/src/net/JNet/Generated/Java/Lang/StringIndexOutOfBoundsException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region StringIndexOutOfBoundsException + #region StringIndexOutOfBoundsException declaration + /// + /// + /// + public partial class StringIndexOutOfBoundsException : Java.Lang.IndexOutOfBoundsException + { + const string _bridgeClassName = "java.lang.StringIndexOutOfBoundsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region StringIndexOutOfBoundsException implementation public partial class StringIndexOutOfBoundsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/SuppressWarnings.cs b/src/net/JNet/Generated/Java/Lang/SuppressWarnings.cs index 241a47c816..6d4c1e458a 100644 --- a/src/net/JNet/Generated/Java/Lang/SuppressWarnings.cs +++ b/src/net/JNet/Generated/Java/Lang/SuppressWarnings.cs @@ -25,6 +25,53 @@ namespace Java.Lang { + #region SuppressWarnings declaration + /// + /// + /// + public partial class SuppressWarnings : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "java.lang.SuppressWarnings"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SuppressWarnings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SuppressWarnings() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SuppressWarnings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SuppressWarnings(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISuppressWarnings /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ISuppressWarnings : Java.Lang.Annotation.IAnnotation } #endregion - #region SuppressWarnings + #region SuppressWarnings implementation public partial class SuppressWarnings : Java.Lang.ISuppressWarnings { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/System.cs b/src/net/JNet/Generated/Java/Lang/System.cs index 6e1b4c6d64..9c6b710815 100644 --- a/src/net/JNet/Generated/Java/Lang/System.cs +++ b/src/net/JNet/Generated/Java/Lang/System.cs @@ -25,7 +25,191 @@ namespace Java.Lang { - #region System + #region System declaration + /// + /// + /// + public partial class System : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.System"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public System() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public System(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Logger declaration + /// + /// + /// + public partial class Logger : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.System$Logger"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Logger class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Logger() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Logger class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Logger(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + #region Level declaration + /// + /// + /// + public partial class Level : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.System$Logger$Level"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Level() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Level(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region LoggerFinder declaration + /// + /// + /// + public partial class LoggerFinder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.System$LoggerFinder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LoggerFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LoggerFinder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LoggerFinder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LoggerFinder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region System implementation public partial class System { #region Constructors @@ -287,7 +471,7 @@ public static void SetOut(Java.Io.PrintStream arg0) #endregion #region Nested classes - #region Logger + #region Logger implementation public partial class Logger { #region Constructors @@ -406,7 +590,7 @@ public void Log(Java.Lang.System.Logger.Level arg0, Java.Util.Function.Supplier< #endregion #region Nested classes - #region Level + #region Level implementation public partial class Level { #region Constructors @@ -517,7 +701,7 @@ public int Severity } #endregion - #region LoggerFinder + #region LoggerFinder implementation public partial class LoggerFinder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Thread.cs b/src/net/JNet/Generated/Java/Lang/Thread.cs index 75e64b589a..e1b6474c8d 100644 --- a/src/net/JNet/Generated/Java/Lang/Thread.cs +++ b/src/net/JNet/Generated/Java/Lang/Thread.cs @@ -25,7 +25,97 @@ namespace Java.Lang { - #region Thread + #region Thread declaration + /// + /// + /// + public partial class Thread : Java.Lang.Runnable + { + const string _bridgeClassName = "java.lang.Thread"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Thread() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Thread(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region State declaration + /// + /// + /// + public partial class State : Java.Lang.Enum + { + const string _bridgeClassName = "java.lang.Thread$State"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public State() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public State(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Thread implementation public partial class Thread { #region Constructors @@ -368,7 +458,7 @@ public void Run() #endregion #region Nested classes - #region State + #region State implementation public partial class State { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ThreadDeath.cs b/src/net/JNet/Generated/Java/Lang/ThreadDeath.cs index e1572fb32a..8b238ce88e 100644 --- a/src/net/JNet/Generated/Java/Lang/ThreadDeath.cs +++ b/src/net/JNet/Generated/Java/Lang/ThreadDeath.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region ThreadDeath + #region ThreadDeath declaration + /// + /// + /// + public partial class ThreadDeath : Java.Lang.Error + { + const string _bridgeClassName = "java.lang.ThreadDeath"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ThreadDeath implementation public partial class ThreadDeath { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ThreadGroup.cs b/src/net/JNet/Generated/Java/Lang/ThreadGroup.cs index ced05c005e..a733e749cd 100644 --- a/src/net/JNet/Generated/Java/Lang/ThreadGroup.cs +++ b/src/net/JNet/Generated/Java/Lang/ThreadGroup.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region ThreadGroup + #region ThreadGroup declaration + /// + /// + /// + public partial class ThreadGroup : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ThreadGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThreadGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThreadGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThreadGroup implementation public partial class ThreadGroup { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/ThreadLocal.cs b/src/net/JNet/Generated/Java/Lang/ThreadLocal.cs index 7e5f4e643a..037e589a17 100644 --- a/src/net/JNet/Generated/Java/Lang/ThreadLocal.cs +++ b/src/net/JNet/Generated/Java/Lang/ThreadLocal.cs @@ -25,7 +25,98 @@ namespace Java.Lang { - #region ThreadLocal + #region ThreadLocal declaration + /// + /// + /// + public partial class ThreadLocal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.ThreadLocal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThreadLocal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThreadLocal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThreadLocal declaration + /// + /// + /// + /// + public partial class ThreadLocal : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.lang.ThreadLocal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThreadLocal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThreadLocal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThreadLocal implementation public partial class ThreadLocal { #region Constructors @@ -88,7 +179,7 @@ public void Set(object arg0) } #endregion - #region ThreadLocal + #region ThreadLocal implementation public partial class ThreadLocal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/TypeNotPresentException.cs b/src/net/JNet/Generated/Java/Lang/TypeNotPresentException.cs index e80a8f579e..5743bfe994 100644 --- a/src/net/JNet/Generated/Java/Lang/TypeNotPresentException.cs +++ b/src/net/JNet/Generated/Java/Lang/TypeNotPresentException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region TypeNotPresentException + #region TypeNotPresentException declaration + /// + /// + /// + public partial class TypeNotPresentException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.TypeNotPresentException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TypeNotPresentException implementation public partial class TypeNotPresentException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/UnknownError.cs b/src/net/JNet/Generated/Java/Lang/UnknownError.cs index e0fb60f53e..32b394fa48 100644 --- a/src/net/JNet/Generated/Java/Lang/UnknownError.cs +++ b/src/net/JNet/Generated/Java/Lang/UnknownError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region UnknownError + #region UnknownError declaration + /// + /// + /// + public partial class UnknownError : Java.Lang.VirtualMachineError + { + const string _bridgeClassName = "java.lang.UnknownError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownError implementation public partial class UnknownError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/UnsatisfiedLinkError.cs b/src/net/JNet/Generated/Java/Lang/UnsatisfiedLinkError.cs index 3694f0ff11..966c78ecc8 100644 --- a/src/net/JNet/Generated/Java/Lang/UnsatisfiedLinkError.cs +++ b/src/net/JNet/Generated/Java/Lang/UnsatisfiedLinkError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region UnsatisfiedLinkError + #region UnsatisfiedLinkError declaration + /// + /// + /// + public partial class UnsatisfiedLinkError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.UnsatisfiedLinkError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsatisfiedLinkError implementation public partial class UnsatisfiedLinkError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/UnsupportedClassVersionError.cs b/src/net/JNet/Generated/Java/Lang/UnsupportedClassVersionError.cs index 4d3b12b23c..b0be4ea7b9 100644 --- a/src/net/JNet/Generated/Java/Lang/UnsupportedClassVersionError.cs +++ b/src/net/JNet/Generated/Java/Lang/UnsupportedClassVersionError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region UnsupportedClassVersionError + #region UnsupportedClassVersionError declaration + /// + /// + /// + public partial class UnsupportedClassVersionError : Java.Lang.ClassFormatError + { + const string _bridgeClassName = "java.lang.UnsupportedClassVersionError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedClassVersionError implementation public partial class UnsupportedClassVersionError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/UnsupportedOperationException.cs b/src/net/JNet/Generated/Java/Lang/UnsupportedOperationException.cs index 924307273a..83b9c928d6 100644 --- a/src/net/JNet/Generated/Java/Lang/UnsupportedOperationException.cs +++ b/src/net/JNet/Generated/Java/Lang/UnsupportedOperationException.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region UnsupportedOperationException + #region UnsupportedOperationException declaration + /// + /// + /// + public partial class UnsupportedOperationException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.lang.UnsupportedOperationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedOperationException implementation public partial class UnsupportedOperationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/VerifyError.cs b/src/net/JNet/Generated/Java/Lang/VerifyError.cs index 5cd4b7defa..ed4c1dde11 100644 --- a/src/net/JNet/Generated/Java/Lang/VerifyError.cs +++ b/src/net/JNet/Generated/Java/Lang/VerifyError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region VerifyError + #region VerifyError declaration + /// + /// + /// + public partial class VerifyError : Java.Lang.LinkageError + { + const string _bridgeClassName = "java.lang.VerifyError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region VerifyError implementation public partial class VerifyError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/VirtualMachineError.cs b/src/net/JNet/Generated/Java/Lang/VirtualMachineError.cs index a5dd22370c..55e2728c74 100644 --- a/src/net/JNet/Generated/Java/Lang/VirtualMachineError.cs +++ b/src/net/JNet/Generated/Java/Lang/VirtualMachineError.cs @@ -25,7 +25,24 @@ namespace Java.Lang { - #region VirtualMachineError + #region VirtualMachineError declaration + /// + /// + /// + public partial class VirtualMachineError : Java.Lang.Error + { + const string _bridgeClassName = "java.lang.VirtualMachineError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region VirtualMachineError implementation public partial class VirtualMachineError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Lang/Void.cs b/src/net/JNet/Generated/Java/Lang/Void.cs index 0df1438e40..cbc544e453 100644 --- a/src/net/JNet/Generated/Java/Lang/Void.cs +++ b/src/net/JNet/Generated/Java/Lang/Void.cs @@ -25,7 +25,52 @@ namespace Java.Lang { - #region Void + #region Void declaration + /// + /// + /// + public partial class Void : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.lang.Void"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Void() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Void(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Void implementation public partial class Void { #region Constructors diff --git a/src/net/JNet/Generated/Java/Math/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Math/AllPackageClasses.cs deleted file mode 100644 index 05bf63f2dd..0000000000 --- a/src/net/JNet/Generated/Java/Math/AllPackageClasses.cs +++ /dev/null @@ -1,210 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Math -{ - #region BigDecimal - /// - /// - /// - public partial class BigDecimal : Java.Lang.Number - { - const string _bridgeClassName = "java.math.BigDecimal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BigDecimal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BigDecimal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BigInteger - /// - /// - /// - public partial class BigInteger : Java.Lang.Number - { - const string _bridgeClassName = "java.math.BigInteger"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BigInteger() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BigInteger(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MathContext - /// - /// - /// - public partial class MathContext : Java.Io.Serializable - { - const string _bridgeClassName = "java.math.MathContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MathContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MathContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoundingMode - /// - /// - /// - public partial class RoundingMode : Java.Lang.Enum - { - const string _bridgeClassName = "java.math.RoundingMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoundingMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoundingMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Math/BigDecimal.cs b/src/net/JNet/Generated/Java/Math/BigDecimal.cs index 53f186ae97..dd07c499ae 100644 --- a/src/net/JNet/Generated/Java/Math/BigDecimal.cs +++ b/src/net/JNet/Generated/Java/Math/BigDecimal.cs @@ -25,7 +25,52 @@ namespace Java.Math { - #region BigDecimal + #region BigDecimal declaration + /// + /// + /// + public partial class BigDecimal : Java.Lang.Number + { + const string _bridgeClassName = "java.math.BigDecimal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BigDecimal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BigDecimal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BigDecimal implementation public partial class BigDecimal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Math/BigInteger.cs b/src/net/JNet/Generated/Java/Math/BigInteger.cs index a037d7adc0..405a126777 100644 --- a/src/net/JNet/Generated/Java/Math/BigInteger.cs +++ b/src/net/JNet/Generated/Java/Math/BigInteger.cs @@ -25,7 +25,52 @@ namespace Java.Math { - #region BigInteger + #region BigInteger declaration + /// + /// + /// + public partial class BigInteger : Java.Lang.Number + { + const string _bridgeClassName = "java.math.BigInteger"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BigInteger() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BigInteger(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BigInteger implementation public partial class BigInteger { #region Constructors diff --git a/src/net/JNet/Generated/Java/Math/MathContext.cs b/src/net/JNet/Generated/Java/Math/MathContext.cs index 71e16d6d15..7610ecb745 100644 --- a/src/net/JNet/Generated/Java/Math/MathContext.cs +++ b/src/net/JNet/Generated/Java/Math/MathContext.cs @@ -25,7 +25,52 @@ namespace Java.Math { - #region MathContext + #region MathContext declaration + /// + /// + /// + public partial class MathContext : Java.Io.Serializable + { + const string _bridgeClassName = "java.math.MathContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MathContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MathContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MathContext implementation public partial class MathContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Math/RoundingMode.cs b/src/net/JNet/Generated/Java/Math/RoundingMode.cs index b48dca8735..79e607bede 100644 --- a/src/net/JNet/Generated/Java/Math/RoundingMode.cs +++ b/src/net/JNet/Generated/Java/Math/RoundingMode.cs @@ -25,7 +25,52 @@ namespace Java.Math { - #region RoundingMode + #region RoundingMode declaration + /// + /// + /// + public partial class RoundingMode : Java.Lang.Enum + { + const string _bridgeClassName = "java.math.RoundingMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoundingMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoundingMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoundingMode implementation public partial class RoundingMode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Net/AllPackageClasses.cs deleted file mode 100644 index dcf40af0d2..0000000000 --- a/src/net/JNet/Generated/Java/Net/AllPackageClasses.cs +++ /dev/null @@ -1,2717 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Net -{ - #region Authenticator - /// - /// - /// - public partial class Authenticator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.Authenticator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Authenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Authenticator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Authenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Authenticator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region RequestorType - /// - /// - /// - public partial class RequestorType : Java.Lang.Enum - { - const string _bridgeClassName = "java.net.Authenticator$RequestorType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RequestorType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RequestorType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BindException - /// - /// - /// - public partial class BindException : Java.Net.SocketException - { - const string _bridgeClassName = "java.net.BindException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CacheRequest - /// - /// - /// - public partial class CacheRequest : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.CacheRequest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CacheRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CacheRequest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CacheRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CacheRequest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CacheResponse - /// - /// - /// - public partial class CacheResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.CacheResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CacheResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CacheResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConnectException - /// - /// - /// - public partial class ConnectException : Java.Net.SocketException - { - const string _bridgeClassName = "java.net.ConnectException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ContentHandler - /// - /// - /// - public partial class ContentHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.ContentHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContentHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContentHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ContentHandlerFactory - /// - /// - /// - public partial class ContentHandlerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.ContentHandlerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ContentHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContentHandlerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ContentHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContentHandlerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CookieHandler - /// - /// - /// - public partial class CookieHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.CookieHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CookieHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CookieHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CookieHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CookieHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CookieManager - /// - /// - /// - public partial class CookieManager : Java.Net.CookieHandler - { - const string _bridgeClassName = "java.net.CookieManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CookieManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CookieManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CookiePolicy - /// - /// - /// - public partial class CookiePolicy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.CookiePolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CookiePolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CookiePolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CookiePolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CookiePolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CookieStore - /// - /// - /// - public partial class CookieStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.CookieStore"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CookieStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CookieStore() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CookieStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CookieStore(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DatagramPacket - /// - /// - /// - public partial class DatagramPacket : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.DatagramPacket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DatagramPacket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DatagramPacket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DatagramSocket - /// - /// - /// - public partial class DatagramSocket : Java.Io.Closeable - { - const string _bridgeClassName = "java.net.DatagramSocket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DatagramSocket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DatagramSocket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DatagramSocketImpl - /// - /// - /// - public partial class DatagramSocketImpl : Java.Net.SocketOptions - { - const string _bridgeClassName = "java.net.DatagramSocketImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DatagramSocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatagramSocketImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DatagramSocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatagramSocketImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DatagramSocketImplFactory - /// - /// - /// - public partial class DatagramSocketImplFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.DatagramSocketImplFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DatagramSocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatagramSocketImplFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DatagramSocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatagramSocketImplFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileNameMap - /// - /// - /// - public partial class FileNameMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.FileNameMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileNameMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileNameMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileNameMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileNameMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HttpCookie - /// - /// - /// - public partial class HttpCookie : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.net.HttpCookie"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HttpCookie() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HttpCookie(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HttpRetryException - /// - /// - /// - public partial class HttpRetryException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.HttpRetryException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region HttpURLConnection - /// - /// - /// - public partial class HttpURLConnection : Java.Net.URLConnection - { - const string _bridgeClassName = "java.net.HttpURLConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HttpURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpURLConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HttpURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpURLConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IDN - /// - /// - /// - public partial class IDN : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.IDN"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IDN() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IDN(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Inet4Address - /// - /// - /// - public partial class Inet4Address : Java.Net.InetAddress - { - const string _bridgeClassName = "java.net.Inet4Address"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Inet4Address() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Inet4Address(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Inet6Address - /// - /// - /// - public partial class Inet6Address : Java.Net.InetAddress - { - const string _bridgeClassName = "java.net.Inet6Address"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Inet6Address() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Inet6Address(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InetAddress - /// - /// - /// - public partial class InetAddress : Java.Io.Serializable - { - const string _bridgeClassName = "java.net.InetAddress"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InetAddress() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InetAddress(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InetSocketAddress - /// - /// - /// - public partial class InetSocketAddress : Java.Net.SocketAddress - { - const string _bridgeClassName = "java.net.InetSocketAddress"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InetSocketAddress() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InetSocketAddress(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InterfaceAddress - /// - /// - /// - public partial class InterfaceAddress : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.InterfaceAddress"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InterfaceAddress() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InterfaceAddress(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JarURLConnection - /// - /// - /// - public partial class JarURLConnection : Java.Net.URLConnection - { - const string _bridgeClassName = "java.net.JarURLConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JarURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JarURLConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JarURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JarURLConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MalformedURLException - /// - /// - /// - public partial class MalformedURLException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.MalformedURLException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MulticastSocket - /// - /// - /// - public partial class MulticastSocket : Java.Net.DatagramSocket - { - const string _bridgeClassName = "java.net.MulticastSocket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MulticastSocket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MulticastSocket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NetPermission - /// - /// - /// - public partial class NetPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.net.NetPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NetPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NetPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NetworkInterface - /// - /// - /// - public partial class NetworkInterface : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.NetworkInterface"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NetworkInterface() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NetworkInterface(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoRouteToHostException - /// - /// - /// - public partial class NoRouteToHostException : Java.Net.SocketException - { - const string _bridgeClassName = "java.net.NoRouteToHostException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PasswordAuthentication - /// - /// - /// - public partial class PasswordAuthentication : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.PasswordAuthentication"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PasswordAuthentication() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PasswordAuthentication(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PortUnreachableException - /// - /// - /// - public partial class PortUnreachableException : Java.Net.SocketException - { - const string _bridgeClassName = "java.net.PortUnreachableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ProtocolException - /// - /// - /// - public partial class ProtocolException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.ProtocolException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ProtocolFamily - /// - /// - /// - public partial class ProtocolFamily : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.ProtocolFamily"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProtocolFamily class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProtocolFamily() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProtocolFamily class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProtocolFamily(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Proxy - /// - /// - /// - public partial class Proxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.Proxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Proxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Proxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Java.Lang.Enum - { - const string _bridgeClassName = "java.net.Proxy$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ProxySelector - /// - /// - /// - public partial class ProxySelector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.ProxySelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProxySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProxySelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProxySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProxySelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResponseCache - /// - /// - /// - public partial class ResponseCache : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.ResponseCache"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResponseCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResponseCache() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResponseCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResponseCache(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecureCacheResponse - /// - /// - /// - public partial class SecureCacheResponse : Java.Net.CacheResponse - { - const string _bridgeClassName = "java.net.SecureCacheResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecureCacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureCacheResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecureCacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureCacheResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServerSocket - /// - /// - /// - public partial class ServerSocket : Java.Io.Closeable - { - const string _bridgeClassName = "java.net.ServerSocket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ServerSocket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ServerSocket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Socket - /// - /// - /// - public partial class Socket : Java.Io.Closeable - { - const string _bridgeClassName = "java.net.Socket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Socket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Socket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketAddress - /// - /// - /// - public partial class SocketAddress : Java.Io.Serializable - { - const string _bridgeClassName = "java.net.SocketAddress"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketAddress class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketAddress() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketAddress class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketAddress(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketException - /// - /// - /// - public partial class SocketException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.SocketException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SocketImpl - /// - /// - /// - public partial class SocketImpl : Java.Net.SocketOptions - { - const string _bridgeClassName = "java.net.SocketImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketImplFactory - /// - /// - /// - public partial class SocketImplFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.SocketImplFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketImplFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketImplFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketOption - /// - /// - /// - public partial class SocketOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.SocketOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketOption - /// - /// - /// - /// - public partial class SocketOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.net.SocketOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketOptions - /// - /// - /// - public partial class SocketOptions : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.SocketOptions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketOptions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketOptions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketPermission - /// - /// - /// - public partial class SocketPermission : Java.Security.Permission - { - const string _bridgeClassName = "java.net.SocketPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SocketPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SocketPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketTimeoutException - /// - /// - /// - public partial class SocketTimeoutException : Java.Io.InterruptedIOException - { - const string _bridgeClassName = "java.net.SocketTimeoutException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StandardProtocolFamily - /// - /// - /// - public partial class StandardProtocolFamily : Java.Lang.Enum - { - const string _bridgeClassName = "java.net.StandardProtocolFamily"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardProtocolFamily() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardProtocolFamily(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardSocketOptions - /// - /// - /// - public partial class StandardSocketOptions : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.StandardSocketOptions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardSocketOptions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardSocketOptions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnknownHostException - /// - /// - /// - public partial class UnknownHostException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.UnknownHostException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownServiceException - /// - /// - /// - public partial class UnknownServiceException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.UnknownServiceException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region URI - /// - /// - /// - public partial class URI : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.URI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URISyntaxException - /// - /// - /// - public partial class URISyntaxException : Java.Lang.Exception - { - const string _bridgeClassName = "java.net.URISyntaxException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region URL - /// - /// - /// - public partial class URL : Java.Io.Serializable - { - const string _bridgeClassName = "java.net.URL"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URL() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URL(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLClassLoader - /// - /// - /// - public partial class URLClassLoader : Java.Security.SecureClassLoader - { - const string _bridgeClassName = "java.net.URLClassLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URLClassLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URLClassLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLConnection - /// - /// - /// - public partial class URLConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.URLConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLDecoder - /// - /// - /// - public partial class URLDecoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.URLDecoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URLDecoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URLDecoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLEncoder - /// - /// - /// - public partial class URLEncoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.URLEncoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URLEncoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URLEncoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLPermission - /// - /// - /// - public partial class URLPermission : Java.Security.Permission - { - const string _bridgeClassName = "java.net.URLPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URLPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URLPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLStreamHandler - /// - /// - /// - public partial class URLStreamHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.URLStreamHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URLStreamHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLStreamHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URLStreamHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLStreamHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URLStreamHandlerFactory - /// - /// - /// - public partial class URLStreamHandlerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.URLStreamHandlerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URLStreamHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLStreamHandlerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URLStreamHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLStreamHandlerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Net/Authenticator.cs b/src/net/JNet/Generated/Java/Net/Authenticator.cs index ba9c49fd06..384868022d 100644 --- a/src/net/JNet/Generated/Java/Net/Authenticator.cs +++ b/src/net/JNet/Generated/Java/Net/Authenticator.cs @@ -25,7 +25,99 @@ namespace Java.Net { - #region Authenticator + #region Authenticator declaration + /// + /// + /// + public partial class Authenticator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.Authenticator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Authenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Authenticator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Authenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Authenticator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region RequestorType declaration + /// + /// + /// + public partial class RequestorType : Java.Lang.Enum + { + const string _bridgeClassName = "java.net.Authenticator$RequestorType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RequestorType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RequestorType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Authenticator implementation public partial class Authenticator { #region Constructors @@ -132,7 +224,7 @@ public Java.Net.PasswordAuthentication RequestPasswordAuthenticationInstance(Jav #endregion #region Nested classes - #region RequestorType + #region RequestorType implementation public partial class RequestorType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/BindException.cs b/src/net/JNet/Generated/Java/Net/BindException.cs index 52db17ba8e..46b82a2ad7 100644 --- a/src/net/JNet/Generated/Java/Net/BindException.cs +++ b/src/net/JNet/Generated/Java/Net/BindException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region BindException + #region BindException declaration + /// + /// + /// + public partial class BindException : Java.Net.SocketException + { + const string _bridgeClassName = "java.net.BindException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BindException implementation public partial class BindException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/CacheRequest.cs b/src/net/JNet/Generated/Java/Net/CacheRequest.cs index 5dc29ad74d..7345143229 100644 --- a/src/net/JNet/Generated/Java/Net/CacheRequest.cs +++ b/src/net/JNet/Generated/Java/Net/CacheRequest.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region CacheRequest + #region CacheRequest declaration + /// + /// + /// + public partial class CacheRequest : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.CacheRequest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CacheRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CacheRequest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CacheRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CacheRequest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CacheRequest implementation public partial class CacheRequest { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/CacheResponse.cs b/src/net/JNet/Generated/Java/Net/CacheResponse.cs index 9ffc13a585..34a2e64bc9 100644 --- a/src/net/JNet/Generated/Java/Net/CacheResponse.cs +++ b/src/net/JNet/Generated/Java/Net/CacheResponse.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region CacheResponse + #region CacheResponse declaration + /// + /// + /// + public partial class CacheResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.CacheResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CacheResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CacheResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CacheResponse implementation public partial class CacheResponse { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ConnectException.cs b/src/net/JNet/Generated/Java/Net/ConnectException.cs index 907218bb73..733f0d78e4 100644 --- a/src/net/JNet/Generated/Java/Net/ConnectException.cs +++ b/src/net/JNet/Generated/Java/Net/ConnectException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region ConnectException + #region ConnectException declaration + /// + /// + /// + public partial class ConnectException : Java.Net.SocketException + { + const string _bridgeClassName = "java.net.ConnectException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ConnectException implementation public partial class ConnectException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ContentHandler.cs b/src/net/JNet/Generated/Java/Net/ContentHandler.cs index 8ef12aa1f6..a90e39d8bc 100644 --- a/src/net/JNet/Generated/Java/Net/ContentHandler.cs +++ b/src/net/JNet/Generated/Java/Net/ContentHandler.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region ContentHandler + #region ContentHandler declaration + /// + /// + /// + public partial class ContentHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.ContentHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContentHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContentHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ContentHandler implementation public partial class ContentHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ContentHandlerFactory.cs b/src/net/JNet/Generated/Java/Net/ContentHandlerFactory.cs index ec8e865917..caf9c4e44d 100644 --- a/src/net/JNet/Generated/Java/Net/ContentHandlerFactory.cs +++ b/src/net/JNet/Generated/Java/Net/ContentHandlerFactory.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region ContentHandlerFactory declaration + /// + /// + /// + public partial class ContentHandlerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.ContentHandlerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ContentHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContentHandlerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ContentHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContentHandlerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IContentHandlerFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IContentHandlerFactory } #endregion - #region ContentHandlerFactory + #region ContentHandlerFactory implementation public partial class ContentHandlerFactory : Java.Net.IContentHandlerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/CookieHandler.cs b/src/net/JNet/Generated/Java/Net/CookieHandler.cs index 29c73928de..e322a5dd43 100644 --- a/src/net/JNet/Generated/Java/Net/CookieHandler.cs +++ b/src/net/JNet/Generated/Java/Net/CookieHandler.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region CookieHandler + #region CookieHandler declaration + /// + /// + /// + public partial class CookieHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.CookieHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CookieHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CookieHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CookieHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CookieHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CookieHandler implementation public partial class CookieHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/CookieManager.cs b/src/net/JNet/Generated/Java/Net/CookieManager.cs index 434ddb9cbf..431790ba92 100644 --- a/src/net/JNet/Generated/Java/Net/CookieManager.cs +++ b/src/net/JNet/Generated/Java/Net/CookieManager.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region CookieManager + #region CookieManager declaration + /// + /// + /// + public partial class CookieManager : Java.Net.CookieHandler + { + const string _bridgeClassName = "java.net.CookieManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CookieManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CookieManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CookieManager implementation public partial class CookieManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/CookiePolicy.cs b/src/net/JNet/Generated/Java/Net/CookiePolicy.cs index 6750a14072..86c850e3b8 100644 --- a/src/net/JNet/Generated/Java/Net/CookiePolicy.cs +++ b/src/net/JNet/Generated/Java/Net/CookiePolicy.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region CookiePolicy declaration + /// + /// + /// + public partial class CookiePolicy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.CookiePolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CookiePolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CookiePolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CookiePolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CookiePolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICookiePolicy /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface ICookiePolicy } #endregion - #region CookiePolicy + #region CookiePolicy implementation public partial class CookiePolicy : Java.Net.ICookiePolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/CookieStore.cs b/src/net/JNet/Generated/Java/Net/CookieStore.cs index eae246ef77..f0dbdbdb25 100644 --- a/src/net/JNet/Generated/Java/Net/CookieStore.cs +++ b/src/net/JNet/Generated/Java/Net/CookieStore.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region CookieStore declaration + /// + /// + /// + public partial class CookieStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.CookieStore"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CookieStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CookieStore() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CookieStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CookieStore(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICookieStore /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface ICookieStore } #endregion - #region CookieStore + #region CookieStore implementation public partial class CookieStore : Java.Net.ICookieStore { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/DatagramPacket.cs b/src/net/JNet/Generated/Java/Net/DatagramPacket.cs index 24a27a6dd2..77684a7749 100644 --- a/src/net/JNet/Generated/Java/Net/DatagramPacket.cs +++ b/src/net/JNet/Generated/Java/Net/DatagramPacket.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region DatagramPacket + #region DatagramPacket declaration + /// + /// + /// + public partial class DatagramPacket : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.DatagramPacket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DatagramPacket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DatagramPacket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DatagramPacket implementation public partial class DatagramPacket { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/DatagramSocket.cs b/src/net/JNet/Generated/Java/Net/DatagramSocket.cs index 8772139b31..76a8429d11 100644 --- a/src/net/JNet/Generated/Java/Net/DatagramSocket.cs +++ b/src/net/JNet/Generated/Java/Net/DatagramSocket.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region DatagramSocket + #region DatagramSocket declaration + /// + /// + /// + public partial class DatagramSocket : Java.Io.Closeable + { + const string _bridgeClassName = "java.net.DatagramSocket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DatagramSocket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DatagramSocket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DatagramSocket implementation public partial class DatagramSocket { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/DatagramSocketImpl.cs b/src/net/JNet/Generated/Java/Net/DatagramSocketImpl.cs index dd1abf5155..40c2c7733d 100644 --- a/src/net/JNet/Generated/Java/Net/DatagramSocketImpl.cs +++ b/src/net/JNet/Generated/Java/Net/DatagramSocketImpl.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region DatagramSocketImpl + #region DatagramSocketImpl declaration + /// + /// + /// + public partial class DatagramSocketImpl : Java.Net.SocketOptions + { + const string _bridgeClassName = "java.net.DatagramSocketImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DatagramSocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatagramSocketImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DatagramSocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatagramSocketImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DatagramSocketImpl implementation public partial class DatagramSocketImpl { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/DatagramSocketImplFactory.cs b/src/net/JNet/Generated/Java/Net/DatagramSocketImplFactory.cs index 10fa84c88f..8a475c3072 100644 --- a/src/net/JNet/Generated/Java/Net/DatagramSocketImplFactory.cs +++ b/src/net/JNet/Generated/Java/Net/DatagramSocketImplFactory.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region DatagramSocketImplFactory declaration + /// + /// + /// + public partial class DatagramSocketImplFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.DatagramSocketImplFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DatagramSocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatagramSocketImplFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DatagramSocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatagramSocketImplFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDatagramSocketImplFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IDatagramSocketImplFactory } #endregion - #region DatagramSocketImplFactory + #region DatagramSocketImplFactory implementation public partial class DatagramSocketImplFactory : Java.Net.IDatagramSocketImplFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/FileNameMap.cs b/src/net/JNet/Generated/Java/Net/FileNameMap.cs index aeae685616..effabbd096 100644 --- a/src/net/JNet/Generated/Java/Net/FileNameMap.cs +++ b/src/net/JNet/Generated/Java/Net/FileNameMap.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region FileNameMap declaration + /// + /// + /// + public partial class FileNameMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.FileNameMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileNameMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileNameMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileNameMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileNameMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFileNameMap /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IFileNameMap } #endregion - #region FileNameMap + #region FileNameMap implementation public partial class FileNameMap : Java.Net.IFileNameMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Net/Http/AllPackageClasses.cs deleted file mode 100644 index 12ec4f69e6..0000000000 --- a/src/net/JNet/Generated/Java/Net/Http/AllPackageClasses.cs +++ /dev/null @@ -1,1174 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Net.Http -{ - #region HttpClient - /// - /// - /// - public partial class HttpClient : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpClient"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HttpClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpClient() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HttpClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpClient(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpClient$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Redirect - /// - /// - /// - public partial class Redirect : Java.Lang.Enum - { - const string _bridgeClassName = "java.net.http.HttpClient$Redirect"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Redirect() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Redirect(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Version - /// - /// - /// - public partial class Version : Java.Lang.Enum - { - const string _bridgeClassName = "java.net.http.HttpClient$Version"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Version() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Version(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HttpConnectTimeoutException - /// - /// - /// - public partial class HttpConnectTimeoutException : Java.Net.Http.HttpTimeoutException - { - const string _bridgeClassName = "java.net.http.HttpConnectTimeoutException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region HttpHeaders - /// - /// - /// - public partial class HttpHeaders : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpHeaders"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HttpHeaders() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HttpHeaders(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HttpRequest - /// - /// - /// - public partial class HttpRequest : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpRequest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HttpRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpRequest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HttpRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpRequest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BodyPublisher - /// - /// - /// - public partial class BodyPublisher : Java.Util.Concurrent.Flow.Publisher - { - const string _bridgeClassName = "java.net.http.HttpRequest$BodyPublisher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BodyPublisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodyPublisher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BodyPublisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodyPublisher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BodyPublishers - /// - /// - /// - public partial class BodyPublishers : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpRequest$BodyPublishers"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BodyPublishers() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BodyPublishers(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpRequest$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HttpResponse - /// - /// - /// - public partial class HttpResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BodyHandler - /// - /// - /// - public partial class BodyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpResponse$BodyHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodyHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodyHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BodyHandler - /// - /// - /// - /// - public partial class BodyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.net.http.HttpResponse$BodyHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodyHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodyHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BodyHandlers - /// - /// - /// - public partial class BodyHandlers : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpResponse$BodyHandlers"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BodyHandlers() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BodyHandlers(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BodySubscriber - /// - /// - /// - public partial class BodySubscriber : Java.Util.Concurrent.Flow.Subscriber - { - const string _bridgeClassName = "java.net.http.HttpResponse$BodySubscriber"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodySubscriber() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodySubscriber(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BodySubscriber - /// - /// - /// - /// - public partial class BodySubscriber : Java.Util.Concurrent.Flow.Subscriber> - { - const string _bridgeClassName = "java.net.http.HttpResponse$BodySubscriber"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodySubscriber() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BodySubscriber(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BodySubscribers - /// - /// - /// - public partial class BodySubscribers : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpResponse$BodySubscribers"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BodySubscribers() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BodySubscribers(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PushPromiseHandler - /// - /// - /// - public partial class PushPromiseHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpResponse$PushPromiseHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PushPromiseHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PushPromiseHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PushPromiseHandler - /// - /// - /// - /// - public partial class PushPromiseHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.net.http.HttpResponse$PushPromiseHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PushPromiseHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PushPromiseHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ResponseInfo - /// - /// - /// - public partial class ResponseInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.HttpResponse$ResponseInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResponseInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResponseInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResponseInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResponseInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HttpResponse - /// - /// - /// - /// - public partial class HttpResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.net.http.HttpResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HttpTimeoutException - /// - /// - /// - public partial class HttpTimeoutException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.http.HttpTimeoutException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region WebSocket - /// - /// - /// - public partial class WebSocket : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.WebSocket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WebSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WebSocket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WebSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WebSocket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.net.http.WebSocket$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Listener - /// - /// - /// - public partial class Listener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Listener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.net.http.WebSocket_Listener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ListenerDirect : Listener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.net.http.WebSocket$Listener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - } - #endregion - - - } - #endregion - - #region WebSocketHandshakeException - /// - /// - /// - public partial class WebSocketHandshakeException : Java.Io.IOException - { - const string _bridgeClassName = "java.net.http.WebSocketHandshakeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Net/Http/HttpClient.cs b/src/net/JNet/Generated/Java/Net/Http/HttpClient.cs index cc0899fa04..9c165b88f1 100644 --- a/src/net/JNet/Generated/Java/Net/Http/HttpClient.cs +++ b/src/net/JNet/Generated/Java/Net/Http/HttpClient.cs @@ -25,7 +25,191 @@ namespace Java.Net.Http { - #region HttpClient + #region HttpClient declaration + /// + /// + /// + public partial class HttpClient : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpClient"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HttpClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpClient() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HttpClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpClient(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpClient$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Redirect declaration + /// + /// + /// + public partial class Redirect : Java.Lang.Enum + { + const string _bridgeClassName = "java.net.http.HttpClient$Redirect"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Redirect() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Redirect(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Version declaration + /// + /// + /// + public partial class Version : Java.Lang.Enum + { + const string _bridgeClassName = "java.net.http.HttpClient$Version"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Version() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Version(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HttpClient implementation public partial class HttpClient { #region Constructors @@ -181,7 +365,7 @@ public Java.Net.Http.WebSocket.Builder NewWebSocketBuilder() #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors @@ -316,7 +500,7 @@ public Java.Net.Http.HttpClient.Builder VersionMethod(Java.Net.Http.HttpClient.V } #endregion - #region Redirect + #region Redirect implementation public partial class Redirect { #region Constructors @@ -382,7 +566,7 @@ public static Java.Net.Http.HttpClient.Redirect[] Values() } #endregion - #region Version + #region Version implementation public partial class Version { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/HttpConnectTimeoutException.cs b/src/net/JNet/Generated/Java/Net/Http/HttpConnectTimeoutException.cs index a9cdd439f7..99fb5e9d32 100644 --- a/src/net/JNet/Generated/Java/Net/Http/HttpConnectTimeoutException.cs +++ b/src/net/JNet/Generated/Java/Net/Http/HttpConnectTimeoutException.cs @@ -25,7 +25,24 @@ namespace Java.Net.Http { - #region HttpConnectTimeoutException + #region HttpConnectTimeoutException declaration + /// + /// + /// + public partial class HttpConnectTimeoutException : Java.Net.Http.HttpTimeoutException + { + const string _bridgeClassName = "java.net.http.HttpConnectTimeoutException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region HttpConnectTimeoutException implementation public partial class HttpConnectTimeoutException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/HttpHeaders.cs b/src/net/JNet/Generated/Java/Net/Http/HttpHeaders.cs index 776e37beeb..b556dca799 100644 --- a/src/net/JNet/Generated/Java/Net/Http/HttpHeaders.cs +++ b/src/net/JNet/Generated/Java/Net/Http/HttpHeaders.cs @@ -25,7 +25,52 @@ namespace Java.Net.Http { - #region HttpHeaders + #region HttpHeaders declaration + /// + /// + /// + public partial class HttpHeaders : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpHeaders"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HttpHeaders() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HttpHeaders(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HttpHeaders implementation public partial class HttpHeaders { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/HttpRequest.cs b/src/net/JNet/Generated/Java/Net/Http/HttpRequest.cs index 12af5cf3b6..3fa95f038a 100644 --- a/src/net/JNet/Generated/Java/Net/Http/HttpRequest.cs +++ b/src/net/JNet/Generated/Java/Net/Http/HttpRequest.cs @@ -25,7 +25,193 @@ namespace Java.Net.Http { - #region HttpRequest + #region HttpRequest declaration + /// + /// + /// + public partial class HttpRequest : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpRequest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HttpRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpRequest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HttpRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpRequest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BodyPublisher declaration + /// + /// + /// + public partial class BodyPublisher : Java.Util.Concurrent.Flow.Publisher + { + const string _bridgeClassName = "java.net.http.HttpRequest$BodyPublisher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BodyPublisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodyPublisher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BodyPublisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodyPublisher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BodyPublishers declaration + /// + /// + /// + public partial class BodyPublishers : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpRequest$BodyPublishers"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BodyPublishers() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BodyPublishers(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpRequest$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HttpRequest implementation public partial class HttpRequest { #region Constructors @@ -122,7 +308,7 @@ public Java.Net.URI Uri() #endregion #region Nested classes - #region BodyPublisher + #region BodyPublisher implementation public partial class BodyPublisher { #region Constructors @@ -161,7 +347,7 @@ public long ContentLength() } #endregion - #region BodyPublishers + #region BodyPublishers implementation public partial class BodyPublishers { #region Constructors @@ -289,7 +475,7 @@ public static Java.Net.Http.HttpRequest.BodyPublisher OfString(Java.Lang.String } #endregion - #region Builder + #region Builder implementation public partial class Builder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/HttpResponse.cs b/src/net/JNet/Generated/Java/Net/Http/HttpResponse.cs index 16facd2d7c..4bceb9777a 100644 --- a/src/net/JNet/Generated/Java/Net/Http/HttpResponse.cs +++ b/src/net/JNet/Generated/Java/Net/Http/HttpResponse.cs @@ -25,7 +25,524 @@ namespace Java.Net.Http { - #region HttpResponse + #region HttpResponse declaration + /// + /// + /// + public partial class HttpResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BodyHandler declaration + /// + /// + /// + public partial class BodyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpResponse$BodyHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodyHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodyHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BodyHandler declaration + /// + /// + /// + /// + public partial class BodyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.net.http.HttpResponse$BodyHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodyHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BodyHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodyHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BodyHandlers declaration + /// + /// + /// + public partial class BodyHandlers : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpResponse$BodyHandlers"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BodyHandlers() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BodyHandlers(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BodySubscriber declaration + /// + /// + /// + public partial class BodySubscriber : Java.Util.Concurrent.Flow.Subscriber + { + const string _bridgeClassName = "java.net.http.HttpResponse$BodySubscriber"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodySubscriber() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodySubscriber(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BodySubscriber declaration + /// + /// + /// + /// + public partial class BodySubscriber : Java.Util.Concurrent.Flow.Subscriber> + { + const string _bridgeClassName = "java.net.http.HttpResponse$BodySubscriber"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodySubscriber() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BodySubscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BodySubscriber(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BodySubscribers declaration + /// + /// + /// + public partial class BodySubscribers : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpResponse$BodySubscribers"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BodySubscribers() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BodySubscribers(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PushPromiseHandler declaration + /// + /// + /// + public partial class PushPromiseHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpResponse$PushPromiseHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PushPromiseHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PushPromiseHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PushPromiseHandler declaration + /// + /// + /// + /// + public partial class PushPromiseHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.net.http.HttpResponse$PushPromiseHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PushPromiseHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PushPromiseHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PushPromiseHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ResponseInfo declaration + /// + /// + /// + public partial class ResponseInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.HttpResponse$ResponseInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResponseInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResponseInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResponseInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResponseInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HttpResponse declaration + /// + /// + /// + /// + public partial class HttpResponse : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.net.http.HttpResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HttpResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HttpResponse implementation public partial class HttpResponse { #region Constructors @@ -113,7 +630,7 @@ public object Body() #endregion #region Nested classes - #region BodyHandler + #region BodyHandler implementation public partial class BodyHandler { #region Constructors @@ -153,7 +670,7 @@ public Java.Net.Http.HttpResponse.BodySubscriber Apply(Java.Net.Http.HttpRespons } #endregion - #region BodyHandler + #region BodyHandler implementation public partial class BodyHandler { #region Constructors @@ -197,7 +714,7 @@ public Java.Net.Http.HttpResponse.BodySubscriber Apply(Java.Net.Http.HttpResp } #endregion - #region BodyHandlers + #region BodyHandlers implementation public partial class BodyHandlers { #region Constructors @@ -393,7 +910,7 @@ public static Java.Net.Http.HttpResponse.BodyHandler OfByteArray() } #endregion - #region BodySubscriber + #region BodySubscriber implementation public partial class BodySubscriber { #region Constructors @@ -431,7 +948,7 @@ public Java.Util.Concurrent.CompletionStage Body } #endregion - #region BodySubscriber + #region BodySubscriber implementation public partial class BodySubscriber { #region Constructors @@ -473,7 +990,7 @@ public Java.Util.Concurrent.CompletionStage Body } #endregion - #region BodySubscribers + #region BodySubscribers implementation public partial class BodySubscribers { #region Constructors @@ -667,7 +1184,7 @@ public static Java.Net.Http.HttpResponse.BodySubscriber OfByteArray() } #endregion - #region PushPromiseHandler + #region PushPromiseHandler implementation public partial class PushPromiseHandler { #region Constructors @@ -718,7 +1235,7 @@ public void ApplyPushPromise(Java.Net.Http.HttpRequest arg0, Java.Net.Http.HttpR } #endregion - #region PushPromiseHandler + #region PushPromiseHandler implementation public partial class PushPromiseHandler { #region Constructors @@ -773,7 +1290,7 @@ public void ApplyPushPromise(Java.Net.Http.HttpRequest arg0, Java.Net.Http.HttpR } #endregion - #region ResponseInfo + #region ResponseInfo implementation public partial class ResponseInfo { #region Constructors @@ -893,7 +1410,7 @@ public partial interface IHttpResponse } #endregion - #region HttpResponse + #region HttpResponse implementation public partial class HttpResponse : Java.Net.Http.IHttpResponse { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/HttpTimeoutException.cs b/src/net/JNet/Generated/Java/Net/Http/HttpTimeoutException.cs index 3bb5111e9f..df00edde0a 100644 --- a/src/net/JNet/Generated/Java/Net/Http/HttpTimeoutException.cs +++ b/src/net/JNet/Generated/Java/Net/Http/HttpTimeoutException.cs @@ -25,7 +25,24 @@ namespace Java.Net.Http { - #region HttpTimeoutException + #region HttpTimeoutException declaration + /// + /// + /// + public partial class HttpTimeoutException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.http.HttpTimeoutException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region HttpTimeoutException implementation public partial class HttpTimeoutException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/WebSocket.cs b/src/net/JNet/Generated/Java/Net/Http/WebSocket.cs index f495fede0b..7c731941d2 100644 --- a/src/net/JNet/Generated/Java/Net/Http/WebSocket.cs +++ b/src/net/JNet/Generated/Java/Net/Http/WebSocket.cs @@ -25,6 +25,167 @@ namespace Java.Net.Http { + #region WebSocket declaration + /// + /// + /// + public partial class WebSocket : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.WebSocket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WebSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WebSocket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WebSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WebSocket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.http.WebSocket$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Listener declaration + /// + /// + /// + public partial class Listener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Listener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.net.http.WebSocket_Listener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ListenerDirect : Listener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.net.http.WebSocket$Listener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + } + #endregion + + + } + #endregion + #region IWebSocket /// /// .NET interface for TO BE DEFINED FROM USER @@ -99,7 +260,7 @@ public partial interface IWebSocket } #endregion - #region WebSocket + #region WebSocket implementation public partial class WebSocket : Java.Net.Http.IWebSocket { #region Constructors @@ -215,7 +376,7 @@ public void Request(long arg0) #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors @@ -285,7 +446,7 @@ public Java.Net.Http.WebSocket.Builder Subprotocols(Java.Lang.String arg0, param } #endregion - #region Listener + #region Listener implementation public partial class Listener { #region Constructors @@ -580,7 +741,7 @@ public virtual void OnOpen(Java.Net.Http.WebSocket arg0) } #endregion - #region ListenerDirect + #region ListenerDirect implementation public partial class ListenerDirect { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Http/WebSocketHandshakeException.cs b/src/net/JNet/Generated/Java/Net/Http/WebSocketHandshakeException.cs index 2423ab0853..39d5d29316 100644 --- a/src/net/JNet/Generated/Java/Net/Http/WebSocketHandshakeException.cs +++ b/src/net/JNet/Generated/Java/Net/Http/WebSocketHandshakeException.cs @@ -25,7 +25,24 @@ namespace Java.Net.Http { - #region WebSocketHandshakeException + #region WebSocketHandshakeException declaration + /// + /// + /// + public partial class WebSocketHandshakeException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.http.WebSocketHandshakeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region WebSocketHandshakeException implementation public partial class WebSocketHandshakeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/HttpCookie.cs b/src/net/JNet/Generated/Java/Net/HttpCookie.cs index 7e1b078b75..122f1b89d3 100644 --- a/src/net/JNet/Generated/Java/Net/HttpCookie.cs +++ b/src/net/JNet/Generated/Java/Net/HttpCookie.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region HttpCookie + #region HttpCookie declaration + /// + /// + /// + public partial class HttpCookie : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.net.HttpCookie"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HttpCookie() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HttpCookie(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HttpCookie implementation public partial class HttpCookie { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/HttpRetryException.cs b/src/net/JNet/Generated/Java/Net/HttpRetryException.cs index 3cec7cec59..7d1f5cadcb 100644 --- a/src/net/JNet/Generated/Java/Net/HttpRetryException.cs +++ b/src/net/JNet/Generated/Java/Net/HttpRetryException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region HttpRetryException + #region HttpRetryException declaration + /// + /// + /// + public partial class HttpRetryException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.HttpRetryException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region HttpRetryException implementation public partial class HttpRetryException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/HttpURLConnection.cs b/src/net/JNet/Generated/Java/Net/HttpURLConnection.cs index 8589d1ce9d..217e785e5e 100644 --- a/src/net/JNet/Generated/Java/Net/HttpURLConnection.cs +++ b/src/net/JNet/Generated/Java/Net/HttpURLConnection.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region HttpURLConnection + #region HttpURLConnection declaration + /// + /// + /// + public partial class HttpURLConnection : Java.Net.URLConnection + { + const string _bridgeClassName = "java.net.HttpURLConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HttpURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpURLConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HttpURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpURLConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HttpURLConnection implementation public partial class HttpURLConnection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/IDN.cs b/src/net/JNet/Generated/Java/Net/IDN.cs index a9ba4362f9..b8e69aaf6b 100644 --- a/src/net/JNet/Generated/Java/Net/IDN.cs +++ b/src/net/JNet/Generated/Java/Net/IDN.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region IDN + #region IDN declaration + /// + /// + /// + public partial class IDN : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.IDN"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IDN() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IDN(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IDN implementation public partial class IDN { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Inet4Address.cs b/src/net/JNet/Generated/Java/Net/Inet4Address.cs index 8bae7afb7a..7594a2140d 100644 --- a/src/net/JNet/Generated/Java/Net/Inet4Address.cs +++ b/src/net/JNet/Generated/Java/Net/Inet4Address.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region Inet4Address + #region Inet4Address declaration + /// + /// + /// + public partial class Inet4Address : Java.Net.InetAddress + { + const string _bridgeClassName = "java.net.Inet4Address"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Inet4Address() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Inet4Address(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Inet4Address implementation public partial class Inet4Address { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Inet6Address.cs b/src/net/JNet/Generated/Java/Net/Inet6Address.cs index 974dbb197c..2dc25aa26f 100644 --- a/src/net/JNet/Generated/Java/Net/Inet6Address.cs +++ b/src/net/JNet/Generated/Java/Net/Inet6Address.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region Inet6Address + #region Inet6Address declaration + /// + /// + /// + public partial class Inet6Address : Java.Net.InetAddress + { + const string _bridgeClassName = "java.net.Inet6Address"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Inet6Address() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Inet6Address(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Inet6Address implementation public partial class Inet6Address { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/InetAddress.cs b/src/net/JNet/Generated/Java/Net/InetAddress.cs index 6a63d325a7..78fc65517c 100644 --- a/src/net/JNet/Generated/Java/Net/InetAddress.cs +++ b/src/net/JNet/Generated/Java/Net/InetAddress.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region InetAddress + #region InetAddress declaration + /// + /// + /// + public partial class InetAddress : Java.Io.Serializable + { + const string _bridgeClassName = "java.net.InetAddress"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InetAddress() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InetAddress(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InetAddress implementation public partial class InetAddress { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/InetSocketAddress.cs b/src/net/JNet/Generated/Java/Net/InetSocketAddress.cs index e9daac547a..fad8e90f55 100644 --- a/src/net/JNet/Generated/Java/Net/InetSocketAddress.cs +++ b/src/net/JNet/Generated/Java/Net/InetSocketAddress.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region InetSocketAddress + #region InetSocketAddress declaration + /// + /// + /// + public partial class InetSocketAddress : Java.Net.SocketAddress + { + const string _bridgeClassName = "java.net.InetSocketAddress"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InetSocketAddress() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InetSocketAddress(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InetSocketAddress implementation public partial class InetSocketAddress { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/InterfaceAddress.cs b/src/net/JNet/Generated/Java/Net/InterfaceAddress.cs index 45f7d79496..7e5909a909 100644 --- a/src/net/JNet/Generated/Java/Net/InterfaceAddress.cs +++ b/src/net/JNet/Generated/Java/Net/InterfaceAddress.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region InterfaceAddress + #region InterfaceAddress declaration + /// + /// + /// + public partial class InterfaceAddress : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.InterfaceAddress"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InterfaceAddress() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InterfaceAddress(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InterfaceAddress implementation public partial class InterfaceAddress { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/JarURLConnection.cs b/src/net/JNet/Generated/Java/Net/JarURLConnection.cs index 4d787d1b94..ed033f4576 100644 --- a/src/net/JNet/Generated/Java/Net/JarURLConnection.cs +++ b/src/net/JNet/Generated/Java/Net/JarURLConnection.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region JarURLConnection + #region JarURLConnection declaration + /// + /// + /// + public partial class JarURLConnection : Java.Net.URLConnection + { + const string _bridgeClassName = "java.net.JarURLConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JarURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JarURLConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JarURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JarURLConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JarURLConnection implementation public partial class JarURLConnection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/MalformedURLException.cs b/src/net/JNet/Generated/Java/Net/MalformedURLException.cs index cf5aaa9704..8fe09dbc46 100644 --- a/src/net/JNet/Generated/Java/Net/MalformedURLException.cs +++ b/src/net/JNet/Generated/Java/Net/MalformedURLException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region MalformedURLException + #region MalformedURLException declaration + /// + /// + /// + public partial class MalformedURLException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.MalformedURLException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MalformedURLException implementation public partial class MalformedURLException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/MulticastSocket.cs b/src/net/JNet/Generated/Java/Net/MulticastSocket.cs index 91aa6722c6..8d76a95b08 100644 --- a/src/net/JNet/Generated/Java/Net/MulticastSocket.cs +++ b/src/net/JNet/Generated/Java/Net/MulticastSocket.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region MulticastSocket + #region MulticastSocket declaration + /// + /// + /// + public partial class MulticastSocket : Java.Net.DatagramSocket + { + const string _bridgeClassName = "java.net.MulticastSocket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MulticastSocket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MulticastSocket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MulticastSocket implementation public partial class MulticastSocket { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/NetPermission.cs b/src/net/JNet/Generated/Java/Net/NetPermission.cs index 58a9423cd0..3ff431b316 100644 --- a/src/net/JNet/Generated/Java/Net/NetPermission.cs +++ b/src/net/JNet/Generated/Java/Net/NetPermission.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region NetPermission + #region NetPermission declaration + /// + /// + /// + public partial class NetPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.net.NetPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NetPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NetPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NetPermission implementation public partial class NetPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/NetworkInterface.cs b/src/net/JNet/Generated/Java/Net/NetworkInterface.cs index cec76970b6..6b2e0e1735 100644 --- a/src/net/JNet/Generated/Java/Net/NetworkInterface.cs +++ b/src/net/JNet/Generated/Java/Net/NetworkInterface.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region NetworkInterface + #region NetworkInterface declaration + /// + /// + /// + public partial class NetworkInterface : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.NetworkInterface"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NetworkInterface() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NetworkInterface(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NetworkInterface implementation public partial class NetworkInterface { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/NoRouteToHostException.cs b/src/net/JNet/Generated/Java/Net/NoRouteToHostException.cs index 5c52f1e5f4..23c4052c14 100644 --- a/src/net/JNet/Generated/Java/Net/NoRouteToHostException.cs +++ b/src/net/JNet/Generated/Java/Net/NoRouteToHostException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region NoRouteToHostException + #region NoRouteToHostException declaration + /// + /// + /// + public partial class NoRouteToHostException : Java.Net.SocketException + { + const string _bridgeClassName = "java.net.NoRouteToHostException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoRouteToHostException implementation public partial class NoRouteToHostException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/PasswordAuthentication.cs b/src/net/JNet/Generated/Java/Net/PasswordAuthentication.cs index bf3cd17610..8c2974ec50 100644 --- a/src/net/JNet/Generated/Java/Net/PasswordAuthentication.cs +++ b/src/net/JNet/Generated/Java/Net/PasswordAuthentication.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region PasswordAuthentication + #region PasswordAuthentication declaration + /// + /// + /// + public partial class PasswordAuthentication : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.PasswordAuthentication"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PasswordAuthentication() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PasswordAuthentication(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PasswordAuthentication implementation public partial class PasswordAuthentication { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/PortUnreachableException.cs b/src/net/JNet/Generated/Java/Net/PortUnreachableException.cs index db96fc002b..72a3abcba0 100644 --- a/src/net/JNet/Generated/Java/Net/PortUnreachableException.cs +++ b/src/net/JNet/Generated/Java/Net/PortUnreachableException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region PortUnreachableException + #region PortUnreachableException declaration + /// + /// + /// + public partial class PortUnreachableException : Java.Net.SocketException + { + const string _bridgeClassName = "java.net.PortUnreachableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PortUnreachableException implementation public partial class PortUnreachableException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ProtocolException.cs b/src/net/JNet/Generated/Java/Net/ProtocolException.cs index ce8533fa99..4a9706b121 100644 --- a/src/net/JNet/Generated/Java/Net/ProtocolException.cs +++ b/src/net/JNet/Generated/Java/Net/ProtocolException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region ProtocolException + #region ProtocolException declaration + /// + /// + /// + public partial class ProtocolException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.ProtocolException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ProtocolException implementation public partial class ProtocolException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ProtocolFamily.cs b/src/net/JNet/Generated/Java/Net/ProtocolFamily.cs index ebcf7edd3c..fe3bc4ecf6 100644 --- a/src/net/JNet/Generated/Java/Net/ProtocolFamily.cs +++ b/src/net/JNet/Generated/Java/Net/ProtocolFamily.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region ProtocolFamily declaration + /// + /// + /// + public partial class ProtocolFamily : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.ProtocolFamily"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProtocolFamily class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProtocolFamily() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProtocolFamily class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProtocolFamily(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IProtocolFamily /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IProtocolFamily } #endregion - #region ProtocolFamily + #region ProtocolFamily implementation public partial class ProtocolFamily : Java.Net.IProtocolFamily { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Proxy.cs b/src/net/JNet/Generated/Java/Net/Proxy.cs index 8fbe0b4781..1512cea330 100644 --- a/src/net/JNet/Generated/Java/Net/Proxy.cs +++ b/src/net/JNet/Generated/Java/Net/Proxy.cs @@ -25,7 +25,97 @@ namespace Java.Net { - #region Proxy + #region Proxy declaration + /// + /// + /// + public partial class Proxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.Proxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Proxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Proxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Java.Lang.Enum + { + const string _bridgeClassName = "java.net.Proxy$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Proxy implementation public partial class Proxy { #region Constructors @@ -80,7 +170,7 @@ public Java.Net.SocketAddress Address() #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ProxySelector.cs b/src/net/JNet/Generated/Java/Net/ProxySelector.cs index aa8d10231b..f278eadea5 100644 --- a/src/net/JNet/Generated/Java/Net/ProxySelector.cs +++ b/src/net/JNet/Generated/Java/Net/ProxySelector.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region ProxySelector + #region ProxySelector declaration + /// + /// + /// + public partial class ProxySelector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.ProxySelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProxySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProxySelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProxySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProxySelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ProxySelector implementation public partial class ProxySelector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ResponseCache.cs b/src/net/JNet/Generated/Java/Net/ResponseCache.cs index 9c2d80c59c..bd39b47e59 100644 --- a/src/net/JNet/Generated/Java/Net/ResponseCache.cs +++ b/src/net/JNet/Generated/Java/Net/ResponseCache.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region ResponseCache + #region ResponseCache declaration + /// + /// + /// + public partial class ResponseCache : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.ResponseCache"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResponseCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResponseCache() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResponseCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResponseCache(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ResponseCache implementation public partial class ResponseCache { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SecureCacheResponse.cs b/src/net/JNet/Generated/Java/Net/SecureCacheResponse.cs index 7b24481ab3..2fc6b9d48d 100644 --- a/src/net/JNet/Generated/Java/Net/SecureCacheResponse.cs +++ b/src/net/JNet/Generated/Java/Net/SecureCacheResponse.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region SecureCacheResponse + #region SecureCacheResponse declaration + /// + /// + /// + public partial class SecureCacheResponse : Java.Net.CacheResponse + { + const string _bridgeClassName = "java.net.SecureCacheResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecureCacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureCacheResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecureCacheResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureCacheResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecureCacheResponse implementation public partial class SecureCacheResponse { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/ServerSocket.cs b/src/net/JNet/Generated/Java/Net/ServerSocket.cs index b0c23873ae..b89e485bb9 100644 --- a/src/net/JNet/Generated/Java/Net/ServerSocket.cs +++ b/src/net/JNet/Generated/Java/Net/ServerSocket.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region ServerSocket + #region ServerSocket declaration + /// + /// + /// + public partial class ServerSocket : Java.Io.Closeable + { + const string _bridgeClassName = "java.net.ServerSocket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ServerSocket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ServerSocket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServerSocket implementation public partial class ServerSocket { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Socket.cs b/src/net/JNet/Generated/Java/Net/Socket.cs index 346a9f0e1f..4fe523d7a3 100644 --- a/src/net/JNet/Generated/Java/Net/Socket.cs +++ b/src/net/JNet/Generated/Java/Net/Socket.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region Socket + #region Socket declaration + /// + /// + /// + public partial class Socket : Java.Io.Closeable + { + const string _bridgeClassName = "java.net.Socket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Socket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Socket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Socket implementation public partial class Socket { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketAddress.cs b/src/net/JNet/Generated/Java/Net/SocketAddress.cs index 422fa26ba8..34ad7e3f27 100644 --- a/src/net/JNet/Generated/Java/Net/SocketAddress.cs +++ b/src/net/JNet/Generated/Java/Net/SocketAddress.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region SocketAddress + #region SocketAddress declaration + /// + /// + /// + public partial class SocketAddress : Java.Io.Serializable + { + const string _bridgeClassName = "java.net.SocketAddress"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketAddress class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketAddress() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketAddress class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketAddress(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketAddress implementation public partial class SocketAddress { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketException.cs b/src/net/JNet/Generated/Java/Net/SocketException.cs index f3cc3c5107..5ec90b07fd 100644 --- a/src/net/JNet/Generated/Java/Net/SocketException.cs +++ b/src/net/JNet/Generated/Java/Net/SocketException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region SocketException + #region SocketException declaration + /// + /// + /// + public partial class SocketException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.SocketException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SocketException implementation public partial class SocketException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketImpl.cs b/src/net/JNet/Generated/Java/Net/SocketImpl.cs index 0ae0db86bc..c77fcf5234 100644 --- a/src/net/JNet/Generated/Java/Net/SocketImpl.cs +++ b/src/net/JNet/Generated/Java/Net/SocketImpl.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region SocketImpl + #region SocketImpl declaration + /// + /// + /// + public partial class SocketImpl : Java.Net.SocketOptions + { + const string _bridgeClassName = "java.net.SocketImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketImpl implementation public partial class SocketImpl { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketImplFactory.cs b/src/net/JNet/Generated/Java/Net/SocketImplFactory.cs index 76dce1638b..36c959dbcc 100644 --- a/src/net/JNet/Generated/Java/Net/SocketImplFactory.cs +++ b/src/net/JNet/Generated/Java/Net/SocketImplFactory.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region SocketImplFactory declaration + /// + /// + /// + public partial class SocketImplFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.SocketImplFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketImplFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketImplFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketImplFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISocketImplFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ISocketImplFactory } #endregion - #region SocketImplFactory + #region SocketImplFactory implementation public partial class SocketImplFactory : Java.Net.ISocketImplFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketOption.cs b/src/net/JNet/Generated/Java/Net/SocketOption.cs index 2b7344979e..f9119ec74b 100644 --- a/src/net/JNet/Generated/Java/Net/SocketOption.cs +++ b/src/net/JNet/Generated/Java/Net/SocketOption.cs @@ -25,7 +25,102 @@ namespace Java.Net { - #region SocketOption + #region SocketOption declaration + /// + /// + /// + public partial class SocketOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.SocketOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketOption declaration + /// + /// + /// + /// + public partial class SocketOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.net.SocketOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketOption implementation public partial class SocketOption { #region Constructors @@ -100,7 +195,7 @@ public partial interface ISocketOption } #endregion - #region SocketOption + #region SocketOption implementation public partial class SocketOption : Java.Net.ISocketOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketOptions.cs b/src/net/JNet/Generated/Java/Net/SocketOptions.cs index e92764b361..695f4a4893 100644 --- a/src/net/JNet/Generated/Java/Net/SocketOptions.cs +++ b/src/net/JNet/Generated/Java/Net/SocketOptions.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region SocketOptions declaration + /// + /// + /// + public partial class SocketOptions : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.SocketOptions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketOptions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketOptions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISocketOptions /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface ISocketOptions } #endregion - #region SocketOptions + #region SocketOptions implementation public partial class SocketOptions : Java.Net.ISocketOptions { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketPermission.cs b/src/net/JNet/Generated/Java/Net/SocketPermission.cs index cdfeba901c..e29066e99f 100644 --- a/src/net/JNet/Generated/Java/Net/SocketPermission.cs +++ b/src/net/JNet/Generated/Java/Net/SocketPermission.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region SocketPermission + #region SocketPermission declaration + /// + /// + /// + public partial class SocketPermission : Java.Security.Permission + { + const string _bridgeClassName = "java.net.SocketPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SocketPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SocketPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketPermission implementation public partial class SocketPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/SocketTimeoutException.cs b/src/net/JNet/Generated/Java/Net/SocketTimeoutException.cs index 29ad0297bb..473d6d9287 100644 --- a/src/net/JNet/Generated/Java/Net/SocketTimeoutException.cs +++ b/src/net/JNet/Generated/Java/Net/SocketTimeoutException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region SocketTimeoutException + #region SocketTimeoutException declaration + /// + /// + /// + public partial class SocketTimeoutException : Java.Io.InterruptedIOException + { + const string _bridgeClassName = "java.net.SocketTimeoutException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SocketTimeoutException implementation public partial class SocketTimeoutException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Net/Spi/AllPackageClasses.cs deleted file mode 100644 index a660e03fe9..0000000000 --- a/src/net/JNet/Generated/Java/Net/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,77 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Net.Spi -{ - #region URLStreamHandlerProvider - /// - /// - /// - public partial class URLStreamHandlerProvider : Java.Net.URLStreamHandlerFactory - { - const string _bridgeClassName = "java.net.spi.URLStreamHandlerProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URLStreamHandlerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLStreamHandlerProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URLStreamHandlerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URLStreamHandlerProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Net/Spi/URLStreamHandlerProvider.cs b/src/net/JNet/Generated/Java/Net/Spi/URLStreamHandlerProvider.cs index 980bf0c233..c5838d7f49 100644 --- a/src/net/JNet/Generated/Java/Net/Spi/URLStreamHandlerProvider.cs +++ b/src/net/JNet/Generated/Java/Net/Spi/URLStreamHandlerProvider.cs @@ -25,7 +25,54 @@ namespace Java.Net.Spi { - #region URLStreamHandlerProvider + #region URLStreamHandlerProvider declaration + /// + /// + /// + public partial class URLStreamHandlerProvider : Java.Net.URLStreamHandlerFactory + { + const string _bridgeClassName = "java.net.spi.URLStreamHandlerProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URLStreamHandlerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLStreamHandlerProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URLStreamHandlerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLStreamHandlerProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLStreamHandlerProvider implementation public partial class URLStreamHandlerProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/StandardProtocolFamily.cs b/src/net/JNet/Generated/Java/Net/StandardProtocolFamily.cs index e66178f773..b7b3916451 100644 --- a/src/net/JNet/Generated/Java/Net/StandardProtocolFamily.cs +++ b/src/net/JNet/Generated/Java/Net/StandardProtocolFamily.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region StandardProtocolFamily + #region StandardProtocolFamily declaration + /// + /// + /// + public partial class StandardProtocolFamily : Java.Lang.Enum + { + const string _bridgeClassName = "java.net.StandardProtocolFamily"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardProtocolFamily() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardProtocolFamily(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardProtocolFamily implementation public partial class StandardProtocolFamily { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/StandardSocketOptions.cs b/src/net/JNet/Generated/Java/Net/StandardSocketOptions.cs index 8b6e29001f..ac1910fe9f 100644 --- a/src/net/JNet/Generated/Java/Net/StandardSocketOptions.cs +++ b/src/net/JNet/Generated/Java/Net/StandardSocketOptions.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region StandardSocketOptions + #region StandardSocketOptions declaration + /// + /// + /// + public partial class StandardSocketOptions : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.StandardSocketOptions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardSocketOptions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardSocketOptions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardSocketOptions implementation public partial class StandardSocketOptions { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URI.cs b/src/net/JNet/Generated/Java/Net/URI.cs index 3712c59337..8d97adf9f0 100644 --- a/src/net/JNet/Generated/Java/Net/URI.cs +++ b/src/net/JNet/Generated/Java/Net/URI.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region URI + #region URI declaration + /// + /// + /// + public partial class URI : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.URI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URI implementation public partial class URI { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URISyntaxException.cs b/src/net/JNet/Generated/Java/Net/URISyntaxException.cs index 4b912c28ac..cca6ec57f3 100644 --- a/src/net/JNet/Generated/Java/Net/URISyntaxException.cs +++ b/src/net/JNet/Generated/Java/Net/URISyntaxException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region URISyntaxException + #region URISyntaxException declaration + /// + /// + /// + public partial class URISyntaxException : Java.Lang.Exception + { + const string _bridgeClassName = "java.net.URISyntaxException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region URISyntaxException implementation public partial class URISyntaxException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URL.cs b/src/net/JNet/Generated/Java/Net/URL.cs index c1d8cba0e1..23dd141daf 100644 --- a/src/net/JNet/Generated/Java/Net/URL.cs +++ b/src/net/JNet/Generated/Java/Net/URL.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region URL + #region URL declaration + /// + /// + /// + public partial class URL : Java.Io.Serializable + { + const string _bridgeClassName = "java.net.URL"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URL() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URL(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URL implementation public partial class URL { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLClassLoader.cs b/src/net/JNet/Generated/Java/Net/URLClassLoader.cs index 7646016a4a..ac7a319562 100644 --- a/src/net/JNet/Generated/Java/Net/URLClassLoader.cs +++ b/src/net/JNet/Generated/Java/Net/URLClassLoader.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region URLClassLoader + #region URLClassLoader declaration + /// + /// + /// + public partial class URLClassLoader : Java.Security.SecureClassLoader + { + const string _bridgeClassName = "java.net.URLClassLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URLClassLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URLClassLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLClassLoader implementation public partial class URLClassLoader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLConnection.cs b/src/net/JNet/Generated/Java/Net/URLConnection.cs index 91e0aa4907..15fb46b1ae 100644 --- a/src/net/JNet/Generated/Java/Net/URLConnection.cs +++ b/src/net/JNet/Generated/Java/Net/URLConnection.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region URLConnection + #region URLConnection declaration + /// + /// + /// + public partial class URLConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.URLConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLConnection implementation public partial class URLConnection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLDecoder.cs b/src/net/JNet/Generated/Java/Net/URLDecoder.cs index cae239009d..52b0152926 100644 --- a/src/net/JNet/Generated/Java/Net/URLDecoder.cs +++ b/src/net/JNet/Generated/Java/Net/URLDecoder.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region URLDecoder + #region URLDecoder declaration + /// + /// + /// + public partial class URLDecoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.URLDecoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URLDecoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URLDecoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLDecoder implementation public partial class URLDecoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLEncoder.cs b/src/net/JNet/Generated/Java/Net/URLEncoder.cs index c728841a29..f0790f8a9a 100644 --- a/src/net/JNet/Generated/Java/Net/URLEncoder.cs +++ b/src/net/JNet/Generated/Java/Net/URLEncoder.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region URLEncoder + #region URLEncoder declaration + /// + /// + /// + public partial class URLEncoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.URLEncoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URLEncoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URLEncoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLEncoder implementation public partial class URLEncoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLPermission.cs b/src/net/JNet/Generated/Java/Net/URLPermission.cs index eb931baf4c..8a1bc3a67a 100644 --- a/src/net/JNet/Generated/Java/Net/URLPermission.cs +++ b/src/net/JNet/Generated/Java/Net/URLPermission.cs @@ -25,7 +25,52 @@ namespace Java.Net { - #region URLPermission + #region URLPermission declaration + /// + /// + /// + public partial class URLPermission : Java.Security.Permission + { + const string _bridgeClassName = "java.net.URLPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URLPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URLPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLPermission implementation public partial class URLPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLStreamHandler.cs b/src/net/JNet/Generated/Java/Net/URLStreamHandler.cs index 37b5a931f0..d30f673d07 100644 --- a/src/net/JNet/Generated/Java/Net/URLStreamHandler.cs +++ b/src/net/JNet/Generated/Java/Net/URLStreamHandler.cs @@ -25,7 +25,54 @@ namespace Java.Net { - #region URLStreamHandler + #region URLStreamHandler declaration + /// + /// + /// + public partial class URLStreamHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.URLStreamHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URLStreamHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLStreamHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URLStreamHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLStreamHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URLStreamHandler implementation public partial class URLStreamHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/URLStreamHandlerFactory.cs b/src/net/JNet/Generated/Java/Net/URLStreamHandlerFactory.cs index f60a88ba89..87c15ab9ca 100644 --- a/src/net/JNet/Generated/Java/Net/URLStreamHandlerFactory.cs +++ b/src/net/JNet/Generated/Java/Net/URLStreamHandlerFactory.cs @@ -25,6 +25,53 @@ namespace Java.Net { + #region URLStreamHandlerFactory declaration + /// + /// + /// + public partial class URLStreamHandlerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.net.URLStreamHandlerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URLStreamHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLStreamHandlerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URLStreamHandlerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URLStreamHandlerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IURLStreamHandlerFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IURLStreamHandlerFactory } #endregion - #region URLStreamHandlerFactory + #region URLStreamHandlerFactory implementation public partial class URLStreamHandlerFactory : Java.Net.IURLStreamHandlerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/UnknownHostException.cs b/src/net/JNet/Generated/Java/Net/UnknownHostException.cs index 93be2674e9..5b510c3139 100644 --- a/src/net/JNet/Generated/Java/Net/UnknownHostException.cs +++ b/src/net/JNet/Generated/Java/Net/UnknownHostException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region UnknownHostException + #region UnknownHostException declaration + /// + /// + /// + public partial class UnknownHostException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.UnknownHostException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownHostException implementation public partial class UnknownHostException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Net/UnknownServiceException.cs b/src/net/JNet/Generated/Java/Net/UnknownServiceException.cs index aa7c6ce145..2974177e8f 100644 --- a/src/net/JNet/Generated/Java/Net/UnknownServiceException.cs +++ b/src/net/JNet/Generated/Java/Net/UnknownServiceException.cs @@ -25,7 +25,24 @@ namespace Java.Net { - #region UnknownServiceException + #region UnknownServiceException declaration + /// + /// + /// + public partial class UnknownServiceException : Java.Io.IOException + { + const string _bridgeClassName = "java.net.UnknownServiceException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownServiceException implementation public partial class UnknownServiceException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/AllPackageClasses.cs deleted file mode 100644 index d075917aa9..0000000000 --- a/src/net/JNet/Generated/Java/Nio/AllPackageClasses.cs +++ /dev/null @@ -1,566 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio -{ - #region Buffer - /// - /// - /// - public partial class Buffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.Buffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Buffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Buffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Buffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Buffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BufferOverflowException - /// - /// - /// - public partial class BufferOverflowException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.nio.BufferOverflowException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region BufferUnderflowException - /// - /// - /// - public partial class BufferUnderflowException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.nio.BufferUnderflowException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ByteBuffer - /// - /// - /// - public partial class ByteBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.ByteBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ByteBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ByteBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ByteOrder - /// - /// - /// - public partial class ByteOrder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.ByteOrder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ByteOrder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ByteOrder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharBuffer - /// - /// - /// - public partial class CharBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.CharBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DoubleBuffer - /// - /// - /// - public partial class DoubleBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.DoubleBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DoubleBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DoubleBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DoubleBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DoubleBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FloatBuffer - /// - /// - /// - public partial class FloatBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.FloatBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FloatBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FloatBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FloatBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FloatBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IntBuffer - /// - /// - /// - public partial class IntBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.IntBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IntBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IntBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidMarkException - /// - /// - /// - public partial class InvalidMarkException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.InvalidMarkException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LongBuffer - /// - /// - /// - public partial class LongBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.LongBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LongBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LongBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LongBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LongBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MappedByteBuffer - /// - /// - /// - public partial class MappedByteBuffer : Java.Nio.ByteBuffer - { - const string _bridgeClassName = "java.nio.MappedByteBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MappedByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MappedByteBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MappedByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MappedByteBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReadOnlyBufferException - /// - /// - /// - public partial class ReadOnlyBufferException : Java.Lang.UnsupportedOperationException - { - const string _bridgeClassName = "java.nio.ReadOnlyBufferException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ShortBuffer - /// - /// - /// - public partial class ShortBuffer : Java.Nio.Buffer - { - const string _bridgeClassName = "java.nio.ShortBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ShortBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ShortBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ShortBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ShortBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/Buffer.cs b/src/net/JNet/Generated/Java/Nio/Buffer.cs index 1b338f1516..ce189ccfd2 100644 --- a/src/net/JNet/Generated/Java/Nio/Buffer.cs +++ b/src/net/JNet/Generated/Java/Nio/Buffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region Buffer + #region Buffer declaration + /// + /// + /// + public partial class Buffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.Buffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Buffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Buffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Buffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Buffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Buffer implementation public partial class Buffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/BufferOverflowException.cs b/src/net/JNet/Generated/Java/Nio/BufferOverflowException.cs index 683777b4c9..8ef9e509ae 100644 --- a/src/net/JNet/Generated/Java/Nio/BufferOverflowException.cs +++ b/src/net/JNet/Generated/Java/Nio/BufferOverflowException.cs @@ -25,7 +25,24 @@ namespace Java.Nio { - #region BufferOverflowException + #region BufferOverflowException declaration + /// + /// + /// + public partial class BufferOverflowException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.nio.BufferOverflowException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BufferOverflowException implementation public partial class BufferOverflowException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/BufferUnderflowException.cs b/src/net/JNet/Generated/Java/Nio/BufferUnderflowException.cs index e0e3efb60a..bfe42824f2 100644 --- a/src/net/JNet/Generated/Java/Nio/BufferUnderflowException.cs +++ b/src/net/JNet/Generated/Java/Nio/BufferUnderflowException.cs @@ -25,7 +25,24 @@ namespace Java.Nio { - #region BufferUnderflowException + #region BufferUnderflowException declaration + /// + /// + /// + public partial class BufferUnderflowException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.nio.BufferUnderflowException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BufferUnderflowException implementation public partial class BufferUnderflowException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/ByteBuffer.cs b/src/net/JNet/Generated/Java/Nio/ByteBuffer.cs index 6db5452355..6fa3d6f80f 100644 --- a/src/net/JNet/Generated/Java/Nio/ByteBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/ByteBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region ByteBuffer + #region ByteBuffer declaration + /// + /// + /// + public partial class ByteBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.ByteBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ByteBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ByteBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ByteBuffer implementation public partial class ByteBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/ByteOrder.cs b/src/net/JNet/Generated/Java/Nio/ByteOrder.cs index f15816764d..c5289cf27f 100644 --- a/src/net/JNet/Generated/Java/Nio/ByteOrder.cs +++ b/src/net/JNet/Generated/Java/Nio/ByteOrder.cs @@ -25,7 +25,52 @@ namespace Java.Nio { - #region ByteOrder + #region ByteOrder declaration + /// + /// + /// + public partial class ByteOrder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.ByteOrder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ByteOrder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ByteOrder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ByteOrder implementation public partial class ByteOrder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AcceptPendingException.cs b/src/net/JNet/Generated/Java/Nio/Channels/AcceptPendingException.cs index a155b7a096..f294155f3b 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AcceptPendingException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AcceptPendingException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region AcceptPendingException + #region AcceptPendingException declaration + /// + /// + /// + public partial class AcceptPendingException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.AcceptPendingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AcceptPendingException implementation public partial class AcceptPendingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/Channels/AllPackageClasses.cs deleted file mode 100644 index 8ce7eb38a2..0000000000 --- a/src/net/JNet/Generated/Java/Nio/Channels/AllPackageClasses.cs +++ /dev/null @@ -1,1957 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.Channels -{ - #region AcceptPendingException - /// - /// - /// - public partial class AcceptPendingException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.AcceptPendingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AlreadyBoundException - /// - /// - /// - public partial class AlreadyBoundException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.AlreadyBoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AlreadyConnectedException - /// - /// - /// - public partial class AlreadyConnectedException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.AlreadyConnectedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousByteChannel - /// - /// - /// - public partial class AsynchronousByteChannel : Java.Nio.Channels.AsynchronousChannel - { - const string _bridgeClassName = "java.nio.channels.AsynchronousByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousChannel - /// - /// - /// - public partial class AsynchronousChannel : Java.Nio.Channels.Channel - { - const string _bridgeClassName = "java.nio.channels.AsynchronousChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousChannelGroup - /// - /// - /// - public partial class AsynchronousChannelGroup : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.AsynchronousChannelGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousChannelGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousChannelGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousChannelGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousChannelGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousCloseException - /// - /// - /// - public partial class AsynchronousCloseException : Java.Nio.Channels.ClosedChannelException - { - const string _bridgeClassName = "java.nio.channels.AsynchronousCloseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousFileChannel - /// - /// - /// - public partial class AsynchronousFileChannel : Java.Nio.Channels.AsynchronousChannel - { - const string _bridgeClassName = "java.nio.channels.AsynchronousFileChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousFileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousFileChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousFileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousFileChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousServerSocketChannel - /// - /// - /// - public partial class AsynchronousServerSocketChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.AsynchronousServerSocketChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousServerSocketChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousServerSocketChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousSocketChannel - /// - /// - /// - public partial class AsynchronousSocketChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.AsynchronousSocketChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousSocketChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousSocketChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ByteChannel - /// - /// - /// - public partial class ByteChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.ByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CancelledKeyException - /// - /// - /// - public partial class CancelledKeyException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.CancelledKeyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Channel - /// - /// - /// - public partial class Channel : Java.Io.Closeable - { - const string _bridgeClassName = "java.nio.channels.Channel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Channel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Channel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Channel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Channel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Channels - /// - /// - /// - public partial class Channels : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.Channels"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Channels() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Channels(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClosedByInterruptException - /// - /// - /// - public partial class ClosedByInterruptException : Java.Nio.Channels.AsynchronousCloseException - { - const string _bridgeClassName = "java.nio.channels.ClosedByInterruptException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClosedChannelException - /// - /// - /// - public partial class ClosedChannelException : Java.Io.IOException - { - const string _bridgeClassName = "java.nio.channels.ClosedChannelException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClosedSelectorException - /// - /// - /// - public partial class ClosedSelectorException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.ClosedSelectorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CompletionHandler - /// - /// - /// - public partial class CompletionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.CompletionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompletionHandler - /// - /// - /// - /// - /// - public partial class CompletionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.nio.channels.CompletionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConnectionPendingException - /// - /// - /// - public partial class ConnectionPendingException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.ConnectionPendingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DatagramChannel - /// - /// - /// - public partial class DatagramChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel - { - const string _bridgeClassName = "java.nio.channels.DatagramChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DatagramChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatagramChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DatagramChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatagramChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileChannel - /// - /// - /// - public partial class FileChannel : Java.Nio.Channels.Spi.AbstractInterruptibleChannel - { - const string _bridgeClassName = "java.nio.channels.FileChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region MapMode - /// - /// - /// - public partial class MapMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.FileChannel$MapMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MapMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MapMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FileLock - /// - /// - /// - public partial class FileLock : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "java.nio.channels.FileLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileLockInterruptionException - /// - /// - /// - public partial class FileLockInterruptionException : Java.Io.IOException - { - const string _bridgeClassName = "java.nio.channels.FileLockInterruptionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region GatheringByteChannel - /// - /// - /// - public partial class GatheringByteChannel : Java.Nio.Channels.WritableByteChannel - { - const string _bridgeClassName = "java.nio.channels.GatheringByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GatheringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GatheringByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GatheringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GatheringByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalBlockingModeException - /// - /// - /// - public partial class IllegalBlockingModeException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.IllegalBlockingModeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalChannelGroupException - /// - /// - /// - public partial class IllegalChannelGroupException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.channels.IllegalChannelGroupException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalSelectorException - /// - /// - /// - public partial class IllegalSelectorException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.channels.IllegalSelectorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InterruptedByTimeoutException - /// - /// - /// - public partial class InterruptedByTimeoutException : Java.Io.IOException - { - const string _bridgeClassName = "java.nio.channels.InterruptedByTimeoutException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InterruptibleChannel - /// - /// - /// - public partial class InterruptibleChannel : Java.Nio.Channels.Channel - { - const string _bridgeClassName = "java.nio.channels.InterruptibleChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InterruptibleChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InterruptibleChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MembershipKey - /// - /// - /// - public partial class MembershipKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.MembershipKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MembershipKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MembershipKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MembershipKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MembershipKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MulticastChannel - /// - /// - /// - public partial class MulticastChannel : Java.Nio.Channels.NetworkChannel - { - const string _bridgeClassName = "java.nio.channels.MulticastChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MulticastChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MulticastChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MulticastChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MulticastChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NetworkChannel - /// - /// - /// - public partial class NetworkChannel : Java.Nio.Channels.Channel - { - const string _bridgeClassName = "java.nio.channels.NetworkChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NetworkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NetworkChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NetworkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NetworkChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoConnectionPendingException - /// - /// - /// - public partial class NoConnectionPendingException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.NoConnectionPendingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NonReadableChannelException - /// - /// - /// - public partial class NonReadableChannelException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.NonReadableChannelException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NonWritableChannelException - /// - /// - /// - public partial class NonWritableChannelException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.NonWritableChannelException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotYetBoundException - /// - /// - /// - public partial class NotYetBoundException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.NotYetBoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotYetConnectedException - /// - /// - /// - public partial class NotYetConnectedException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.NotYetConnectedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OverlappingFileLockException - /// - /// - /// - public partial class OverlappingFileLockException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.OverlappingFileLockException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Pipe - /// - /// - /// - public partial class Pipe : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.Pipe"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Pipe class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Pipe() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Pipe class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Pipe(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region SinkChannel - /// - /// - /// - public partial class SinkChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel - { - const string _bridgeClassName = "java.nio.channels.Pipe$SinkChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SinkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SinkChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SinkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SinkChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SourceChannel - /// - /// - /// - public partial class SourceChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel - { - const string _bridgeClassName = "java.nio.channels.Pipe$SourceChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SourceChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SourceChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SourceChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SourceChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ReadableByteChannel - /// - /// - /// - public partial class ReadableByteChannel : Java.Nio.Channels.Channel - { - const string _bridgeClassName = "java.nio.channels.ReadableByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ReadableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ReadableByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ReadableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ReadableByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReadPendingException - /// - /// - /// - public partial class ReadPendingException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.ReadPendingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ScatteringByteChannel - /// - /// - /// - public partial class ScatteringByteChannel : Java.Nio.Channels.ReadableByteChannel - { - const string _bridgeClassName = "java.nio.channels.ScatteringByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScatteringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScatteringByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScatteringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScatteringByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SeekableByteChannel - /// - /// - /// - public partial class SeekableByteChannel : Java.Nio.Channels.ByteChannel - { - const string _bridgeClassName = "java.nio.channels.SeekableByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SeekableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SeekableByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SeekableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SeekableByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SelectableChannel - /// - /// - /// - public partial class SelectableChannel : Java.Nio.Channels.Spi.AbstractInterruptibleChannel - { - const string _bridgeClassName = "java.nio.channels.SelectableChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SelectableChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SelectableChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SelectionKey - /// - /// - /// - public partial class SelectionKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.SelectionKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SelectionKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SelectionKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Selector - /// - /// - /// - public partial class Selector : Java.Io.Closeable - { - const string _bridgeClassName = "java.nio.channels.Selector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Selector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Selector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Selector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Selector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServerSocketChannel - /// - /// - /// - public partial class ServerSocketChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel - { - const string _bridgeClassName = "java.nio.channels.ServerSocketChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ServerSocketChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ServerSocketChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ShutdownChannelGroupException - /// - /// - /// - public partial class ShutdownChannelGroupException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.ShutdownChannelGroupException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SocketChannel - /// - /// - /// - public partial class SocketChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel - { - const string _bridgeClassName = "java.nio.channels.SocketChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnresolvedAddressException - /// - /// - /// - public partial class UnresolvedAddressException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.channels.UnresolvedAddressException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedAddressTypeException - /// - /// - /// - public partial class UnsupportedAddressTypeException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.channels.UnsupportedAddressTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region WritableByteChannel - /// - /// - /// - public partial class WritableByteChannel : Java.Nio.Channels.Channel - { - const string _bridgeClassName = "java.nio.channels.WritableByteChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WritableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WritableByteChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WritableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WritableByteChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WritePendingException - /// - /// - /// - public partial class WritePendingException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.channels.WritePendingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AlreadyBoundException.cs b/src/net/JNet/Generated/Java/Nio/Channels/AlreadyBoundException.cs index 2ab7f00907..08163b8fd0 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AlreadyBoundException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AlreadyBoundException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region AlreadyBoundException + #region AlreadyBoundException declaration + /// + /// + /// + public partial class AlreadyBoundException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.AlreadyBoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AlreadyBoundException implementation public partial class AlreadyBoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AlreadyConnectedException.cs b/src/net/JNet/Generated/Java/Nio/Channels/AlreadyConnectedException.cs index 171b409439..56ae4f329e 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AlreadyConnectedException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AlreadyConnectedException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region AlreadyConnectedException + #region AlreadyConnectedException declaration + /// + /// + /// + public partial class AlreadyConnectedException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.AlreadyConnectedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AlreadyConnectedException implementation public partial class AlreadyConnectedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousByteChannel.cs index 162e5feb69..12950aa0de 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region AsynchronousByteChannel declaration + /// + /// + /// + public partial class AsynchronousByteChannel : Java.Nio.Channels.AsynchronousChannel + { + const string _bridgeClassName = "java.nio.channels.AsynchronousByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAsynchronousByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IAsynchronousByteChannel : Java.Nio.Channels.IAsynchron } #endregion - #region AsynchronousByteChannel + #region AsynchronousByteChannel implementation public partial class AsynchronousByteChannel : Java.Nio.Channels.IAsynchronousByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannel.cs index 767fb07bd8..7ee51ca9ea 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region AsynchronousChannel declaration + /// + /// + /// + public partial class AsynchronousChannel : Java.Nio.Channels.Channel + { + const string _bridgeClassName = "java.nio.channels.AsynchronousChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAsynchronousChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IAsynchronousChannel : Java.Nio.Channels.IChannel } #endregion - #region AsynchronousChannel + #region AsynchronousChannel implementation public partial class AsynchronousChannel : Java.Nio.Channels.IAsynchronousChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannelGroup.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannelGroup.cs index d195e23dde..f19169020a 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannelGroup.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousChannelGroup.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region AsynchronousChannelGroup + #region AsynchronousChannelGroup declaration + /// + /// + /// + public partial class AsynchronousChannelGroup : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.AsynchronousChannelGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousChannelGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousChannelGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousChannelGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousChannelGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AsynchronousChannelGroup implementation public partial class AsynchronousChannelGroup { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousCloseException.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousCloseException.cs index bac2c5cd1c..7d7463d428 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousCloseException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousCloseException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region AsynchronousCloseException + #region AsynchronousCloseException declaration + /// + /// + /// + public partial class AsynchronousCloseException : Java.Nio.Channels.ClosedChannelException + { + const string _bridgeClassName = "java.nio.channels.AsynchronousCloseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AsynchronousCloseException implementation public partial class AsynchronousCloseException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousFileChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousFileChannel.cs index f185b35dad..cf408873ef 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousFileChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousFileChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region AsynchronousFileChannel + #region AsynchronousFileChannel declaration + /// + /// + /// + public partial class AsynchronousFileChannel : Java.Nio.Channels.AsynchronousChannel + { + const string _bridgeClassName = "java.nio.channels.AsynchronousFileChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousFileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousFileChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousFileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousFileChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AsynchronousFileChannel implementation public partial class AsynchronousFileChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousServerSocketChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousServerSocketChannel.cs index b91ca4c20b..75c697d552 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousServerSocketChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousServerSocketChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region AsynchronousServerSocketChannel + #region AsynchronousServerSocketChannel declaration + /// + /// + /// + public partial class AsynchronousServerSocketChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.AsynchronousServerSocketChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousServerSocketChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousServerSocketChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AsynchronousServerSocketChannel implementation public partial class AsynchronousServerSocketChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousSocketChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousSocketChannel.cs index d2ff4c8da5..55e90dccde 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousSocketChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/AsynchronousSocketChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region AsynchronousSocketChannel + #region AsynchronousSocketChannel declaration + /// + /// + /// + public partial class AsynchronousSocketChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.AsynchronousSocketChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousSocketChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousSocketChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AsynchronousSocketChannel implementation public partial class AsynchronousSocketChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/ByteChannel.cs index b4b4c91c09..f3a04a8fd2 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region ByteChannel declaration + /// + /// + /// + public partial class ByteChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.ByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IByteChannel } #endregion - #region ByteChannel + #region ByteChannel implementation public partial class ByteChannel : Java.Nio.Channels.IByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/CancelledKeyException.cs b/src/net/JNet/Generated/Java/Nio/Channels/CancelledKeyException.cs index 9562c526f8..54129a7720 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/CancelledKeyException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/CancelledKeyException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region CancelledKeyException + #region CancelledKeyException declaration + /// + /// + /// + public partial class CancelledKeyException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.CancelledKeyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CancelledKeyException implementation public partial class CancelledKeyException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Channel.cs b/src/net/JNet/Generated/Java/Nio/Channels/Channel.cs index cfcb885996..2493c213c4 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Channel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Channel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region Channel declaration + /// + /// + /// + public partial class Channel : Java.Io.Closeable + { + const string _bridgeClassName = "java.nio.channels.Channel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Channel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Channel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Channel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Channel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IChannel : Java.Io.ICloseable } #endregion - #region Channel + #region Channel implementation public partial class Channel : Java.Nio.Channels.IChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Channels.cs b/src/net/JNet/Generated/Java/Nio/Channels/Channels.cs index 28a2d2d3a4..0bffa23bf5 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Channels.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Channels.cs @@ -25,7 +25,52 @@ namespace Java.Nio.Channels { - #region Channels + #region Channels declaration + /// + /// + /// + public partial class Channels : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.Channels"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Channels() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Channels(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Channels implementation public partial class Channels { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ClosedByInterruptException.cs b/src/net/JNet/Generated/Java/Nio/Channels/ClosedByInterruptException.cs index f542f905c1..3ed5bfb09e 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ClosedByInterruptException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ClosedByInterruptException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region ClosedByInterruptException + #region ClosedByInterruptException declaration + /// + /// + /// + public partial class ClosedByInterruptException : Java.Nio.Channels.AsynchronousCloseException + { + const string _bridgeClassName = "java.nio.channels.ClosedByInterruptException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClosedByInterruptException implementation public partial class ClosedByInterruptException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ClosedChannelException.cs b/src/net/JNet/Generated/Java/Nio/Channels/ClosedChannelException.cs index 7b9b01da6c..d0473e8924 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ClosedChannelException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ClosedChannelException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region ClosedChannelException + #region ClosedChannelException declaration + /// + /// + /// + public partial class ClosedChannelException : Java.Io.IOException + { + const string _bridgeClassName = "java.nio.channels.ClosedChannelException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClosedChannelException implementation public partial class ClosedChannelException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ClosedSelectorException.cs b/src/net/JNet/Generated/Java/Nio/Channels/ClosedSelectorException.cs index 6aa98190ee..b67fb6dac5 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ClosedSelectorException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ClosedSelectorException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region ClosedSelectorException + #region ClosedSelectorException declaration + /// + /// + /// + public partial class ClosedSelectorException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.ClosedSelectorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClosedSelectorException implementation public partial class ClosedSelectorException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/CompletionHandler.cs b/src/net/JNet/Generated/Java/Nio/Channels/CompletionHandler.cs index f41a50a89a..99aeaf429a 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/CompletionHandler.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/CompletionHandler.cs @@ -25,7 +25,103 @@ namespace Java.Nio.Channels { - #region CompletionHandler + #region CompletionHandler declaration + /// + /// + /// + public partial class CompletionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.CompletionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletionHandler declaration + /// + /// + /// + /// + /// + public partial class CompletionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.nio.channels.CompletionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompletionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletionHandler implementation public partial class CompletionHandler { #region Constructors @@ -104,7 +200,7 @@ public partial interface ICompletionHandler } #endregion - #region CompletionHandler + #region CompletionHandler implementation public partial class CompletionHandler : Java.Nio.Channels.ICompletionHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ConnectionPendingException.cs b/src/net/JNet/Generated/Java/Nio/Channels/ConnectionPendingException.cs index fe64646c16..62a0d1c478 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ConnectionPendingException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ConnectionPendingException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region ConnectionPendingException + #region ConnectionPendingException declaration + /// + /// + /// + public partial class ConnectionPendingException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.ConnectionPendingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ConnectionPendingException implementation public partial class ConnectionPendingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/DatagramChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/DatagramChannel.cs index 2db42c661e..aa8a805956 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/DatagramChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/DatagramChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region DatagramChannel + #region DatagramChannel declaration + /// + /// + /// + public partial class DatagramChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel + { + const string _bridgeClassName = "java.nio.channels.DatagramChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DatagramChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatagramChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DatagramChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatagramChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DatagramChannel implementation public partial class DatagramChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/FileChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/FileChannel.cs index 7e9529a330..7f05ffa3e1 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/FileChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/FileChannel.cs @@ -25,7 +25,99 @@ namespace Java.Nio.Channels { - #region FileChannel + #region FileChannel declaration + /// + /// + /// + public partial class FileChannel : Java.Nio.Channels.Spi.AbstractInterruptibleChannel + { + const string _bridgeClassName = "java.nio.channels.FileChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region MapMode declaration + /// + /// + /// + public partial class MapMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.FileChannel$MapMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MapMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MapMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region FileChannel implementation public partial class FileChannel { #region Constructors @@ -296,7 +388,7 @@ public Java.Nio.Channels.SeekableByteChannel Truncate(long arg0) #endregion #region Nested classes - #region MapMode + #region MapMode implementation public partial class MapMode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/FileLock.cs b/src/net/JNet/Generated/Java/Nio/Channels/FileLock.cs index bf305c07b7..62c3d166a1 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/FileLock.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/FileLock.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region FileLock + #region FileLock declaration + /// + /// + /// + public partial class FileLock : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "java.nio.channels.FileLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileLock implementation public partial class FileLock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/FileLockInterruptionException.cs b/src/net/JNet/Generated/Java/Nio/Channels/FileLockInterruptionException.cs index d10905387a..0f8a76d403 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/FileLockInterruptionException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/FileLockInterruptionException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region FileLockInterruptionException + #region FileLockInterruptionException declaration + /// + /// + /// + public partial class FileLockInterruptionException : Java.Io.IOException + { + const string _bridgeClassName = "java.nio.channels.FileLockInterruptionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileLockInterruptionException implementation public partial class FileLockInterruptionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/GatheringByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/GatheringByteChannel.cs index f209377e7b..b647efa991 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/GatheringByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/GatheringByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region GatheringByteChannel declaration + /// + /// + /// + public partial class GatheringByteChannel : Java.Nio.Channels.WritableByteChannel + { + const string _bridgeClassName = "java.nio.channels.GatheringByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GatheringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GatheringByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GatheringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GatheringByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGatheringByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IGatheringByteChannel : Java.Nio.Channels.IWritableByte } #endregion - #region GatheringByteChannel + #region GatheringByteChannel implementation public partial class GatheringByteChannel : Java.Nio.Channels.IGatheringByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/IllegalBlockingModeException.cs b/src/net/JNet/Generated/Java/Nio/Channels/IllegalBlockingModeException.cs index bcb7083faf..57d773ca0a 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/IllegalBlockingModeException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/IllegalBlockingModeException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region IllegalBlockingModeException + #region IllegalBlockingModeException declaration + /// + /// + /// + public partial class IllegalBlockingModeException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.IllegalBlockingModeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalBlockingModeException implementation public partial class IllegalBlockingModeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/IllegalChannelGroupException.cs b/src/net/JNet/Generated/Java/Nio/Channels/IllegalChannelGroupException.cs index ad1fca34a6..c88ffeea01 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/IllegalChannelGroupException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/IllegalChannelGroupException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region IllegalChannelGroupException + #region IllegalChannelGroupException declaration + /// + /// + /// + public partial class IllegalChannelGroupException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.channels.IllegalChannelGroupException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalChannelGroupException implementation public partial class IllegalChannelGroupException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/IllegalSelectorException.cs b/src/net/JNet/Generated/Java/Nio/Channels/IllegalSelectorException.cs index 2486300903..34cea2bbd8 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/IllegalSelectorException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/IllegalSelectorException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region IllegalSelectorException + #region IllegalSelectorException declaration + /// + /// + /// + public partial class IllegalSelectorException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.channels.IllegalSelectorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalSelectorException implementation public partial class IllegalSelectorException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/InterruptedByTimeoutException.cs b/src/net/JNet/Generated/Java/Nio/Channels/InterruptedByTimeoutException.cs index 9a57b7f56b..80fb2179fc 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/InterruptedByTimeoutException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/InterruptedByTimeoutException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region InterruptedByTimeoutException + #region InterruptedByTimeoutException declaration + /// + /// + /// + public partial class InterruptedByTimeoutException : Java.Io.IOException + { + const string _bridgeClassName = "java.nio.channels.InterruptedByTimeoutException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InterruptedByTimeoutException implementation public partial class InterruptedByTimeoutException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/InterruptibleChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/InterruptibleChannel.cs index c33e90a30f..1371923e4c 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/InterruptibleChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/InterruptibleChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region InterruptibleChannel declaration + /// + /// + /// + public partial class InterruptibleChannel : Java.Nio.Channels.Channel + { + const string _bridgeClassName = "java.nio.channels.InterruptibleChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InterruptibleChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InterruptibleChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInterruptibleChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IInterruptibleChannel : Java.Nio.Channels.IChannel } #endregion - #region InterruptibleChannel + #region InterruptibleChannel implementation public partial class InterruptibleChannel : Java.Nio.Channels.IInterruptibleChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/MembershipKey.cs b/src/net/JNet/Generated/Java/Nio/Channels/MembershipKey.cs index 44e5bf9fd7..e04caad527 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/MembershipKey.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/MembershipKey.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region MembershipKey + #region MembershipKey declaration + /// + /// + /// + public partial class MembershipKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.MembershipKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MembershipKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MembershipKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MembershipKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MembershipKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MembershipKey implementation public partial class MembershipKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/MulticastChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/MulticastChannel.cs index 45cb4cd1d3..1700c42804 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/MulticastChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/MulticastChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region MulticastChannel declaration + /// + /// + /// + public partial class MulticastChannel : Java.Nio.Channels.NetworkChannel + { + const string _bridgeClassName = "java.nio.channels.MulticastChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MulticastChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MulticastChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MulticastChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MulticastChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMulticastChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IMulticastChannel : Java.Nio.Channels.INetworkChannel } #endregion - #region MulticastChannel + #region MulticastChannel implementation public partial class MulticastChannel : Java.Nio.Channels.IMulticastChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/NetworkChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/NetworkChannel.cs index cf42b743be..2d8b8f98e0 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/NetworkChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/NetworkChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region NetworkChannel declaration + /// + /// + /// + public partial class NetworkChannel : Java.Nio.Channels.Channel + { + const string _bridgeClassName = "java.nio.channels.NetworkChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NetworkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NetworkChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NetworkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NetworkChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INetworkChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -76,7 +123,7 @@ public partial interface INetworkChannel : Java.Nio.Channels.IChannel } #endregion - #region NetworkChannel + #region NetworkChannel implementation public partial class NetworkChannel : Java.Nio.Channels.INetworkChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/NoConnectionPendingException.cs b/src/net/JNet/Generated/Java/Nio/Channels/NoConnectionPendingException.cs index 89ba2bd326..aa9b09c845 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/NoConnectionPendingException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/NoConnectionPendingException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region NoConnectionPendingException + #region NoConnectionPendingException declaration + /// + /// + /// + public partial class NoConnectionPendingException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.NoConnectionPendingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoConnectionPendingException implementation public partial class NoConnectionPendingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/NonReadableChannelException.cs b/src/net/JNet/Generated/Java/Nio/Channels/NonReadableChannelException.cs index d41a15e900..70b3e61585 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/NonReadableChannelException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/NonReadableChannelException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region NonReadableChannelException + #region NonReadableChannelException declaration + /// + /// + /// + public partial class NonReadableChannelException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.NonReadableChannelException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NonReadableChannelException implementation public partial class NonReadableChannelException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/NonWritableChannelException.cs b/src/net/JNet/Generated/Java/Nio/Channels/NonWritableChannelException.cs index 6aaa1a531b..dabcbf0e3d 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/NonWritableChannelException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/NonWritableChannelException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region NonWritableChannelException + #region NonWritableChannelException declaration + /// + /// + /// + public partial class NonWritableChannelException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.NonWritableChannelException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NonWritableChannelException implementation public partial class NonWritableChannelException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/NotYetBoundException.cs b/src/net/JNet/Generated/Java/Nio/Channels/NotYetBoundException.cs index df9e9e5423..d8dcea00d0 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/NotYetBoundException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/NotYetBoundException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region NotYetBoundException + #region NotYetBoundException declaration + /// + /// + /// + public partial class NotYetBoundException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.NotYetBoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotYetBoundException implementation public partial class NotYetBoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/NotYetConnectedException.cs b/src/net/JNet/Generated/Java/Nio/Channels/NotYetConnectedException.cs index 2cc934888b..1411b50b21 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/NotYetConnectedException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/NotYetConnectedException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region NotYetConnectedException + #region NotYetConnectedException declaration + /// + /// + /// + public partial class NotYetConnectedException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.NotYetConnectedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotYetConnectedException implementation public partial class NotYetConnectedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/OverlappingFileLockException.cs b/src/net/JNet/Generated/Java/Nio/Channels/OverlappingFileLockException.cs index a4bdf78b4f..ad169ac148 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/OverlappingFileLockException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/OverlappingFileLockException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region OverlappingFileLockException + #region OverlappingFileLockException declaration + /// + /// + /// + public partial class OverlappingFileLockException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.OverlappingFileLockException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region OverlappingFileLockException implementation public partial class OverlappingFileLockException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Pipe.cs b/src/net/JNet/Generated/Java/Nio/Channels/Pipe.cs index 840fe5d0f5..09febcd903 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Pipe.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Pipe.cs @@ -25,7 +25,148 @@ namespace Java.Nio.Channels { - #region Pipe + #region Pipe declaration + /// + /// + /// + public partial class Pipe : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.Pipe"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Pipe class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Pipe() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Pipe class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Pipe(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region SinkChannel declaration + /// + /// + /// + public partial class SinkChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel + { + const string _bridgeClassName = "java.nio.channels.Pipe$SinkChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SinkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SinkChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SinkChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SinkChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SourceChannel declaration + /// + /// + /// + public partial class SourceChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel + { + const string _bridgeClassName = "java.nio.channels.Pipe$SourceChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SourceChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SourceChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SourceChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SourceChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Pipe implementation public partial class Pipe { #region Constructors @@ -74,7 +215,7 @@ public Java.Nio.Channels.Pipe.SourceChannel Source() #endregion #region Nested classes - #region SinkChannel + #region SinkChannel implementation public partial class SinkChannel { #region Constructors @@ -113,7 +254,7 @@ public partial class SinkChannel } #endregion - #region SourceChannel + #region SourceChannel implementation public partial class SourceChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ReadPendingException.cs b/src/net/JNet/Generated/Java/Nio/Channels/ReadPendingException.cs index 80bc9acc32..9fa3f62980 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ReadPendingException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ReadPendingException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region ReadPendingException + #region ReadPendingException declaration + /// + /// + /// + public partial class ReadPendingException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.ReadPendingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ReadPendingException implementation public partial class ReadPendingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ReadableByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/ReadableByteChannel.cs index 460e6b14f1..856cd4f49e 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ReadableByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ReadableByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region ReadableByteChannel declaration + /// + /// + /// + public partial class ReadableByteChannel : Java.Nio.Channels.Channel + { + const string _bridgeClassName = "java.nio.channels.ReadableByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ReadableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ReadableByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ReadableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ReadableByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReadableByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IReadableByteChannel : Java.Nio.Channels.IChannel } #endregion - #region ReadableByteChannel + #region ReadableByteChannel implementation public partial class ReadableByteChannel : Java.Nio.Channels.IReadableByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ScatteringByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/ScatteringByteChannel.cs index ef3c5d9904..799c1fce1a 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ScatteringByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ScatteringByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region ScatteringByteChannel declaration + /// + /// + /// + public partial class ScatteringByteChannel : Java.Nio.Channels.ReadableByteChannel + { + const string _bridgeClassName = "java.nio.channels.ScatteringByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScatteringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScatteringByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScatteringByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScatteringByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScatteringByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IScatteringByteChannel : Java.Nio.Channels.IReadableByt } #endregion - #region ScatteringByteChannel + #region ScatteringByteChannel implementation public partial class ScatteringByteChannel : Java.Nio.Channels.IScatteringByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/SeekableByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/SeekableByteChannel.cs index 6ee9003a11..14269a8728 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/SeekableByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/SeekableByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region SeekableByteChannel declaration + /// + /// + /// + public partial class SeekableByteChannel : Java.Nio.Channels.ByteChannel + { + const string _bridgeClassName = "java.nio.channels.SeekableByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SeekableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SeekableByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SeekableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SeekableByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISeekableByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -83,7 +130,7 @@ public partial interface ISeekableByteChannel : Java.Nio.Channels.IByteChannel } #endregion - #region SeekableByteChannel + #region SeekableByteChannel implementation public partial class SeekableByteChannel : Java.Nio.Channels.ISeekableByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/SelectableChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/SelectableChannel.cs index ed11857c0d..004ecbf3a1 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/SelectableChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/SelectableChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region SelectableChannel + #region SelectableChannel declaration + /// + /// + /// + public partial class SelectableChannel : Java.Nio.Channels.Spi.AbstractInterruptibleChannel + { + const string _bridgeClassName = "java.nio.channels.SelectableChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SelectableChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SelectableChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SelectableChannel implementation public partial class SelectableChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/SelectionKey.cs b/src/net/JNet/Generated/Java/Nio/Channels/SelectionKey.cs index 949f2161ea..833f984f75 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/SelectionKey.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/SelectionKey.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region SelectionKey + #region SelectionKey declaration + /// + /// + /// + public partial class SelectionKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.SelectionKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SelectionKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SelectionKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SelectionKey implementation public partial class SelectionKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Selector.cs b/src/net/JNet/Generated/Java/Nio/Channels/Selector.cs index 0a1b691980..c9fd6bbd7c 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Selector.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Selector.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region Selector + #region Selector declaration + /// + /// + /// + public partial class Selector : Java.Io.Closeable + { + const string _bridgeClassName = "java.nio.channels.Selector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Selector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Selector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Selector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Selector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Selector implementation public partial class Selector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ServerSocketChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/ServerSocketChannel.cs index 57b24fcda8..fd8c5d230a 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ServerSocketChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ServerSocketChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region ServerSocketChannel + #region ServerSocketChannel declaration + /// + /// + /// + public partial class ServerSocketChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel + { + const string _bridgeClassName = "java.nio.channels.ServerSocketChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ServerSocketChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ServerSocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ServerSocketChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServerSocketChannel implementation public partial class ServerSocketChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/ShutdownChannelGroupException.cs b/src/net/JNet/Generated/Java/Nio/Channels/ShutdownChannelGroupException.cs index 17f049e2e9..37ed139c89 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/ShutdownChannelGroupException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/ShutdownChannelGroupException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region ShutdownChannelGroupException + #region ShutdownChannelGroupException declaration + /// + /// + /// + public partial class ShutdownChannelGroupException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.ShutdownChannelGroupException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ShutdownChannelGroupException implementation public partial class ShutdownChannelGroupException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/SocketChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/SocketChannel.cs index d2f4b4f8dd..85b5b15c6a 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/SocketChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/SocketChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels { - #region SocketChannel + #region SocketChannel declaration + /// + /// + /// + public partial class SocketChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel + { + const string _bridgeClassName = "java.nio.channels.SocketChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketChannel implementation public partial class SocketChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractInterruptibleChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractInterruptibleChannel.cs index 30e088421b..9f631bf189 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractInterruptibleChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractInterruptibleChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels.Spi { - #region AbstractInterruptibleChannel + #region AbstractInterruptibleChannel declaration + /// + /// + /// + public partial class AbstractInterruptibleChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.spi.AbstractInterruptibleChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractInterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractInterruptibleChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractInterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractInterruptibleChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractInterruptibleChannel implementation public partial class AbstractInterruptibleChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectableChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectableChannel.cs index dfef1b85b9..5d7131b695 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectableChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectableChannel.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels.Spi { - #region AbstractSelectableChannel + #region AbstractSelectableChannel declaration + /// + /// + /// + public partial class AbstractSelectableChannel : Java.Nio.Channels.SelectableChannel + { + const string _bridgeClassName = "java.nio.channels.spi.AbstractSelectableChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSelectableChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSelectableChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSelectableChannel implementation public partial class AbstractSelectableChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectionKey.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectionKey.cs index c8ca0f0664..445ac35454 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectionKey.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelectionKey.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels.Spi { - #region AbstractSelectionKey + #region AbstractSelectionKey declaration + /// + /// + /// + public partial class AbstractSelectionKey : Java.Nio.Channels.SelectionKey + { + const string _bridgeClassName = "java.nio.channels.spi.AbstractSelectionKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSelectionKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSelectionKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSelectionKey implementation public partial class AbstractSelectionKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelector.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelector.cs index 4e1ea42fed..69e721067c 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelector.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AbstractSelector.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels.Spi { - #region AbstractSelector + #region AbstractSelector declaration + /// + /// + /// + public partial class AbstractSelector : Java.Nio.Channels.Selector + { + const string _bridgeClassName = "java.nio.channels.spi.AbstractSelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSelector implementation public partial class AbstractSelector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AllPackageClasses.cs deleted file mode 100644 index 398a504614..0000000000 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,312 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.Channels.Spi -{ - #region AbstractInterruptibleChannel - /// - /// - /// - public partial class AbstractInterruptibleChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.spi.AbstractInterruptibleChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractInterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractInterruptibleChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractInterruptibleChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractInterruptibleChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSelectableChannel - /// - /// - /// - public partial class AbstractSelectableChannel : Java.Nio.Channels.SelectableChannel - { - const string _bridgeClassName = "java.nio.channels.spi.AbstractSelectableChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSelectableChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSelectableChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSelectableChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSelectionKey - /// - /// - /// - public partial class AbstractSelectionKey : Java.Nio.Channels.SelectionKey - { - const string _bridgeClassName = "java.nio.channels.spi.AbstractSelectionKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSelectionKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSelectionKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSelectionKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSelector - /// - /// - /// - public partial class AbstractSelector : Java.Nio.Channels.Selector - { - const string _bridgeClassName = "java.nio.channels.spi.AbstractSelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsynchronousChannelProvider - /// - /// - /// - public partial class AsynchronousChannelProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.spi.AsynchronousChannelProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousChannelProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousChannelProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousChannelProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousChannelProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SelectorProvider - /// - /// - /// - public partial class SelectorProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.channels.spi.SelectorProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SelectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SelectorProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SelectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SelectorProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AsynchronousChannelProvider.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AsynchronousChannelProvider.cs index 56d2e05111..b606bafd42 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/AsynchronousChannelProvider.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Spi/AsynchronousChannelProvider.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels.Spi { - #region AsynchronousChannelProvider + #region AsynchronousChannelProvider declaration + /// + /// + /// + public partial class AsynchronousChannelProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.spi.AsynchronousChannelProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousChannelProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousChannelProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousChannelProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousChannelProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AsynchronousChannelProvider implementation public partial class AsynchronousChannelProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/Spi/SelectorProvider.cs b/src/net/JNet/Generated/Java/Nio/Channels/Spi/SelectorProvider.cs index 49f64ad4fa..e6ec411c78 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/Spi/SelectorProvider.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/Spi/SelectorProvider.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Channels.Spi { - #region SelectorProvider + #region SelectorProvider declaration + /// + /// + /// + public partial class SelectorProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.channels.spi.SelectorProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SelectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SelectorProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SelectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SelectorProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SelectorProvider implementation public partial class SelectorProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/UnresolvedAddressException.cs b/src/net/JNet/Generated/Java/Nio/Channels/UnresolvedAddressException.cs index 148739f6e4..9c57857654 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/UnresolvedAddressException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/UnresolvedAddressException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region UnresolvedAddressException + #region UnresolvedAddressException declaration + /// + /// + /// + public partial class UnresolvedAddressException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.channels.UnresolvedAddressException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnresolvedAddressException implementation public partial class UnresolvedAddressException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/UnsupportedAddressTypeException.cs b/src/net/JNet/Generated/Java/Nio/Channels/UnsupportedAddressTypeException.cs index 7f42587777..bd3eceb5fe 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/UnsupportedAddressTypeException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/UnsupportedAddressTypeException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region UnsupportedAddressTypeException + #region UnsupportedAddressTypeException declaration + /// + /// + /// + public partial class UnsupportedAddressTypeException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.channels.UnsupportedAddressTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedAddressTypeException implementation public partial class UnsupportedAddressTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/WritableByteChannel.cs b/src/net/JNet/Generated/Java/Nio/Channels/WritableByteChannel.cs index e132ebebd6..723a5d46c7 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/WritableByteChannel.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/WritableByteChannel.cs @@ -25,6 +25,53 @@ namespace Java.Nio.Channels { + #region WritableByteChannel declaration + /// + /// + /// + public partial class WritableByteChannel : Java.Nio.Channels.Channel + { + const string _bridgeClassName = "java.nio.channels.WritableByteChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WritableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WritableByteChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WritableByteChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WritableByteChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWritableByteChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IWritableByteChannel : Java.Nio.Channels.IChannel } #endregion - #region WritableByteChannel + #region WritableByteChannel implementation public partial class WritableByteChannel : Java.Nio.Channels.IWritableByteChannel { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Channels/WritePendingException.cs b/src/net/JNet/Generated/Java/Nio/Channels/WritePendingException.cs index ae9ea0238e..6138c7da01 100644 --- a/src/net/JNet/Generated/Java/Nio/Channels/WritePendingException.cs +++ b/src/net/JNet/Generated/Java/Nio/Channels/WritePendingException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Channels { - #region WritePendingException + #region WritePendingException declaration + /// + /// + /// + public partial class WritePendingException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.channels.WritePendingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region WritePendingException implementation public partial class WritePendingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/CharBuffer.cs b/src/net/JNet/Generated/Java/Nio/CharBuffer.cs index d8bb4a0b36..d02bb7f8a4 100644 --- a/src/net/JNet/Generated/Java/Nio/CharBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/CharBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region CharBuffer + #region CharBuffer declaration + /// + /// + /// + public partial class CharBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.CharBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharBuffer implementation public partial class CharBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/Charset/AllPackageClasses.cs deleted file mode 100644 index 8eb3715630..0000000000 --- a/src/net/JNet/Generated/Java/Nio/Charset/AllPackageClasses.cs +++ /dev/null @@ -1,408 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.Charset -{ - #region CharacterCodingException - /// - /// - /// - public partial class CharacterCodingException : Java.Io.IOException - { - const string _bridgeClassName = "java.nio.charset.CharacterCodingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Charset - /// - /// - /// - public partial class Charset : Java.Lang.Comparable - { - const string _bridgeClassName = "java.nio.charset.Charset"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Charset class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Charset() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Charset class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Charset(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharsetDecoder - /// - /// - /// - public partial class CharsetDecoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.charset.CharsetDecoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharsetDecoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharsetDecoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharsetDecoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharsetDecoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharsetEncoder - /// - /// - /// - public partial class CharsetEncoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.charset.CharsetEncoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharsetEncoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharsetEncoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharsetEncoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharsetEncoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CoderMalfunctionError - /// - /// - /// - public partial class CoderMalfunctionError : Java.Lang.Error - { - const string _bridgeClassName = "java.nio.charset.CoderMalfunctionError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CoderResult - /// - /// - /// - public partial class CoderResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.charset.CoderResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CoderResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CoderResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CodingErrorAction - /// - /// - /// - public partial class CodingErrorAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.charset.CodingErrorAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CodingErrorAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CodingErrorAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalCharsetNameException - /// - /// - /// - public partial class IllegalCharsetNameException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.charset.IllegalCharsetNameException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MalformedInputException - /// - /// - /// - public partial class MalformedInputException : Java.Nio.Charset.CharacterCodingException - { - const string _bridgeClassName = "java.nio.charset.MalformedInputException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StandardCharsets - /// - /// - /// - public partial class StandardCharsets : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.charset.StandardCharsets"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardCharsets() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardCharsets(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnmappableCharacterException - /// - /// - /// - public partial class UnmappableCharacterException : Java.Nio.Charset.CharacterCodingException - { - const string _bridgeClassName = "java.nio.charset.UnmappableCharacterException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedCharsetException - /// - /// - /// - public partial class UnsupportedCharsetException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.charset.UnsupportedCharsetException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/Charset/CharacterCodingException.cs b/src/net/JNet/Generated/Java/Nio/Charset/CharacterCodingException.cs index 6966d3ff77..a85d5d603e 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/CharacterCodingException.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/CharacterCodingException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Charset { - #region CharacterCodingException + #region CharacterCodingException declaration + /// + /// + /// + public partial class CharacterCodingException : Java.Io.IOException + { + const string _bridgeClassName = "java.nio.charset.CharacterCodingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CharacterCodingException implementation public partial class CharacterCodingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/Charset.cs b/src/net/JNet/Generated/Java/Nio/Charset/Charset.cs index 2417f138b5..23b1eb406e 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/Charset.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/Charset.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Charset { - #region Charset + #region Charset declaration + /// + /// + /// + public partial class Charset : Java.Lang.Comparable + { + const string _bridgeClassName = "java.nio.charset.Charset"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Charset class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Charset() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Charset class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Charset(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Charset implementation public partial class Charset { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/CharsetDecoder.cs b/src/net/JNet/Generated/Java/Nio/Charset/CharsetDecoder.cs index a36b37ad2b..ccdab7d49e 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/CharsetDecoder.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/CharsetDecoder.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Charset { - #region CharsetDecoder + #region CharsetDecoder declaration + /// + /// + /// + public partial class CharsetDecoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.charset.CharsetDecoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharsetDecoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharsetDecoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharsetDecoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharsetDecoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharsetDecoder implementation public partial class CharsetDecoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/CharsetEncoder.cs b/src/net/JNet/Generated/Java/Nio/Charset/CharsetEncoder.cs index c98feacbde..71da83aaad 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/CharsetEncoder.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/CharsetEncoder.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Charset { - #region CharsetEncoder + #region CharsetEncoder declaration + /// + /// + /// + public partial class CharsetEncoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.charset.CharsetEncoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharsetEncoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharsetEncoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharsetEncoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharsetEncoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharsetEncoder implementation public partial class CharsetEncoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/CoderMalfunctionError.cs b/src/net/JNet/Generated/Java/Nio/Charset/CoderMalfunctionError.cs index 0db0bf134a..e5095fa6bc 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/CoderMalfunctionError.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/CoderMalfunctionError.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Charset { - #region CoderMalfunctionError + #region CoderMalfunctionError declaration + /// + /// + /// + public partial class CoderMalfunctionError : Java.Lang.Error + { + const string _bridgeClassName = "java.nio.charset.CoderMalfunctionError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CoderMalfunctionError implementation public partial class CoderMalfunctionError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/CoderResult.cs b/src/net/JNet/Generated/Java/Nio/Charset/CoderResult.cs index 4f38e14bff..fbc7b74099 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/CoderResult.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/CoderResult.cs @@ -25,7 +25,52 @@ namespace Java.Nio.Charset { - #region CoderResult + #region CoderResult declaration + /// + /// + /// + public partial class CoderResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.charset.CoderResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CoderResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CoderResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CoderResult implementation public partial class CoderResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/CodingErrorAction.cs b/src/net/JNet/Generated/Java/Nio/Charset/CodingErrorAction.cs index f6f0b81ad0..1ee83ba15e 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/CodingErrorAction.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/CodingErrorAction.cs @@ -25,7 +25,52 @@ namespace Java.Nio.Charset { - #region CodingErrorAction + #region CodingErrorAction declaration + /// + /// + /// + public partial class CodingErrorAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.charset.CodingErrorAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CodingErrorAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CodingErrorAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CodingErrorAction implementation public partial class CodingErrorAction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/IllegalCharsetNameException.cs b/src/net/JNet/Generated/Java/Nio/Charset/IllegalCharsetNameException.cs index 2a48dbdd08..98265e331d 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/IllegalCharsetNameException.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/IllegalCharsetNameException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Charset { - #region IllegalCharsetNameException + #region IllegalCharsetNameException declaration + /// + /// + /// + public partial class IllegalCharsetNameException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.charset.IllegalCharsetNameException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalCharsetNameException implementation public partial class IllegalCharsetNameException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/MalformedInputException.cs b/src/net/JNet/Generated/Java/Nio/Charset/MalformedInputException.cs index be2bd74d18..63ddbc3d26 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/MalformedInputException.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/MalformedInputException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Charset { - #region MalformedInputException + #region MalformedInputException declaration + /// + /// + /// + public partial class MalformedInputException : Java.Nio.Charset.CharacterCodingException + { + const string _bridgeClassName = "java.nio.charset.MalformedInputException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MalformedInputException implementation public partial class MalformedInputException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/Charset/Spi/AllPackageClasses.cs deleted file mode 100644 index a7fa14e4fe..0000000000 --- a/src/net/JNet/Generated/Java/Nio/Charset/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,77 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.Charset.Spi -{ - #region CharsetProvider - /// - /// - /// - public partial class CharsetProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.charset.spi.CharsetProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharsetProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharsetProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharsetProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharsetProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/Charset/Spi/CharsetProvider.cs b/src/net/JNet/Generated/Java/Nio/Charset/Spi/CharsetProvider.cs index 21de4ee9da..b4cc4cae8c 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/Spi/CharsetProvider.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/Spi/CharsetProvider.cs @@ -25,7 +25,54 @@ namespace Java.Nio.Charset.Spi { - #region CharsetProvider + #region CharsetProvider declaration + /// + /// + /// + public partial class CharsetProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.charset.spi.CharsetProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharsetProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharsetProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharsetProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharsetProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharsetProvider implementation public partial class CharsetProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/StandardCharsets.cs b/src/net/JNet/Generated/Java/Nio/Charset/StandardCharsets.cs index 9f987dee06..fe6bf41e17 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/StandardCharsets.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/StandardCharsets.cs @@ -25,7 +25,52 @@ namespace Java.Nio.Charset { - #region StandardCharsets + #region StandardCharsets declaration + /// + /// + /// + public partial class StandardCharsets : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.charset.StandardCharsets"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardCharsets() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardCharsets(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardCharsets implementation public partial class StandardCharsets { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/UnmappableCharacterException.cs b/src/net/JNet/Generated/Java/Nio/Charset/UnmappableCharacterException.cs index 8a82012334..7be94f27d2 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/UnmappableCharacterException.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/UnmappableCharacterException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Charset { - #region UnmappableCharacterException + #region UnmappableCharacterException declaration + /// + /// + /// + public partial class UnmappableCharacterException : Java.Nio.Charset.CharacterCodingException + { + const string _bridgeClassName = "java.nio.charset.UnmappableCharacterException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnmappableCharacterException implementation public partial class UnmappableCharacterException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/Charset/UnsupportedCharsetException.cs b/src/net/JNet/Generated/Java/Nio/Charset/UnsupportedCharsetException.cs index a8a8d6efef..e124c53b0e 100644 --- a/src/net/JNet/Generated/Java/Nio/Charset/UnsupportedCharsetException.cs +++ b/src/net/JNet/Generated/Java/Nio/Charset/UnsupportedCharsetException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.Charset { - #region UnsupportedCharsetException + #region UnsupportedCharsetException declaration + /// + /// + /// + public partial class UnsupportedCharsetException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.charset.UnsupportedCharsetException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedCharsetException implementation public partial class UnsupportedCharsetException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/DoubleBuffer.cs b/src/net/JNet/Generated/Java/Nio/DoubleBuffer.cs index 071e3e2c34..855b7efc89 100644 --- a/src/net/JNet/Generated/Java/Nio/DoubleBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/DoubleBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region DoubleBuffer + #region DoubleBuffer declaration + /// + /// + /// + public partial class DoubleBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.DoubleBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DoubleBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DoubleBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DoubleBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DoubleBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DoubleBuffer implementation public partial class DoubleBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/AccessDeniedException.cs b/src/net/JNet/Generated/Java/Nio/File/AccessDeniedException.cs index 03df2559bb..614d26e168 100644 --- a/src/net/JNet/Generated/Java/Nio/File/AccessDeniedException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/AccessDeniedException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region AccessDeniedException + #region AccessDeniedException declaration + /// + /// + /// + public partial class AccessDeniedException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.AccessDeniedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccessDeniedException implementation public partial class AccessDeniedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/AccessMode.cs b/src/net/JNet/Generated/Java/Nio/File/AccessMode.cs index 47783210b6..34dc4e4e26 100644 --- a/src/net/JNet/Generated/Java/Nio/File/AccessMode.cs +++ b/src/net/JNet/Generated/Java/Nio/File/AccessMode.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region AccessMode + #region AccessMode declaration + /// + /// + /// + public partial class AccessMode : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.AccessMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessMode implementation public partial class AccessMode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/File/AllPackageClasses.cs deleted file mode 100644 index 6294fe1b09..0000000000 --- a/src/net/JNet/Generated/Java/Nio/File/AllPackageClasses.cs +++ /dev/null @@ -1,1979 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.File -{ - #region AccessDeniedException - /// - /// - /// - public partial class AccessDeniedException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.AccessDeniedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AccessMode - /// - /// - /// - public partial class AccessMode : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.AccessMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicMoveNotSupportedException - /// - /// - /// - public partial class AtomicMoveNotSupportedException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.AtomicMoveNotSupportedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClosedDirectoryStreamException - /// - /// - /// - public partial class ClosedDirectoryStreamException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.file.ClosedDirectoryStreamException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClosedFileSystemException - /// - /// - /// - public partial class ClosedFileSystemException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.file.ClosedFileSystemException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ClosedWatchServiceException - /// - /// - /// - public partial class ClosedWatchServiceException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.nio.file.ClosedWatchServiceException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CopyOption - /// - /// - /// - public partial class CopyOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.CopyOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CopyOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CopyOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CopyOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CopyOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DirectoryIteratorException - /// - /// - /// - public partial class DirectoryIteratorException : Java.Util.ConcurrentModificationException - { - const string _bridgeClassName = "java.nio.file.DirectoryIteratorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DirectoryNotEmptyException - /// - /// - /// - public partial class DirectoryNotEmptyException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.DirectoryNotEmptyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DirectoryStream - /// - /// - /// - public partial class DirectoryStream : Java.Lang.Iterable - { - const string _bridgeClassName = "java.nio.file.DirectoryStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectoryStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectoryStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Filter - /// - /// - /// - public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.DirectoryStream$Filter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Filter - /// - /// - /// - /// - public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.nio.file.DirectoryStream$Filter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DirectoryStream - /// - /// - /// - /// - public partial class DirectoryStream : Java.Lang.Iterable - { - const string _bridgeClassName = "java.nio.file.DirectoryStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectoryStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectoryStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileAlreadyExistsException - /// - /// - /// - public partial class FileAlreadyExistsException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.FileAlreadyExistsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Files - /// - /// - /// - public partial class Files : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.Files"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Files() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Files(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileStore - /// - /// - /// - public partial class FileStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.FileStore"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileStore() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileStore(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileSystem - /// - /// - /// - public partial class FileSystem : Java.Io.Closeable - { - const string _bridgeClassName = "java.nio.file.FileSystem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileSystem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileSystem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileSystemAlreadyExistsException - /// - /// - /// - public partial class FileSystemAlreadyExistsException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.nio.file.FileSystemAlreadyExistsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FileSystemException - /// - /// - /// - public partial class FileSystemException : Java.Io.IOException - { - const string _bridgeClassName = "java.nio.file.FileSystemException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FileSystemLoopException - /// - /// - /// - public partial class FileSystemLoopException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.FileSystemLoopException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FileSystemNotFoundException - /// - /// - /// - public partial class FileSystemNotFoundException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.nio.file.FileSystemNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FileSystems - /// - /// - /// - public partial class FileSystems : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.FileSystems"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileSystems() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileSystems(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileVisitOption - /// - /// - /// - public partial class FileVisitOption : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.FileVisitOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileVisitOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileVisitOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileVisitor - /// - /// - /// - public partial class FileVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.FileVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileVisitor - /// - /// - /// - /// - public partial class FileVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.nio.file.FileVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileVisitResult - /// - /// - /// - public partial class FileVisitResult : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.FileVisitResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileVisitResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileVisitResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidPathException - /// - /// - /// - public partial class InvalidPathException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.file.InvalidPathException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LinkOption - /// - /// - /// - public partial class LinkOption : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.LinkOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkPermission - /// - /// - /// - public partial class LinkPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.nio.file.LinkPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchFileException - /// - /// - /// - public partial class NoSuchFileException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.NoSuchFileException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotDirectoryException - /// - /// - /// - public partial class NotDirectoryException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.NotDirectoryException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotLinkException - /// - /// - /// - public partial class NotLinkException : Java.Nio.File.FileSystemException - { - const string _bridgeClassName = "java.nio.file.NotLinkException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OpenOption - /// - /// - /// - public partial class OpenOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.OpenOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Path - /// - /// - /// - public partial class Path : Java.Lang.Iterable - { - const string _bridgeClassName = "java.nio.file.Path"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Path class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Path() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Path class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Path(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PathMatcher - /// - /// - /// - public partial class PathMatcher : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.PathMatcher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PathMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PathMatcher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PathMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PathMatcher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Paths - /// - /// - /// - public partial class Paths : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.Paths"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Paths() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Paths(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProviderMismatchException - /// - /// - /// - public partial class ProviderMismatchException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.nio.file.ProviderMismatchException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ProviderNotFoundException - /// - /// - /// - public partial class ProviderNotFoundException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.nio.file.ProviderNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ReadOnlyFileSystemException - /// - /// - /// - public partial class ReadOnlyFileSystemException : Java.Lang.UnsupportedOperationException - { - const string _bridgeClassName = "java.nio.file.ReadOnlyFileSystemException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SecureDirectoryStream - /// - /// - /// - public partial class SecureDirectoryStream : Java.Nio.File.DirectoryStream - { - const string _bridgeClassName = "java.nio.file.SecureDirectoryStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureDirectoryStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureDirectoryStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecureDirectoryStream - /// - /// - /// - /// - public partial class SecureDirectoryStream : Java.Nio.File.DirectoryStream - { - const string _bridgeClassName = "java.nio.file.SecureDirectoryStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureDirectoryStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureDirectoryStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleFileVisitor - /// - /// - /// - public partial class SimpleFileVisitor : Java.Nio.File.FileVisitor - { - const string _bridgeClassName = "java.nio.file.SimpleFileVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleFileVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleFileVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleFileVisitor - /// - /// - /// - /// - public partial class SimpleFileVisitor : Java.Nio.File.FileVisitor - { - const string _bridgeClassName = "java.nio.file.SimpleFileVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleFileVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleFileVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardCopyOption - /// - /// - /// - public partial class StandardCopyOption : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.StandardCopyOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardCopyOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardCopyOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardOpenOption - /// - /// - /// - public partial class StandardOpenOption : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.StandardOpenOption"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardOpenOption() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardOpenOption(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardWatchEventKinds - /// - /// - /// - public partial class StandardWatchEventKinds : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.StandardWatchEventKinds"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardWatchEventKinds() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardWatchEventKinds(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Watchable - /// - /// - /// - public partial class Watchable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.Watchable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Watchable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Watchable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Watchable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Watchable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WatchEvent - /// - /// - /// - public partial class WatchEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.WatchEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Kind - /// - /// - /// - public partial class Kind : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.WatchEvent$Kind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Kind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Kind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Kind - /// - /// - /// - /// - public partial class Kind : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.nio.file.WatchEvent$Kind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Kind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Kind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Modifier - /// - /// - /// - public partial class Modifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.WatchEvent$Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Modifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Modifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region WatchEvent - /// - /// - /// - /// - public partial class WatchEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.nio.file.WatchEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WatchKey - /// - /// - /// - public partial class WatchKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.WatchKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WatchKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WatchKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WatchService - /// - /// - /// - public partial class WatchService : Java.Io.Closeable - { - const string _bridgeClassName = "java.nio.file.WatchService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WatchService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WatchService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WatchService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/File/AtomicMoveNotSupportedException.cs b/src/net/JNet/Generated/Java/Nio/File/AtomicMoveNotSupportedException.cs index e5d3c6ed97..b7ad1ae29a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/AtomicMoveNotSupportedException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/AtomicMoveNotSupportedException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region AtomicMoveNotSupportedException + #region AtomicMoveNotSupportedException declaration + /// + /// + /// + public partial class AtomicMoveNotSupportedException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.AtomicMoveNotSupportedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AtomicMoveNotSupportedException implementation public partial class AtomicMoveNotSupportedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntry.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntry.cs index 9a8848371d..13c6a66c1b 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntry.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntry.cs @@ -25,7 +25,97 @@ namespace Java.Nio.File.Attribute { - #region AclEntry + #region AclEntry declaration + /// + /// + /// + public partial class AclEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.AclEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AclEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AclEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.AclEntry$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AclEntry implementation public partial class AclEntry { #region Constructors @@ -98,7 +188,7 @@ public Java.Nio.File.Attribute.UserPrincipal Principal() #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryFlag.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryFlag.cs index c6913a30f4..aa353bd787 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryFlag.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryFlag.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File.Attribute { - #region AclEntryFlag + #region AclEntryFlag declaration + /// + /// + /// + public partial class AclEntryFlag : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.attribute.AclEntryFlag"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AclEntryFlag() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AclEntryFlag(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AclEntryFlag implementation public partial class AclEntryFlag { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryPermission.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryPermission.cs index fc4554e054..2aae3e7bcd 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryPermission.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryPermission.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File.Attribute { - #region AclEntryPermission + #region AclEntryPermission declaration + /// + /// + /// + public partial class AclEntryPermission : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.attribute.AclEntryPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AclEntryPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AclEntryPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AclEntryPermission implementation public partial class AclEntryPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryType.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryType.cs index c190328304..11dc2f8321 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryType.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclEntryType.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File.Attribute { - #region AclEntryType + #region AclEntryType declaration + /// + /// + /// + public partial class AclEntryType : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.attribute.AclEntryType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AclEntryType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AclEntryType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AclEntryType implementation public partial class AclEntryType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclFileAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclFileAttributeView.cs index 27a751c281..670622e445 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AclFileAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/AclFileAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region AclFileAttributeView declaration + /// + /// + /// + public partial class AclFileAttributeView : Java.Nio.File.Attribute.FileOwnerAttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.AclFileAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AclFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AclFileAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AclFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AclFileAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAclFileAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IAclFileAttributeView : Java.Nio.File.Attribute.IFileOw } #endregion - #region AclFileAttributeView + #region AclFileAttributeView implementation public partial class AclFileAttributeView : Java.Nio.File.Attribute.IAclFileAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AllPackageClasses.cs deleted file mode 100644 index e214a99e3a..0000000000 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AllPackageClasses.cs +++ /dev/null @@ -1,1207 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.File.Attribute -{ - #region AclEntry - /// - /// - /// - public partial class AclEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.AclEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AclEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AclEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.AclEntry$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AclEntryFlag - /// - /// - /// - public partial class AclEntryFlag : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.attribute.AclEntryFlag"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AclEntryFlag() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AclEntryFlag(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AclEntryPermission - /// - /// - /// - public partial class AclEntryPermission : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.attribute.AclEntryPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AclEntryPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AclEntryPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AclEntryType - /// - /// - /// - public partial class AclEntryType : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.attribute.AclEntryType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AclEntryType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AclEntryType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AclFileAttributeView - /// - /// - /// - public partial class AclFileAttributeView : Java.Nio.File.Attribute.FileOwnerAttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.AclFileAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AclFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AclFileAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AclFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AclFileAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeView - /// - /// - /// - public partial class AttributeView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.AttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicFileAttributes - /// - /// - /// - public partial class BasicFileAttributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.BasicFileAttributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BasicFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicFileAttributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BasicFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicFileAttributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicFileAttributeView - /// - /// - /// - public partial class BasicFileAttributeView : Java.Nio.File.Attribute.FileAttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.BasicFileAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BasicFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicFileAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BasicFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicFileAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DosFileAttributes - /// - /// - /// - public partial class DosFileAttributes : Java.Nio.File.Attribute.BasicFileAttributes - { - const string _bridgeClassName = "java.nio.file.attribute.DosFileAttributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DosFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DosFileAttributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DosFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DosFileAttributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DosFileAttributeView - /// - /// - /// - public partial class DosFileAttributeView : Java.Nio.File.Attribute.BasicFileAttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.DosFileAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DosFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DosFileAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DosFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DosFileAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileAttribute - /// - /// - /// - public partial class FileAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.FileAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileAttribute - /// - /// - /// - /// - public partial class FileAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.nio.file.attribute.FileAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileAttributeView - /// - /// - /// - public partial class FileAttributeView : Java.Nio.File.Attribute.AttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.FileAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileOwnerAttributeView - /// - /// - /// - public partial class FileOwnerAttributeView : Java.Nio.File.Attribute.FileAttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.FileOwnerAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileOwnerAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileOwnerAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileOwnerAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileOwnerAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileStoreAttributeView - /// - /// - /// - public partial class FileStoreAttributeView : Java.Nio.File.Attribute.AttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.FileStoreAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileStoreAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileStoreAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileStoreAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileStoreAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileTime - /// - /// - /// - public partial class FileTime : Java.Lang.Comparable - { - const string _bridgeClassName = "java.nio.file.attribute.FileTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GroupPrincipal - /// - /// - /// - public partial class GroupPrincipal : Java.Nio.File.Attribute.UserPrincipal - { - const string _bridgeClassName = "java.nio.file.attribute.GroupPrincipal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GroupPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GroupPrincipal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GroupPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GroupPrincipal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PosixFileAttributes - /// - /// - /// - public partial class PosixFileAttributes : Java.Nio.File.Attribute.BasicFileAttributes - { - const string _bridgeClassName = "java.nio.file.attribute.PosixFileAttributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PosixFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PosixFileAttributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PosixFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PosixFileAttributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PosixFileAttributeView - /// - /// - /// - public partial class PosixFileAttributeView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.PosixFileAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PosixFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PosixFileAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PosixFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PosixFileAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PosixFilePermission - /// - /// - /// - public partial class PosixFilePermission : Java.Lang.Enum - { - const string _bridgeClassName = "java.nio.file.attribute.PosixFilePermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PosixFilePermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PosixFilePermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PosixFilePermissions - /// - /// - /// - public partial class PosixFilePermissions : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.PosixFilePermissions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PosixFilePermissions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PosixFilePermissions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UserDefinedFileAttributeView - /// - /// - /// - public partial class UserDefinedFileAttributeView : Java.Nio.File.Attribute.FileAttributeView - { - const string _bridgeClassName = "java.nio.file.attribute.UserDefinedFileAttributeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UserDefinedFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserDefinedFileAttributeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UserDefinedFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserDefinedFileAttributeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UserPrincipal - /// - /// - /// - public partial class UserPrincipal : Java.Security.Principal - { - const string _bridgeClassName = "java.nio.file.attribute.UserPrincipal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UserPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserPrincipal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UserPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserPrincipal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UserPrincipalLookupService - /// - /// - /// - public partial class UserPrincipalLookupService : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.attribute.UserPrincipalLookupService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UserPrincipalLookupService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserPrincipalLookupService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UserPrincipalLookupService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserPrincipalLookupService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UserPrincipalNotFoundException - /// - /// - /// - public partial class UserPrincipalNotFoundException : Java.Io.IOException - { - const string _bridgeClassName = "java.nio.file.attribute.UserPrincipalNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/AttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/AttributeView.cs index 1f9e253fe1..9c7945ea7c 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/AttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/AttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region AttributeView declaration + /// + /// + /// + public partial class AttributeView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.AttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IAttributeView } #endregion - #region AttributeView + #region AttributeView implementation public partial class AttributeView : Java.Nio.File.Attribute.IAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributeView.cs index 4e9f462abc..ee34111b75 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region BasicFileAttributeView declaration + /// + /// + /// + public partial class BasicFileAttributeView : Java.Nio.File.Attribute.FileAttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.BasicFileAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BasicFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicFileAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BasicFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicFileAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBasicFileAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +109,7 @@ public partial interface IBasicFileAttributeView : Java.Nio.File.Attribute.IFile } #endregion - #region BasicFileAttributeView + #region BasicFileAttributeView implementation public partial class BasicFileAttributeView : Java.Nio.File.Attribute.IBasicFileAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributes.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributes.cs index a204a22000..329e16ca9a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributes.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/BasicFileAttributes.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region BasicFileAttributes declaration + /// + /// + /// + public partial class BasicFileAttributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.BasicFileAttributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BasicFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicFileAttributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BasicFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicFileAttributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBasicFileAttributes /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +135,7 @@ public partial interface IBasicFileAttributes } #endregion - #region BasicFileAttributes + #region BasicFileAttributes implementation public partial class BasicFileAttributes : Java.Nio.File.Attribute.IBasicFileAttributes { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributeView.cs index 430fb33156..8091436058 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region DosFileAttributeView declaration + /// + /// + /// + public partial class DosFileAttributeView : Java.Nio.File.Attribute.BasicFileAttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.DosFileAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DosFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DosFileAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DosFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DosFileAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDosFileAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface IDosFileAttributeView : Java.Nio.File.Attribute.IBasicF } #endregion - #region DosFileAttributeView + #region DosFileAttributeView implementation public partial class DosFileAttributeView : Java.Nio.File.Attribute.IDosFileAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributes.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributes.cs index 751cd65160..1d0dcb599d 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributes.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/DosFileAttributes.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region DosFileAttributes declaration + /// + /// + /// + public partial class DosFileAttributes : Java.Nio.File.Attribute.BasicFileAttributes + { + const string _bridgeClassName = "java.nio.file.attribute.DosFileAttributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DosFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DosFileAttributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DosFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DosFileAttributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDosFileAttributes /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IDosFileAttributes : Java.Nio.File.Attribute.IBasicFile } #endregion - #region DosFileAttributes + #region DosFileAttributes implementation public partial class DosFileAttributes : Java.Nio.File.Attribute.IDosFileAttributes { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttribute.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttribute.cs index b6c2684311..20dcb2bb6d 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttribute.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttribute.cs @@ -25,7 +25,102 @@ namespace Java.Nio.File.Attribute { - #region FileAttribute + #region FileAttribute declaration + /// + /// + /// + public partial class FileAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.FileAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileAttribute declaration + /// + /// + /// + /// + public partial class FileAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.nio.file.attribute.FileAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileAttribute implementation public partial class FileAttribute { #region Constructors @@ -100,7 +195,7 @@ public partial interface IFileAttribute } #endregion - #region FileAttribute + #region FileAttribute implementation public partial class FileAttribute : Java.Nio.File.Attribute.IFileAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttributeView.cs index 302982ea70..be7d14d7bf 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region FileAttributeView declaration + /// + /// + /// + public partial class FileAttributeView : Java.Nio.File.Attribute.AttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.FileAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFileAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IFileAttributeView : Java.Nio.File.Attribute.IAttribute } #endregion - #region FileAttributeView + #region FileAttributeView implementation public partial class FileAttributeView : Java.Nio.File.Attribute.IFileAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileOwnerAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileOwnerAttributeView.cs index 0e2fcda39b..81d794a94b 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileOwnerAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileOwnerAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region FileOwnerAttributeView declaration + /// + /// + /// + public partial class FileOwnerAttributeView : Java.Nio.File.Attribute.FileAttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.FileOwnerAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileOwnerAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileOwnerAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileOwnerAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileOwnerAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFileOwnerAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IFileOwnerAttributeView : Java.Nio.File.Attribute.IFile } #endregion - #region FileOwnerAttributeView + #region FileOwnerAttributeView implementation public partial class FileOwnerAttributeView : Java.Nio.File.Attribute.IFileOwnerAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileStoreAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileStoreAttributeView.cs index 2a211d3000..1a6c6668f6 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileStoreAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileStoreAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region FileStoreAttributeView declaration + /// + /// + /// + public partial class FileStoreAttributeView : Java.Nio.File.Attribute.AttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.FileStoreAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileStoreAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileStoreAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileStoreAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileStoreAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFileStoreAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IFileStoreAttributeView : Java.Nio.File.Attribute.IAttr } #endregion - #region FileStoreAttributeView + #region FileStoreAttributeView implementation public partial class FileStoreAttributeView : Java.Nio.File.Attribute.IFileStoreAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileTime.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileTime.cs index cedbfb2fcf..506c26dc21 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/FileTime.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/FileTime.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File.Attribute { - #region FileTime + #region FileTime declaration + /// + /// + /// + public partial class FileTime : Java.Lang.Comparable + { + const string _bridgeClassName = "java.nio.file.attribute.FileTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileTime implementation public partial class FileTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/GroupPrincipal.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/GroupPrincipal.cs index 9646579315..706f1cfbe8 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/GroupPrincipal.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/GroupPrincipal.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region GroupPrincipal declaration + /// + /// + /// + public partial class GroupPrincipal : Java.Nio.File.Attribute.UserPrincipal + { + const string _bridgeClassName = "java.nio.file.attribute.GroupPrincipal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GroupPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GroupPrincipal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GroupPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GroupPrincipal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGroupPrincipal /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IGroupPrincipal : Java.Nio.File.Attribute.IUserPrincipa } #endregion - #region GroupPrincipal + #region GroupPrincipal implementation public partial class GroupPrincipal : Java.Nio.File.Attribute.IGroupPrincipal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributeView.cs index d098b8d903..3d210f3bc7 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region PosixFileAttributeView declaration + /// + /// + /// + public partial class PosixFileAttributeView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.PosixFileAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PosixFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PosixFileAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PosixFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PosixFileAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPosixFileAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IPosixFileAttributeView } #endregion - #region PosixFileAttributeView + #region PosixFileAttributeView implementation public partial class PosixFileAttributeView : Java.Nio.File.Attribute.IPosixFileAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributes.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributes.cs index d5bc23bc7a..b703216200 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributes.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFileAttributes.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region PosixFileAttributes declaration + /// + /// + /// + public partial class PosixFileAttributes : Java.Nio.File.Attribute.BasicFileAttributes + { + const string _bridgeClassName = "java.nio.file.attribute.PosixFileAttributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PosixFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PosixFileAttributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PosixFileAttributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PosixFileAttributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPosixFileAttributes /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IPosixFileAttributes : Java.Nio.File.Attribute.IBasicFi } #endregion - #region PosixFileAttributes + #region PosixFileAttributes implementation public partial class PosixFileAttributes : Java.Nio.File.Attribute.IPosixFileAttributes { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermission.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermission.cs index fc0ddc3b30..a65d6182a0 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermission.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermission.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File.Attribute { - #region PosixFilePermission + #region PosixFilePermission declaration + /// + /// + /// + public partial class PosixFilePermission : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.attribute.PosixFilePermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PosixFilePermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PosixFilePermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PosixFilePermission implementation public partial class PosixFilePermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermissions.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermissions.cs index 074ac86664..176a02e315 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermissions.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/PosixFilePermissions.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File.Attribute { - #region PosixFilePermissions + #region PosixFilePermissions declaration + /// + /// + /// + public partial class PosixFilePermissions : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.PosixFilePermissions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PosixFilePermissions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PosixFilePermissions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PosixFilePermissions implementation public partial class PosixFilePermissions { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserDefinedFileAttributeView.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserDefinedFileAttributeView.cs index af50489825..bfc5b633fa 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserDefinedFileAttributeView.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserDefinedFileAttributeView.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region UserDefinedFileAttributeView declaration + /// + /// + /// + public partial class UserDefinedFileAttributeView : Java.Nio.File.Attribute.FileAttributeView + { + const string _bridgeClassName = "java.nio.file.attribute.UserDefinedFileAttributeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UserDefinedFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserDefinedFileAttributeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UserDefinedFileAttributeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserDefinedFileAttributeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUserDefinedFileAttributeView /// /// .NET interface for TO BE DEFINED FROM USER @@ -83,7 +130,7 @@ public partial interface IUserDefinedFileAttributeView : Java.Nio.File.Attribute } #endregion - #region UserDefinedFileAttributeView + #region UserDefinedFileAttributeView implementation public partial class UserDefinedFileAttributeView : Java.Nio.File.Attribute.IUserDefinedFileAttributeView { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipal.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipal.cs index 6d387b2165..3f4c576b91 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipal.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipal.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File.Attribute { + #region UserPrincipal declaration + /// + /// + /// + public partial class UserPrincipal : Java.Security.Principal + { + const string _bridgeClassName = "java.nio.file.attribute.UserPrincipal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UserPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserPrincipal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UserPrincipal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserPrincipal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUserPrincipal /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IUserPrincipal : Java.Security.IPrincipal } #endregion - #region UserPrincipal + #region UserPrincipal implementation public partial class UserPrincipal : Java.Nio.File.Attribute.IUserPrincipal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalLookupService.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalLookupService.cs index 4c0ccf75e1..c298ae5412 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalLookupService.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalLookupService.cs @@ -25,7 +25,54 @@ namespace Java.Nio.File.Attribute { - #region UserPrincipalLookupService + #region UserPrincipalLookupService declaration + /// + /// + /// + public partial class UserPrincipalLookupService : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.attribute.UserPrincipalLookupService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UserPrincipalLookupService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserPrincipalLookupService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UserPrincipalLookupService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserPrincipalLookupService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UserPrincipalLookupService implementation public partial class UserPrincipalLookupService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalNotFoundException.cs b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalNotFoundException.cs index 1c217b2160..b474dce10e 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalNotFoundException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Attribute/UserPrincipalNotFoundException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File.Attribute { - #region UserPrincipalNotFoundException + #region UserPrincipalNotFoundException declaration + /// + /// + /// + public partial class UserPrincipalNotFoundException : Java.Io.IOException + { + const string _bridgeClassName = "java.nio.file.attribute.UserPrincipalNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UserPrincipalNotFoundException implementation public partial class UserPrincipalNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/ClosedDirectoryStreamException.cs b/src/net/JNet/Generated/Java/Nio/File/ClosedDirectoryStreamException.cs index 57c8875fd2..28803899e4 100644 --- a/src/net/JNet/Generated/Java/Nio/File/ClosedDirectoryStreamException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/ClosedDirectoryStreamException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region ClosedDirectoryStreamException + #region ClosedDirectoryStreamException declaration + /// + /// + /// + public partial class ClosedDirectoryStreamException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.file.ClosedDirectoryStreamException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClosedDirectoryStreamException implementation public partial class ClosedDirectoryStreamException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/ClosedFileSystemException.cs b/src/net/JNet/Generated/Java/Nio/File/ClosedFileSystemException.cs index 3472747dd1..a76c5654bd 100644 --- a/src/net/JNet/Generated/Java/Nio/File/ClosedFileSystemException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/ClosedFileSystemException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region ClosedFileSystemException + #region ClosedFileSystemException declaration + /// + /// + /// + public partial class ClosedFileSystemException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.file.ClosedFileSystemException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClosedFileSystemException implementation public partial class ClosedFileSystemException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/ClosedWatchServiceException.cs b/src/net/JNet/Generated/Java/Nio/File/ClosedWatchServiceException.cs index 2f4c5cb510..a452175b31 100644 --- a/src/net/JNet/Generated/Java/Nio/File/ClosedWatchServiceException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/ClosedWatchServiceException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region ClosedWatchServiceException + #region ClosedWatchServiceException declaration + /// + /// + /// + public partial class ClosedWatchServiceException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.file.ClosedWatchServiceException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ClosedWatchServiceException implementation public partial class ClosedWatchServiceException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/CopyOption.cs b/src/net/JNet/Generated/Java/Nio/File/CopyOption.cs index a89cdf4f38..d4f3c3ee1f 100644 --- a/src/net/JNet/Generated/Java/Nio/File/CopyOption.cs +++ b/src/net/JNet/Generated/Java/Nio/File/CopyOption.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region CopyOption declaration + /// + /// + /// + public partial class CopyOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.CopyOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CopyOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CopyOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CopyOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CopyOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICopyOption /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICopyOption } #endregion - #region CopyOption + #region CopyOption implementation public partial class CopyOption : Java.Nio.File.ICopyOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/DirectoryIteratorException.cs b/src/net/JNet/Generated/Java/Nio/File/DirectoryIteratorException.cs index 274eb87472..a9428eed11 100644 --- a/src/net/JNet/Generated/Java/Nio/File/DirectoryIteratorException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/DirectoryIteratorException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region DirectoryIteratorException + #region DirectoryIteratorException declaration + /// + /// + /// + public partial class DirectoryIteratorException : Java.Util.ConcurrentModificationException + { + const string _bridgeClassName = "java.nio.file.DirectoryIteratorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DirectoryIteratorException implementation public partial class DirectoryIteratorException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/DirectoryNotEmptyException.cs b/src/net/JNet/Generated/Java/Nio/File/DirectoryNotEmptyException.cs index 9450dcf22f..5697660787 100644 --- a/src/net/JNet/Generated/Java/Nio/File/DirectoryNotEmptyException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/DirectoryNotEmptyException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region DirectoryNotEmptyException + #region DirectoryNotEmptyException declaration + /// + /// + /// + public partial class DirectoryNotEmptyException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.DirectoryNotEmptyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DirectoryNotEmptyException implementation public partial class DirectoryNotEmptyException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/DirectoryStream.cs b/src/net/JNet/Generated/Java/Nio/File/DirectoryStream.cs index 7fed66ffb9..f86aaaff3f 100644 --- a/src/net/JNet/Generated/Java/Nio/File/DirectoryStream.cs +++ b/src/net/JNet/Generated/Java/Nio/File/DirectoryStream.cs @@ -25,7 +25,197 @@ namespace Java.Nio.File { - #region DirectoryStream + #region DirectoryStream declaration + /// + /// + /// + public partial class DirectoryStream : Java.Lang.Iterable + { + const string _bridgeClassName = "java.nio.file.DirectoryStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectoryStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectoryStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Filter declaration + /// + /// + /// + public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.DirectoryStream$Filter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Filter declaration + /// + /// + /// + /// + public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.nio.file.DirectoryStream$Filter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DirectoryStream declaration + /// + /// + /// + /// + public partial class DirectoryStream : Java.Lang.Iterable + { + const string _bridgeClassName = "java.nio.file.DirectoryStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectoryStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectoryStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DirectoryStream implementation public partial class DirectoryStream { #region Constructors @@ -61,7 +251,7 @@ public Java.Util.Iterator Iterator() #endregion #region Nested classes - #region Filter + #region Filter implementation public partial class Filter { #region Constructors @@ -102,7 +292,7 @@ public bool Accept(object arg0) } #endregion - #region Filter + #region Filter implementation public partial class Filter { #region Constructors @@ -177,7 +367,7 @@ public partial interface IDirectoryStream } #endregion - #region DirectoryStream + #region DirectoryStream implementation public partial class DirectoryStream : Java.Nio.File.IDirectoryStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileAlreadyExistsException.cs b/src/net/JNet/Generated/Java/Nio/File/FileAlreadyExistsException.cs index b69de9d41f..7dd77262e4 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileAlreadyExistsException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileAlreadyExistsException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region FileAlreadyExistsException + #region FileAlreadyExistsException declaration + /// + /// + /// + public partial class FileAlreadyExistsException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.FileAlreadyExistsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileAlreadyExistsException implementation public partial class FileAlreadyExistsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileStore.cs b/src/net/JNet/Generated/Java/Nio/File/FileStore.cs index 8539bb8817..8e8127a0af 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileStore.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileStore.cs @@ -25,7 +25,54 @@ namespace Java.Nio.File { - #region FileStore + #region FileStore declaration + /// + /// + /// + public partial class FileStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.FileStore"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileStore() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileStore(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileStore implementation public partial class FileStore { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileSystem.cs b/src/net/JNet/Generated/Java/Nio/File/FileSystem.cs index 0a6cf06bd0..3821b0512a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileSystem.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileSystem.cs @@ -25,7 +25,54 @@ namespace Java.Nio.File { - #region FileSystem + #region FileSystem declaration + /// + /// + /// + public partial class FileSystem : Java.Io.Closeable + { + const string _bridgeClassName = "java.nio.file.FileSystem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileSystem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileSystem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileSystem implementation public partial class FileSystem { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileSystemAlreadyExistsException.cs b/src/net/JNet/Generated/Java/Nio/File/FileSystemAlreadyExistsException.cs index e7afdf1e1f..9418550b99 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileSystemAlreadyExistsException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileSystemAlreadyExistsException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region FileSystemAlreadyExistsException + #region FileSystemAlreadyExistsException declaration + /// + /// + /// + public partial class FileSystemAlreadyExistsException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.nio.file.FileSystemAlreadyExistsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileSystemAlreadyExistsException implementation public partial class FileSystemAlreadyExistsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileSystemException.cs b/src/net/JNet/Generated/Java/Nio/File/FileSystemException.cs index 7f1b112e50..c4bdb59320 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileSystemException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileSystemException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region FileSystemException + #region FileSystemException declaration + /// + /// + /// + public partial class FileSystemException : Java.Io.IOException + { + const string _bridgeClassName = "java.nio.file.FileSystemException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileSystemException implementation public partial class FileSystemException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileSystemLoopException.cs b/src/net/JNet/Generated/Java/Nio/File/FileSystemLoopException.cs index 446be2b702..96cec6cba1 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileSystemLoopException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileSystemLoopException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region FileSystemLoopException + #region FileSystemLoopException declaration + /// + /// + /// + public partial class FileSystemLoopException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.FileSystemLoopException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileSystemLoopException implementation public partial class FileSystemLoopException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileSystemNotFoundException.cs b/src/net/JNet/Generated/Java/Nio/File/FileSystemNotFoundException.cs index 4a65670279..e072777311 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileSystemNotFoundException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileSystemNotFoundException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region FileSystemNotFoundException + #region FileSystemNotFoundException declaration + /// + /// + /// + public partial class FileSystemNotFoundException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.nio.file.FileSystemNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FileSystemNotFoundException implementation public partial class FileSystemNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileSystems.cs b/src/net/JNet/Generated/Java/Nio/File/FileSystems.cs index 031ff1b48f..ff45c4e978 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileSystems.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileSystems.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region FileSystems + #region FileSystems declaration + /// + /// + /// + public partial class FileSystems : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.FileSystems"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileSystems() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileSystems(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileSystems implementation public partial class FileSystems { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileVisitOption.cs b/src/net/JNet/Generated/Java/Nio/File/FileVisitOption.cs index 8de0e9e265..5effce9e03 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileVisitOption.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileVisitOption.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region FileVisitOption + #region FileVisitOption declaration + /// + /// + /// + public partial class FileVisitOption : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.FileVisitOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileVisitOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileVisitOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileVisitOption implementation public partial class FileVisitOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileVisitResult.cs b/src/net/JNet/Generated/Java/Nio/File/FileVisitResult.cs index 38cd6e73f4..8ec45fa61b 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileVisitResult.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileVisitResult.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region FileVisitResult + #region FileVisitResult declaration + /// + /// + /// + public partial class FileVisitResult : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.FileVisitResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileVisitResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileVisitResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileVisitResult implementation public partial class FileVisitResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/FileVisitor.cs b/src/net/JNet/Generated/Java/Nio/File/FileVisitor.cs index dacac9318f..e142037324 100644 --- a/src/net/JNet/Generated/Java/Nio/File/FileVisitor.cs +++ b/src/net/JNet/Generated/Java/Nio/File/FileVisitor.cs @@ -25,7 +25,102 @@ namespace Java.Nio.File { - #region FileVisitor + #region FileVisitor declaration + /// + /// + /// + public partial class FileVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.FileVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileVisitor declaration + /// + /// + /// + /// + public partial class FileVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.nio.file.FileVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileVisitor implementation public partial class FileVisitor { #region Constructors @@ -150,7 +245,7 @@ public partial interface IFileVisitor } #endregion - #region FileVisitor + #region FileVisitor implementation public partial class FileVisitor : Java.Nio.File.IFileVisitor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Files.cs b/src/net/JNet/Generated/Java/Nio/File/Files.cs index 80cf03a5f6..9a4fd177fc 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Files.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Files.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region Files + #region Files declaration + /// + /// + /// + public partial class Files : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.Files"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Files() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Files(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Files implementation public partial class Files { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/InvalidPathException.cs b/src/net/JNet/Generated/Java/Nio/File/InvalidPathException.cs index 29af1ea085..c64acbf92e 100644 --- a/src/net/JNet/Generated/Java/Nio/File/InvalidPathException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/InvalidPathException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region InvalidPathException + #region InvalidPathException declaration + /// + /// + /// + public partial class InvalidPathException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.file.InvalidPathException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidPathException implementation public partial class InvalidPathException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/LinkOption.cs b/src/net/JNet/Generated/Java/Nio/File/LinkOption.cs index 3067f87907..68da67c2a9 100644 --- a/src/net/JNet/Generated/Java/Nio/File/LinkOption.cs +++ b/src/net/JNet/Generated/Java/Nio/File/LinkOption.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region LinkOption + #region LinkOption declaration + /// + /// + /// + public partial class LinkOption : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.LinkOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkOption implementation public partial class LinkOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/LinkPermission.cs b/src/net/JNet/Generated/Java/Nio/File/LinkPermission.cs index c50171dd76..ae7176c82f 100644 --- a/src/net/JNet/Generated/Java/Nio/File/LinkPermission.cs +++ b/src/net/JNet/Generated/Java/Nio/File/LinkPermission.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region LinkPermission + #region LinkPermission declaration + /// + /// + /// + public partial class LinkPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.nio.file.LinkPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkPermission implementation public partial class LinkPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/NoSuchFileException.cs b/src/net/JNet/Generated/Java/Nio/File/NoSuchFileException.cs index 75ddd33aec..e2ab9ee30a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/NoSuchFileException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/NoSuchFileException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region NoSuchFileException + #region NoSuchFileException declaration + /// + /// + /// + public partial class NoSuchFileException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.NoSuchFileException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchFileException implementation public partial class NoSuchFileException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/NotDirectoryException.cs b/src/net/JNet/Generated/Java/Nio/File/NotDirectoryException.cs index ff1236b5de..a2af92088f 100644 --- a/src/net/JNet/Generated/Java/Nio/File/NotDirectoryException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/NotDirectoryException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region NotDirectoryException + #region NotDirectoryException declaration + /// + /// + /// + public partial class NotDirectoryException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.NotDirectoryException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotDirectoryException implementation public partial class NotDirectoryException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/NotLinkException.cs b/src/net/JNet/Generated/Java/Nio/File/NotLinkException.cs index bdeeaef2e3..1657fc0058 100644 --- a/src/net/JNet/Generated/Java/Nio/File/NotLinkException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/NotLinkException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region NotLinkException + #region NotLinkException declaration + /// + /// + /// + public partial class NotLinkException : Java.Nio.File.FileSystemException + { + const string _bridgeClassName = "java.nio.file.NotLinkException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotLinkException implementation public partial class NotLinkException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/OpenOption.cs b/src/net/JNet/Generated/Java/Nio/File/OpenOption.cs index 5968c9001e..cb9c32f336 100644 --- a/src/net/JNet/Generated/Java/Nio/File/OpenOption.cs +++ b/src/net/JNet/Generated/Java/Nio/File/OpenOption.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region OpenOption declaration + /// + /// + /// + public partial class OpenOption : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.OpenOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenOption class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenOption /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IOpenOption } #endregion - #region OpenOption + #region OpenOption implementation public partial class OpenOption : Java.Nio.File.IOpenOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Path.cs b/src/net/JNet/Generated/Java/Nio/File/Path.cs index ce94589adb..9db5a5c439 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Path.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Path.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region Path declaration + /// + /// + /// + public partial class Path : Java.Lang.Iterable + { + const string _bridgeClassName = "java.nio.file.Path"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Path class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Path() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Path class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Path(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPath /// /// .NET interface for TO BE DEFINED FROM USER @@ -196,7 +243,7 @@ public partial interface IPath } #endregion - #region Path + #region Path implementation public partial class Path : Java.Nio.File.IPath { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/PathMatcher.cs b/src/net/JNet/Generated/Java/Nio/File/PathMatcher.cs index 52722416aa..9ea5549071 100644 --- a/src/net/JNet/Generated/Java/Nio/File/PathMatcher.cs +++ b/src/net/JNet/Generated/Java/Nio/File/PathMatcher.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region PathMatcher declaration + /// + /// + /// + public partial class PathMatcher : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.PathMatcher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PathMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PathMatcher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PathMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PathMatcher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPathMatcher /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IPathMatcher } #endregion - #region PathMatcher + #region PathMatcher implementation public partial class PathMatcher : Java.Nio.File.IPathMatcher { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Paths.cs b/src/net/JNet/Generated/Java/Nio/File/Paths.cs index 94689ee610..067339508b 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Paths.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Paths.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region Paths + #region Paths declaration + /// + /// + /// + public partial class Paths : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.Paths"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Paths() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Paths(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Paths implementation public partial class Paths { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/ProviderMismatchException.cs b/src/net/JNet/Generated/Java/Nio/File/ProviderMismatchException.cs index f41069b17b..c3b8ad6f41 100644 --- a/src/net/JNet/Generated/Java/Nio/File/ProviderMismatchException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/ProviderMismatchException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region ProviderMismatchException + #region ProviderMismatchException declaration + /// + /// + /// + public partial class ProviderMismatchException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.nio.file.ProviderMismatchException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ProviderMismatchException implementation public partial class ProviderMismatchException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/ProviderNotFoundException.cs b/src/net/JNet/Generated/Java/Nio/File/ProviderNotFoundException.cs index 9c0b5e05e9..d54beb191a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/ProviderNotFoundException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/ProviderNotFoundException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region ProviderNotFoundException + #region ProviderNotFoundException declaration + /// + /// + /// + public partial class ProviderNotFoundException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.nio.file.ProviderNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ProviderNotFoundException implementation public partial class ProviderNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/ReadOnlyFileSystemException.cs b/src/net/JNet/Generated/Java/Nio/File/ReadOnlyFileSystemException.cs index 879d9a28cd..7b231c2a03 100644 --- a/src/net/JNet/Generated/Java/Nio/File/ReadOnlyFileSystemException.cs +++ b/src/net/JNet/Generated/Java/Nio/File/ReadOnlyFileSystemException.cs @@ -25,7 +25,24 @@ namespace Java.Nio.File { - #region ReadOnlyFileSystemException + #region ReadOnlyFileSystemException declaration + /// + /// + /// + public partial class ReadOnlyFileSystemException : Java.Lang.UnsupportedOperationException + { + const string _bridgeClassName = "java.nio.file.ReadOnlyFileSystemException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ReadOnlyFileSystemException implementation public partial class ReadOnlyFileSystemException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/SecureDirectoryStream.cs b/src/net/JNet/Generated/Java/Nio/File/SecureDirectoryStream.cs index 57532d2f12..627a3f1d8a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/SecureDirectoryStream.cs +++ b/src/net/JNet/Generated/Java/Nio/File/SecureDirectoryStream.cs @@ -25,7 +25,102 @@ namespace Java.Nio.File { - #region SecureDirectoryStream + #region SecureDirectoryStream declaration + /// + /// + /// + public partial class SecureDirectoryStream : Java.Nio.File.DirectoryStream + { + const string _bridgeClassName = "java.nio.file.SecureDirectoryStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureDirectoryStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureDirectoryStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecureDirectoryStream declaration + /// + /// + /// + /// + public partial class SecureDirectoryStream : Java.Nio.File.DirectoryStream + { + const string _bridgeClassName = "java.nio.file.SecureDirectoryStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureDirectoryStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecureDirectoryStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureDirectoryStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecureDirectoryStream implementation public partial class SecureDirectoryStream { #region Constructors @@ -200,7 +295,7 @@ public partial interface ISecureDirectoryStream : Java.Nio.File.IDirectoryStr } #endregion - #region SecureDirectoryStream + #region SecureDirectoryStream implementation public partial class SecureDirectoryStream : Java.Nio.File.ISecureDirectoryStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/SimpleFileVisitor.cs b/src/net/JNet/Generated/Java/Nio/File/SimpleFileVisitor.cs index 5b9fe5874d..1b3ec20143 100644 --- a/src/net/JNet/Generated/Java/Nio/File/SimpleFileVisitor.cs +++ b/src/net/JNet/Generated/Java/Nio/File/SimpleFileVisitor.cs @@ -25,7 +25,98 @@ namespace Java.Nio.File { - #region SimpleFileVisitor + #region SimpleFileVisitor declaration + /// + /// + /// + public partial class SimpleFileVisitor : Java.Nio.File.FileVisitor + { + const string _bridgeClassName = "java.nio.file.SimpleFileVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleFileVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleFileVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleFileVisitor declaration + /// + /// + /// + /// + public partial class SimpleFileVisitor : Java.Nio.File.FileVisitor + { + const string _bridgeClassName = "java.nio.file.SimpleFileVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleFileVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleFileVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleFileVisitor implementation public partial class SimpleFileVisitor { #region Constructors @@ -100,7 +191,7 @@ public Java.Nio.File.FileVisitResult VisitFileFailed(object arg0, MASES.JCOBridg } #endregion - #region SimpleFileVisitor + #region SimpleFileVisitor implementation public partial class SimpleFileVisitor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Nio/File/Spi/AllPackageClasses.cs deleted file mode 100644 index 1f6cac67a1..0000000000 --- a/src/net/JNet/Generated/Java/Nio/File/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,124 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Nio.File.Spi -{ - #region FileSystemProvider - /// - /// - /// - public partial class FileSystemProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.spi.FileSystemProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileSystemProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileSystemProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileSystemProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileSystemProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileTypeDetector - /// - /// - /// - public partial class FileTypeDetector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.nio.file.spi.FileTypeDetector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileTypeDetector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileTypeDetector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileTypeDetector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileTypeDetector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Nio/File/Spi/FileSystemProvider.cs b/src/net/JNet/Generated/Java/Nio/File/Spi/FileSystemProvider.cs index 43c647c0e8..e42c245df4 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Spi/FileSystemProvider.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Spi/FileSystemProvider.cs @@ -25,7 +25,54 @@ namespace Java.Nio.File.Spi { - #region FileSystemProvider + #region FileSystemProvider declaration + /// + /// + /// + public partial class FileSystemProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.spi.FileSystemProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileSystemProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileSystemProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileSystemProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileSystemProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileSystemProvider implementation public partial class FileSystemProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Spi/FileTypeDetector.cs b/src/net/JNet/Generated/Java/Nio/File/Spi/FileTypeDetector.cs index 3fdf39d653..5394347c63 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Spi/FileTypeDetector.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Spi/FileTypeDetector.cs @@ -25,7 +25,54 @@ namespace Java.Nio.File.Spi { - #region FileTypeDetector + #region FileTypeDetector declaration + /// + /// + /// + public partial class FileTypeDetector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.spi.FileTypeDetector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileTypeDetector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileTypeDetector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileTypeDetector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileTypeDetector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileTypeDetector implementation public partial class FileTypeDetector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/StandardCopyOption.cs b/src/net/JNet/Generated/Java/Nio/File/StandardCopyOption.cs index 6adbc52d74..409de729be 100644 --- a/src/net/JNet/Generated/Java/Nio/File/StandardCopyOption.cs +++ b/src/net/JNet/Generated/Java/Nio/File/StandardCopyOption.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region StandardCopyOption + #region StandardCopyOption declaration + /// + /// + /// + public partial class StandardCopyOption : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.StandardCopyOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardCopyOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardCopyOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardCopyOption implementation public partial class StandardCopyOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/StandardOpenOption.cs b/src/net/JNet/Generated/Java/Nio/File/StandardOpenOption.cs index fce57cb0bf..b3b776633e 100644 --- a/src/net/JNet/Generated/Java/Nio/File/StandardOpenOption.cs +++ b/src/net/JNet/Generated/Java/Nio/File/StandardOpenOption.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region StandardOpenOption + #region StandardOpenOption declaration + /// + /// + /// + public partial class StandardOpenOption : Java.Lang.Enum + { + const string _bridgeClassName = "java.nio.file.StandardOpenOption"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardOpenOption() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardOpenOption(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardOpenOption implementation public partial class StandardOpenOption { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/StandardWatchEventKinds.cs b/src/net/JNet/Generated/Java/Nio/File/StandardWatchEventKinds.cs index 5a78f4a65e..8f192c127a 100644 --- a/src/net/JNet/Generated/Java/Nio/File/StandardWatchEventKinds.cs +++ b/src/net/JNet/Generated/Java/Nio/File/StandardWatchEventKinds.cs @@ -25,7 +25,52 @@ namespace Java.Nio.File { - #region StandardWatchEventKinds + #region StandardWatchEventKinds declaration + /// + /// + /// + public partial class StandardWatchEventKinds : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.StandardWatchEventKinds"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardWatchEventKinds() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardWatchEventKinds(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardWatchEventKinds implementation public partial class StandardWatchEventKinds { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/WatchEvent.cs b/src/net/JNet/Generated/Java/Nio/File/WatchEvent.cs index 77cd9b0118..b3702d551e 100644 --- a/src/net/JNet/Generated/Java/Nio/File/WatchEvent.cs +++ b/src/net/JNet/Generated/Java/Nio/File/WatchEvent.cs @@ -25,7 +25,244 @@ namespace Java.Nio.File { - #region WatchEvent + #region WatchEvent declaration + /// + /// + /// + public partial class WatchEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.WatchEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Kind declaration + /// + /// + /// + public partial class Kind : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.WatchEvent$Kind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Kind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Kind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Kind declaration + /// + /// + /// + /// + public partial class Kind : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.nio.file.WatchEvent$Kind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Kind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Kind class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Kind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Modifier declaration + /// + /// + /// + public partial class Modifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.WatchEvent$Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Modifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Modifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region WatchEvent declaration + /// + /// + /// + /// + public partial class WatchEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.nio.file.WatchEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WatchEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WatchEvent implementation public partial class WatchEvent { #region Constructors @@ -73,7 +310,7 @@ public object Context() #endregion #region Nested classes - #region Kind + #region Kind implementation public partial class Kind { #region Constructors @@ -120,7 +357,7 @@ public Java.Lang.String Name() } #endregion - #region Kind + #region Kind implementation public partial class Kind { #region Constructors @@ -171,7 +408,7 @@ public Java.Lang.String Name() } #endregion - #region Modifier + #region Modifier implementation public partial class Modifier { #region Constructors @@ -250,7 +487,7 @@ public partial interface IWatchEvent } #endregion - #region WatchEvent + #region WatchEvent implementation public partial class WatchEvent : Java.Nio.File.IWatchEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/WatchKey.cs b/src/net/JNet/Generated/Java/Nio/File/WatchKey.cs index 3ca9dc6deb..22d27177e8 100644 --- a/src/net/JNet/Generated/Java/Nio/File/WatchKey.cs +++ b/src/net/JNet/Generated/Java/Nio/File/WatchKey.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region WatchKey declaration + /// + /// + /// + public partial class WatchKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.WatchKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WatchKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WatchKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWatchKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IWatchKey } #endregion - #region WatchKey + #region WatchKey implementation public partial class WatchKey : Java.Nio.File.IWatchKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/WatchService.cs b/src/net/JNet/Generated/Java/Nio/File/WatchService.cs index b96879e8da..d76ebf7b7b 100644 --- a/src/net/JNet/Generated/Java/Nio/File/WatchService.cs +++ b/src/net/JNet/Generated/Java/Nio/File/WatchService.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region WatchService declaration + /// + /// + /// + public partial class WatchService : Java.Io.Closeable + { + const string _bridgeClassName = "java.nio.file.WatchService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WatchService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WatchService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WatchService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWatchService /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IWatchService : Java.Io.ICloseable } #endregion - #region WatchService + #region WatchService implementation public partial class WatchService : Java.Nio.File.IWatchService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/File/Watchable.cs b/src/net/JNet/Generated/Java/Nio/File/Watchable.cs index 8605c8d194..1e91b29472 100644 --- a/src/net/JNet/Generated/Java/Nio/File/Watchable.cs +++ b/src/net/JNet/Generated/Java/Nio/File/Watchable.cs @@ -25,6 +25,53 @@ namespace Java.Nio.File { + #region Watchable declaration + /// + /// + /// + public partial class Watchable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.nio.file.Watchable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Watchable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Watchable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Watchable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Watchable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWatchable /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IWatchable } #endregion - #region Watchable + #region Watchable implementation public partial class Watchable : Java.Nio.File.IWatchable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/FloatBuffer.cs b/src/net/JNet/Generated/Java/Nio/FloatBuffer.cs index ec41f73e16..f004afd93c 100644 --- a/src/net/JNet/Generated/Java/Nio/FloatBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/FloatBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region FloatBuffer + #region FloatBuffer declaration + /// + /// + /// + public partial class FloatBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.FloatBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FloatBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FloatBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FloatBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FloatBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FloatBuffer implementation public partial class FloatBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/IntBuffer.cs b/src/net/JNet/Generated/Java/Nio/IntBuffer.cs index 26f4e9bd42..2f9c8ff589 100644 --- a/src/net/JNet/Generated/Java/Nio/IntBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/IntBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region IntBuffer + #region IntBuffer declaration + /// + /// + /// + public partial class IntBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.IntBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IntBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IntBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IntBuffer implementation public partial class IntBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/InvalidMarkException.cs b/src/net/JNet/Generated/Java/Nio/InvalidMarkException.cs index d6894b2242..d721a56972 100644 --- a/src/net/JNet/Generated/Java/Nio/InvalidMarkException.cs +++ b/src/net/JNet/Generated/Java/Nio/InvalidMarkException.cs @@ -25,7 +25,24 @@ namespace Java.Nio { - #region InvalidMarkException + #region InvalidMarkException declaration + /// + /// + /// + public partial class InvalidMarkException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.nio.InvalidMarkException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidMarkException implementation public partial class InvalidMarkException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/LongBuffer.cs b/src/net/JNet/Generated/Java/Nio/LongBuffer.cs index 277abc193f..40edb42aca 100644 --- a/src/net/JNet/Generated/Java/Nio/LongBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/LongBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region LongBuffer + #region LongBuffer declaration + /// + /// + /// + public partial class LongBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.LongBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LongBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LongBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LongBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LongBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LongBuffer implementation public partial class LongBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/MappedByteBuffer.cs b/src/net/JNet/Generated/Java/Nio/MappedByteBuffer.cs index 544029b26d..aa93631833 100644 --- a/src/net/JNet/Generated/Java/Nio/MappedByteBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/MappedByteBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region MappedByteBuffer + #region MappedByteBuffer declaration + /// + /// + /// + public partial class MappedByteBuffer : Java.Nio.ByteBuffer + { + const string _bridgeClassName = "java.nio.MappedByteBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MappedByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MappedByteBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MappedByteBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MappedByteBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MappedByteBuffer implementation public partial class MappedByteBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/ReadOnlyBufferException.cs b/src/net/JNet/Generated/Java/Nio/ReadOnlyBufferException.cs index 743c3d381f..d37bca4c96 100644 --- a/src/net/JNet/Generated/Java/Nio/ReadOnlyBufferException.cs +++ b/src/net/JNet/Generated/Java/Nio/ReadOnlyBufferException.cs @@ -25,7 +25,24 @@ namespace Java.Nio { - #region ReadOnlyBufferException + #region ReadOnlyBufferException declaration + /// + /// + /// + public partial class ReadOnlyBufferException : Java.Lang.UnsupportedOperationException + { + const string _bridgeClassName = "java.nio.ReadOnlyBufferException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ReadOnlyBufferException implementation public partial class ReadOnlyBufferException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Nio/ShortBuffer.cs b/src/net/JNet/Generated/Java/Nio/ShortBuffer.cs index 87f62d54ab..48e04f239c 100644 --- a/src/net/JNet/Generated/Java/Nio/ShortBuffer.cs +++ b/src/net/JNet/Generated/Java/Nio/ShortBuffer.cs @@ -25,7 +25,54 @@ namespace Java.Nio { - #region ShortBuffer + #region ShortBuffer declaration + /// + /// + /// + public partial class ShortBuffer : Java.Nio.Buffer + { + const string _bridgeClassName = "java.nio.ShortBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ShortBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ShortBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ShortBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ShortBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ShortBuffer implementation public partial class ShortBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/AccessException.cs b/src/net/JNet/Generated/Java/Rmi/AccessException.cs index f1cabd36a0..885f7772d1 100644 --- a/src/net/JNet/Generated/Java/Rmi/AccessException.cs +++ b/src/net/JNet/Generated/Java/Rmi/AccessException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region AccessException + #region AccessException declaration + /// + /// + /// + public partial class AccessException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.AccessException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccessException implementation public partial class AccessException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/Activatable.cs b/src/net/JNet/Generated/Java/Rmi/Activation/Activatable.cs index 925f69532e..973812c128 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/Activatable.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/Activatable.cs @@ -25,7 +25,54 @@ namespace Java.Rmi.Activation { - #region Activatable + #region Activatable declaration + /// + /// + /// + public partial class Activatable : Java.Rmi.Server.RemoteServer + { + const string _bridgeClassName = "java.rmi.activation.Activatable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Activatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Activatable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Activatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Activatable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Activatable implementation public partial class Activatable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivateFailedException.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivateFailedException.cs index a70e1a3468..0ce2866233 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivateFailedException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivateFailedException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Activation { - #region ActivateFailedException + #region ActivateFailedException declaration + /// + /// + /// + public partial class ActivateFailedException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.activation.ActivateFailedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ActivateFailedException implementation public partial class ActivateFailedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationDesc.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationDesc.cs index a6667da0fb..0b1dafa49d 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationDesc.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationDesc.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Activation { - #region ActivationDesc + #region ActivationDesc declaration + /// + /// + /// + public partial class ActivationDesc : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.activation.ActivationDesc"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActivationDesc() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActivationDesc(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActivationDesc implementation public partial class ActivationDesc { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationException.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationException.cs index 8ecd5debec..0e91ccac1b 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Activation { - #region ActivationException + #region ActivationException declaration + /// + /// + /// + public partial class ActivationException : Java.Lang.Exception + { + const string _bridgeClassName = "java.rmi.activation.ActivationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ActivationException implementation public partial class ActivationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup.cs index e11d565e09..b5b1d23249 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup.cs @@ -25,7 +25,54 @@ namespace Java.Rmi.Activation { - #region ActivationGroup + #region ActivationGroup declaration + /// + /// + /// + public partial class ActivationGroup : Java.Rmi.Server.UnicastRemoteObject + { + const string _bridgeClassName = "java.rmi.activation.ActivationGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ActivationGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ActivationGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActivationGroup implementation public partial class ActivationGroup { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupDesc.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupDesc.cs index abec2c7f92..115a063fbd 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupDesc.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupDesc.cs @@ -25,7 +25,97 @@ namespace Java.Rmi.Activation { - #region ActivationGroupDesc + #region ActivationGroupDesc declaration + /// + /// + /// + public partial class ActivationGroupDesc : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.activation.ActivationGroupDesc"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActivationGroupDesc() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActivationGroupDesc(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CommandEnvironment declaration + /// + /// + /// + public partial class CommandEnvironment : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.activation.ActivationGroupDesc$CommandEnvironment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CommandEnvironment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CommandEnvironment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ActivationGroupDesc implementation public partial class ActivationGroupDesc { #region Constructors @@ -105,7 +195,7 @@ public Java.Util.Properties PropertyOverrides #endregion #region Nested classes - #region CommandEnvironment + #region CommandEnvironment implementation public partial class CommandEnvironment { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupID.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupID.cs index 960197115d..de37011aa1 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupID.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroupID.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Activation { - #region ActivationGroupID + #region ActivationGroupID declaration + /// + /// + /// + public partial class ActivationGroupID : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.activation.ActivationGroupID"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActivationGroupID() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActivationGroupID(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActivationGroupID implementation public partial class ActivationGroupID { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup_Stub.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup_Stub.cs index 0ae8656b15..078cf014cf 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup_Stub.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationGroup_Stub.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Activation { - #region ActivationGroup_Stub + #region ActivationGroup_Stub declaration + /// + /// + /// + public partial class ActivationGroup_Stub : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.activation.ActivationGroup_Stub"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActivationGroup_Stub() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActivationGroup_Stub(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActivationGroup_Stub implementation public partial class ActivationGroup_Stub { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationID.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationID.cs index fca4c50549..3daba5db01 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationID.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationID.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Activation { - #region ActivationID + #region ActivationID declaration + /// + /// + /// + public partial class ActivationID : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.activation.ActivationID"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActivationID() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActivationID(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActivationID implementation public partial class ActivationID { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationInstantiator.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationInstantiator.cs index f7be7144e6..e03566751d 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationInstantiator.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationInstantiator.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Activation { + #region ActivationInstantiator declaration + /// + /// + /// + public partial class ActivationInstantiator : Java.Rmi.Remote + { + const string _bridgeClassName = "java.rmi.activation.ActivationInstantiator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ActivationInstantiator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationInstantiator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ActivationInstantiator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationInstantiator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IActivationInstantiator /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IActivationInstantiator : Java.Rmi.IRemote } #endregion - #region ActivationInstantiator + #region ActivationInstantiator implementation public partial class ActivationInstantiator : Java.Rmi.Activation.IActivationInstantiator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationMonitor.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationMonitor.cs index 85eded2b45..70f03b8da1 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationMonitor.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationMonitor.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Activation { + #region ActivationMonitor declaration + /// + /// + /// + public partial class ActivationMonitor : Java.Rmi.Remote + { + const string _bridgeClassName = "java.rmi.activation.ActivationMonitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ActivationMonitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationMonitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ActivationMonitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationMonitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IActivationMonitor /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IActivationMonitor : Java.Rmi.IRemote } #endregion - #region ActivationMonitor + #region ActivationMonitor implementation public partial class ActivationMonitor : Java.Rmi.Activation.IActivationMonitor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationSystem.cs b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationSystem.cs index b03cf52a5f..a1e146f826 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/ActivationSystem.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/ActivationSystem.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Activation { + #region ActivationSystem declaration + /// + /// + /// + public partial class ActivationSystem : Java.Rmi.Remote + { + const string _bridgeClassName = "java.rmi.activation.ActivationSystem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ActivationSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationSystem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ActivationSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActivationSystem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IActivationSystem /// /// .NET interface for TO BE DEFINED FROM USER @@ -131,7 +178,7 @@ public partial interface IActivationSystem : Java.Rmi.IRemote } #endregion - #region ActivationSystem + #region ActivationSystem implementation public partial class ActivationSystem : Java.Rmi.Activation.IActivationSystem { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/Activator.cs b/src/net/JNet/Generated/Java/Rmi/Activation/Activator.cs index 3cf35612d0..78b22fdb60 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/Activator.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/Activator.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Activation { + #region Activator declaration + /// + /// + /// + public partial class Activator : Java.Rmi.Remote + { + const string _bridgeClassName = "java.rmi.activation.Activator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Activator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Activator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Activator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Activator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IActivator /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IActivator : Java.Rmi.IRemote } #endregion - #region Activator + #region Activator implementation public partial class Activator : Java.Rmi.Activation.IActivator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Rmi/Activation/AllPackageClasses.cs deleted file mode 100644 index 222c7e3185..0000000000 --- a/src/net/JNet/Generated/Java/Rmi/Activation/AllPackageClasses.cs +++ /dev/null @@ -1,650 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Rmi.Activation -{ - #region Activatable - /// - /// - /// - public partial class Activatable : Java.Rmi.Server.RemoteServer - { - const string _bridgeClassName = "java.rmi.activation.Activatable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Activatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Activatable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Activatable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Activatable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivateFailedException - /// - /// - /// - public partial class ActivateFailedException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.activation.ActivateFailedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ActivationDesc - /// - /// - /// - public partial class ActivationDesc : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.activation.ActivationDesc"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActivationDesc() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActivationDesc(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationException - /// - /// - /// - public partial class ActivationException : Java.Lang.Exception - { - const string _bridgeClassName = "java.rmi.activation.ActivationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ActivationGroup - /// - /// - /// - public partial class ActivationGroup : Java.Rmi.Server.UnicastRemoteObject - { - const string _bridgeClassName = "java.rmi.activation.ActivationGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ActivationGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ActivationGroup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationGroup_Stub - /// - /// - /// - public partial class ActivationGroup_Stub : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.activation.ActivationGroup_Stub"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActivationGroup_Stub() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActivationGroup_Stub(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationGroupDesc - /// - /// - /// - public partial class ActivationGroupDesc : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.activation.ActivationGroupDesc"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActivationGroupDesc() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActivationGroupDesc(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CommandEnvironment - /// - /// - /// - public partial class CommandEnvironment : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.activation.ActivationGroupDesc$CommandEnvironment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CommandEnvironment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CommandEnvironment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ActivationGroupID - /// - /// - /// - public partial class ActivationGroupID : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.activation.ActivationGroupID"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActivationGroupID() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActivationGroupID(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationID - /// - /// - /// - public partial class ActivationID : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.activation.ActivationID"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActivationID() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActivationID(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationInstantiator - /// - /// - /// - public partial class ActivationInstantiator : Java.Rmi.Remote - { - const string _bridgeClassName = "java.rmi.activation.ActivationInstantiator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ActivationInstantiator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationInstantiator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ActivationInstantiator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationInstantiator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationMonitor - /// - /// - /// - public partial class ActivationMonitor : Java.Rmi.Remote - { - const string _bridgeClassName = "java.rmi.activation.ActivationMonitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ActivationMonitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationMonitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ActivationMonitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationMonitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ActivationSystem - /// - /// - /// - public partial class ActivationSystem : Java.Rmi.Remote - { - const string _bridgeClassName = "java.rmi.activation.ActivationSystem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ActivationSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationSystem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ActivationSystem class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActivationSystem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Activator - /// - /// - /// - public partial class Activator : Java.Rmi.Remote - { - const string _bridgeClassName = "java.rmi.activation.Activator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Activator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Activator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Activator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Activator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnknownGroupException - /// - /// - /// - public partial class UnknownGroupException : Java.Rmi.Activation.ActivationException - { - const string _bridgeClassName = "java.rmi.activation.UnknownGroupException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownObjectException - /// - /// - /// - public partial class UnknownObjectException : Java.Rmi.Activation.ActivationException - { - const string _bridgeClassName = "java.rmi.activation.UnknownObjectException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/UnknownGroupException.cs b/src/net/JNet/Generated/Java/Rmi/Activation/UnknownGroupException.cs index d0807a3d03..b0abd66ac4 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/UnknownGroupException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/UnknownGroupException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Activation { - #region UnknownGroupException + #region UnknownGroupException declaration + /// + /// + /// + public partial class UnknownGroupException : Java.Rmi.Activation.ActivationException + { + const string _bridgeClassName = "java.rmi.activation.UnknownGroupException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownGroupException implementation public partial class UnknownGroupException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Activation/UnknownObjectException.cs b/src/net/JNet/Generated/Java/Rmi/Activation/UnknownObjectException.cs index 9dfa60f57a..7f06bebde4 100644 --- a/src/net/JNet/Generated/Java/Rmi/Activation/UnknownObjectException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Activation/UnknownObjectException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Activation { - #region UnknownObjectException + #region UnknownObjectException declaration + /// + /// + /// + public partial class UnknownObjectException : Java.Rmi.Activation.ActivationException + { + const string _bridgeClassName = "java.rmi.activation.UnknownObjectException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownObjectException implementation public partial class UnknownObjectException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Rmi/AllPackageClasses.cs deleted file mode 100644 index 45c635fcdf..0000000000 --- a/src/net/JNet/Generated/Java/Rmi/AllPackageClasses.cs +++ /dev/null @@ -1,451 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Rmi -{ - #region AccessException - /// - /// - /// - public partial class AccessException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.AccessException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AlreadyBoundException - /// - /// - /// - public partial class AlreadyBoundException : Java.Lang.Exception - { - const string _bridgeClassName = "java.rmi.AlreadyBoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ConnectException - /// - /// - /// - public partial class ConnectException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.ConnectException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ConnectIOException - /// - /// - /// - public partial class ConnectIOException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.ConnectIOException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MarshalException - /// - /// - /// - public partial class MarshalException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.MarshalException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MarshalledObject - /// - /// - /// - public partial class MarshalledObject : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.MarshalledObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MarshalledObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MarshalledObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MarshalledObject - /// - /// - /// - /// - public partial class MarshalledObject : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.MarshalledObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MarshalledObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MarshalledObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Naming - /// - /// - /// - public partial class Naming : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.Naming"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Naming() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Naming(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchObjectException - /// - /// - /// - public partial class NoSuchObjectException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.NoSuchObjectException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotBoundException - /// - /// - /// - public partial class NotBoundException : Java.Lang.Exception - { - const string _bridgeClassName = "java.rmi.NotBoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Remote - /// - /// - /// - public partial class Remote : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.Remote"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Remote class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Remote() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Remote class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Remote(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RemoteException - /// - /// - /// - public partial class RemoteException : Java.Io.IOException - { - const string _bridgeClassName = "java.rmi.RemoteException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ServerError - /// - /// - /// - public partial class ServerError : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.ServerError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ServerException - /// - /// - /// - public partial class ServerException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.ServerException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StubNotFoundException - /// - /// - /// - public partial class StubNotFoundException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.StubNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnexpectedException - /// - /// - /// - public partial class UnexpectedException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.UnexpectedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownHostException - /// - /// - /// - public partial class UnknownHostException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.UnknownHostException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnmarshalException - /// - /// - /// - public partial class UnmarshalException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.UnmarshalException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Rmi/AlreadyBoundException.cs b/src/net/JNet/Generated/Java/Rmi/AlreadyBoundException.cs index bce619c71c..8ac9cc1df6 100644 --- a/src/net/JNet/Generated/Java/Rmi/AlreadyBoundException.cs +++ b/src/net/JNet/Generated/Java/Rmi/AlreadyBoundException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region AlreadyBoundException + #region AlreadyBoundException declaration + /// + /// + /// + public partial class AlreadyBoundException : Java.Lang.Exception + { + const string _bridgeClassName = "java.rmi.AlreadyBoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AlreadyBoundException implementation public partial class AlreadyBoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/ConnectException.cs b/src/net/JNet/Generated/Java/Rmi/ConnectException.cs index 20e0af0fd1..856ff76f58 100644 --- a/src/net/JNet/Generated/Java/Rmi/ConnectException.cs +++ b/src/net/JNet/Generated/Java/Rmi/ConnectException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region ConnectException + #region ConnectException declaration + /// + /// + /// + public partial class ConnectException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.ConnectException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ConnectException implementation public partial class ConnectException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/ConnectIOException.cs b/src/net/JNet/Generated/Java/Rmi/ConnectIOException.cs index 34623476f1..435e5fefe4 100644 --- a/src/net/JNet/Generated/Java/Rmi/ConnectIOException.cs +++ b/src/net/JNet/Generated/Java/Rmi/ConnectIOException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region ConnectIOException + #region ConnectIOException declaration + /// + /// + /// + public partial class ConnectIOException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.ConnectIOException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ConnectIOException implementation public partial class ConnectIOException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Dgc/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Rmi/Dgc/AllPackageClasses.cs deleted file mode 100644 index 378b1b96a0..0000000000 --- a/src/net/JNet/Generated/Java/Rmi/Dgc/AllPackageClasses.cs +++ /dev/null @@ -1,167 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Rmi.Dgc -{ - #region DGC - /// - /// - /// - public partial class DGC : Java.Rmi.Remote - { - const string _bridgeClassName = "java.rmi.dgc.DGC"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DGC class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DGC() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DGC class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DGC(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Lease - /// - /// - /// - public partial class Lease : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.dgc.Lease"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Lease() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Lease(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VMID - /// - /// - /// - public partial class VMID : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.dgc.VMID"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VMID() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public VMID(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Rmi/Dgc/DGC.cs b/src/net/JNet/Generated/Java/Rmi/Dgc/DGC.cs index d775462499..13c1b8072d 100644 --- a/src/net/JNet/Generated/Java/Rmi/Dgc/DGC.cs +++ b/src/net/JNet/Generated/Java/Rmi/Dgc/DGC.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Dgc { + #region DGC declaration + /// + /// + /// + public partial class DGC : Java.Rmi.Remote + { + const string _bridgeClassName = "java.rmi.dgc.DGC"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DGC class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DGC() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DGC class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DGC(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDGC /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IDGC : Java.Rmi.IRemote } #endregion - #region DGC + #region DGC implementation public partial class DGC : Java.Rmi.Dgc.IDGC { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Dgc/Lease.cs b/src/net/JNet/Generated/Java/Rmi/Dgc/Lease.cs index 121ce0a9d1..c6c45b4bc8 100644 --- a/src/net/JNet/Generated/Java/Rmi/Dgc/Lease.cs +++ b/src/net/JNet/Generated/Java/Rmi/Dgc/Lease.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Dgc { - #region Lease + #region Lease declaration + /// + /// + /// + public partial class Lease : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.dgc.Lease"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Lease() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Lease(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Lease implementation public partial class Lease { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Dgc/VMID.cs b/src/net/JNet/Generated/Java/Rmi/Dgc/VMID.cs index c65b189f4c..73fac6ee43 100644 --- a/src/net/JNet/Generated/Java/Rmi/Dgc/VMID.cs +++ b/src/net/JNet/Generated/Java/Rmi/Dgc/VMID.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Dgc { - #region VMID + #region VMID declaration + /// + /// + /// + public partial class VMID : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.dgc.VMID"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VMID() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public VMID(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VMID implementation public partial class VMID { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/MarshalException.cs b/src/net/JNet/Generated/Java/Rmi/MarshalException.cs index 02090cb7ec..d61b0228da 100644 --- a/src/net/JNet/Generated/Java/Rmi/MarshalException.cs +++ b/src/net/JNet/Generated/Java/Rmi/MarshalException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region MarshalException + #region MarshalException declaration + /// + /// + /// + public partial class MarshalException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.MarshalException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MarshalException implementation public partial class MarshalException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/MarshalledObject.cs b/src/net/JNet/Generated/Java/Rmi/MarshalledObject.cs index eab01cb426..9744da6b67 100644 --- a/src/net/JNet/Generated/Java/Rmi/MarshalledObject.cs +++ b/src/net/JNet/Generated/Java/Rmi/MarshalledObject.cs @@ -25,7 +25,98 @@ namespace Java.Rmi { - #region MarshalledObject + #region MarshalledObject declaration + /// + /// + /// + public partial class MarshalledObject : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.MarshalledObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MarshalledObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MarshalledObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MarshalledObject declaration + /// + /// + /// + /// + public partial class MarshalledObject : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.MarshalledObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MarshalledObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MarshalledObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MarshalledObject implementation public partial class MarshalledObject { #region Constructors @@ -75,7 +166,7 @@ public object Get() } #endregion - #region MarshalledObject + #region MarshalledObject implementation public partial class MarshalledObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Naming.cs b/src/net/JNet/Generated/Java/Rmi/Naming.cs index e7d376c4f4..e7654c2c2d 100644 --- a/src/net/JNet/Generated/Java/Rmi/Naming.cs +++ b/src/net/JNet/Generated/Java/Rmi/Naming.cs @@ -25,7 +25,52 @@ namespace Java.Rmi { - #region Naming + #region Naming declaration + /// + /// + /// + public partial class Naming : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.Naming"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Naming() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Naming(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Naming implementation public partial class Naming { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/NoSuchObjectException.cs b/src/net/JNet/Generated/Java/Rmi/NoSuchObjectException.cs index 1de61f1866..d53ecbc5b5 100644 --- a/src/net/JNet/Generated/Java/Rmi/NoSuchObjectException.cs +++ b/src/net/JNet/Generated/Java/Rmi/NoSuchObjectException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region NoSuchObjectException + #region NoSuchObjectException declaration + /// + /// + /// + public partial class NoSuchObjectException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.NoSuchObjectException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchObjectException implementation public partial class NoSuchObjectException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/NotBoundException.cs b/src/net/JNet/Generated/Java/Rmi/NotBoundException.cs index af6342fb91..1462beac1d 100644 --- a/src/net/JNet/Generated/Java/Rmi/NotBoundException.cs +++ b/src/net/JNet/Generated/Java/Rmi/NotBoundException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region NotBoundException + #region NotBoundException declaration + /// + /// + /// + public partial class NotBoundException : Java.Lang.Exception + { + const string _bridgeClassName = "java.rmi.NotBoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotBoundException implementation public partial class NotBoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Registry/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Rmi/Registry/AllPackageClasses.cs deleted file mode 100644 index 7106e9ec46..0000000000 --- a/src/net/JNet/Generated/Java/Rmi/Registry/AllPackageClasses.cs +++ /dev/null @@ -1,122 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Rmi.Registry -{ - #region LocateRegistry - /// - /// - /// - public partial class LocateRegistry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.registry.LocateRegistry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LocateRegistry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LocateRegistry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Registry - /// - /// - /// - public partial class Registry : Java.Rmi.Remote - { - const string _bridgeClassName = "java.rmi.registry.Registry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Registry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Registry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Registry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Registry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Rmi/Registry/LocateRegistry.cs b/src/net/JNet/Generated/Java/Rmi/Registry/LocateRegistry.cs index c0d3d7551d..367cb0b4e8 100644 --- a/src/net/JNet/Generated/Java/Rmi/Registry/LocateRegistry.cs +++ b/src/net/JNet/Generated/Java/Rmi/Registry/LocateRegistry.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Registry { - #region LocateRegistry + #region LocateRegistry declaration + /// + /// + /// + public partial class LocateRegistry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.registry.LocateRegistry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LocateRegistry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LocateRegistry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocateRegistry implementation public partial class LocateRegistry { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Registry/Registry.cs b/src/net/JNet/Generated/Java/Rmi/Registry/Registry.cs index 278a1e457c..c8b5afb782 100644 --- a/src/net/JNet/Generated/Java/Rmi/Registry/Registry.cs +++ b/src/net/JNet/Generated/Java/Rmi/Registry/Registry.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Registry { + #region Registry declaration + /// + /// + /// + public partial class Registry : Java.Rmi.Remote + { + const string _bridgeClassName = "java.rmi.registry.Registry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Registry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Registry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Registry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Registry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRegistry /// /// .NET interface for TO BE DEFINED FROM USER @@ -84,7 +131,7 @@ public partial interface IRegistry : Java.Rmi.IRemote } #endregion - #region Registry + #region Registry implementation public partial class Registry : Java.Rmi.Registry.IRegistry { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Remote.cs b/src/net/JNet/Generated/Java/Rmi/Remote.cs index f75c78d453..a8dafe78ed 100644 --- a/src/net/JNet/Generated/Java/Rmi/Remote.cs +++ b/src/net/JNet/Generated/Java/Rmi/Remote.cs @@ -25,6 +25,53 @@ namespace Java.Rmi { + #region Remote declaration + /// + /// + /// + public partial class Remote : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.Remote"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Remote class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Remote() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Remote class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Remote(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRemote /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IRemote } #endregion - #region Remote + #region Remote implementation public partial class Remote : Java.Rmi.IRemote { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/RemoteException.cs b/src/net/JNet/Generated/Java/Rmi/RemoteException.cs index af054742be..2ea31e747f 100644 --- a/src/net/JNet/Generated/Java/Rmi/RemoteException.cs +++ b/src/net/JNet/Generated/Java/Rmi/RemoteException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region RemoteException + #region RemoteException declaration + /// + /// + /// + public partial class RemoteException : Java.Io.IOException + { + const string _bridgeClassName = "java.rmi.RemoteException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RemoteException implementation public partial class RemoteException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Rmi/Server/AllPackageClasses.cs deleted file mode 100644 index 91adb26f0b..0000000000 --- a/src/net/JNet/Generated/Java/Rmi/Server/AllPackageClasses.cs +++ /dev/null @@ -1,729 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Rmi.Server -{ - #region ExportException - /// - /// - /// - public partial class ExportException : Java.Rmi.RemoteException - { - const string _bridgeClassName = "java.rmi.server.ExportException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ObjID - /// - /// - /// - public partial class ObjID : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.server.ObjID"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjID() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjID(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RemoteObject - /// - /// - /// - public partial class RemoteObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RemoteObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RemoteObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RemoteObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RemoteObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RemoteObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RemoteObjectInvocationHandler - /// - /// - /// - public partial class RemoteObjectInvocationHandler : Java.Rmi.Server.RemoteObject - { - const string _bridgeClassName = "java.rmi.server.RemoteObjectInvocationHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RemoteObjectInvocationHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RemoteObjectInvocationHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RemoteRef - /// - /// - /// - public partial class RemoteRef : Java.Io.Externalizable - { - const string _bridgeClassName = "java.rmi.server.RemoteRef"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RemoteRef class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RemoteRef() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RemoteRef class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RemoteRef(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RemoteServer - /// - /// - /// - public partial class RemoteServer : Java.Rmi.Server.RemoteObject - { - const string _bridgeClassName = "java.rmi.server.RemoteServer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RemoteServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RemoteServer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RemoteServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RemoteServer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIClassLoader - /// - /// - /// - public partial class RMIClassLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RMIClassLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIClassLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIClassLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIClassLoaderSpi - /// - /// - /// - public partial class RMIClassLoaderSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RMIClassLoaderSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIClassLoaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIClassLoaderSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIClassLoaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIClassLoaderSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIClientSocketFactory - /// - /// - /// - public partial class RMIClientSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RMIClientSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIClientSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIClientSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIClientSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIClientSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIFailureHandler - /// - /// - /// - public partial class RMIFailureHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RMIFailureHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIFailureHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIFailureHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIFailureHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIFailureHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIServerSocketFactory - /// - /// - /// - public partial class RMIServerSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RMIServerSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIServerSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIServerSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMISocketFactory - /// - /// - /// - public partial class RMISocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.RMISocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMISocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMISocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMISocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMISocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServerCloneException - /// - /// - /// - public partial class ServerCloneException : Java.Lang.CloneNotSupportedException - { - const string _bridgeClassName = "java.rmi.server.ServerCloneException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ServerNotActiveException - /// - /// - /// - public partial class ServerNotActiveException : Java.Lang.Exception - { - const string _bridgeClassName = "java.rmi.server.ServerNotActiveException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UID - /// - /// - /// - public partial class UID : Java.Io.Serializable - { - const string _bridgeClassName = "java.rmi.server.UID"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UID() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UID(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnicastRemoteObject - /// - /// - /// - public partial class UnicastRemoteObject : Java.Rmi.Server.RemoteServer - { - const string _bridgeClassName = "java.rmi.server.UnicastRemoteObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnicastRemoteObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnicastRemoteObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Unreferenced - /// - /// - /// - public partial class Unreferenced : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.rmi.server.Unreferenced"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Unreferenced class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Unreferenced() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Unreferenced class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Unreferenced(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Rmi/Server/ExportException.cs b/src/net/JNet/Generated/Java/Rmi/Server/ExportException.cs index 1a3f61e8c0..c5559b25d1 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/ExportException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/ExportException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Server { - #region ExportException + #region ExportException declaration + /// + /// + /// + public partial class ExportException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.server.ExportException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ExportException implementation public partial class ExportException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/ObjID.cs b/src/net/JNet/Generated/Java/Rmi/Server/ObjID.cs index d03d963d51..5a1d3e5d2a 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/ObjID.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/ObjID.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Server { - #region ObjID + #region ObjID declaration + /// + /// + /// + public partial class ObjID : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.server.ObjID"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjID() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjID(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ObjID implementation public partial class ObjID { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoader.cs b/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoader.cs index 0349bcc0bf..ad9cd083f7 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoader.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoader.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Server { - #region RMIClassLoader + #region RMIClassLoader declaration + /// + /// + /// + public partial class RMIClassLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RMIClassLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIClassLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIClassLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIClassLoader implementation public partial class RMIClassLoader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoaderSpi.cs b/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoaderSpi.cs index 249dabb72c..ac11ff4042 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoaderSpi.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RMIClassLoaderSpi.cs @@ -25,7 +25,54 @@ namespace Java.Rmi.Server { - #region RMIClassLoaderSpi + #region RMIClassLoaderSpi declaration + /// + /// + /// + public partial class RMIClassLoaderSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RMIClassLoaderSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIClassLoaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIClassLoaderSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIClassLoaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIClassLoaderSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIClassLoaderSpi implementation public partial class RMIClassLoaderSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RMIClientSocketFactory.cs b/src/net/JNet/Generated/Java/Rmi/Server/RMIClientSocketFactory.cs index 7ec8a5a6ab..53984546ef 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RMIClientSocketFactory.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RMIClientSocketFactory.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Server { + #region RMIClientSocketFactory declaration + /// + /// + /// + public partial class RMIClientSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RMIClientSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIClientSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIClientSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIClientSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIClientSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRMIClientSocketFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IRMIClientSocketFactory } #endregion - #region RMIClientSocketFactory + #region RMIClientSocketFactory implementation public partial class RMIClientSocketFactory : Java.Rmi.Server.IRMIClientSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RMIFailureHandler.cs b/src/net/JNet/Generated/Java/Rmi/Server/RMIFailureHandler.cs index a197471149..bd64cc769b 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RMIFailureHandler.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RMIFailureHandler.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Server { + #region RMIFailureHandler declaration + /// + /// + /// + public partial class RMIFailureHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RMIFailureHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIFailureHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIFailureHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIFailureHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIFailureHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRMIFailureHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IRMIFailureHandler } #endregion - #region RMIFailureHandler + #region RMIFailureHandler implementation public partial class RMIFailureHandler : Java.Rmi.Server.IRMIFailureHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RMIServerSocketFactory.cs b/src/net/JNet/Generated/Java/Rmi/Server/RMIServerSocketFactory.cs index f28f804eaf..5cd24ea9cd 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RMIServerSocketFactory.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RMIServerSocketFactory.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Server { + #region RMIServerSocketFactory declaration + /// + /// + /// + public partial class RMIServerSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RMIServerSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIServerSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIServerSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRMIServerSocketFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IRMIServerSocketFactory } #endregion - #region RMIServerSocketFactory + #region RMIServerSocketFactory implementation public partial class RMIServerSocketFactory : Java.Rmi.Server.IRMIServerSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RMISocketFactory.cs b/src/net/JNet/Generated/Java/Rmi/Server/RMISocketFactory.cs index 9e304c7c68..cd4ac5ac80 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RMISocketFactory.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RMISocketFactory.cs @@ -25,7 +25,54 @@ namespace Java.Rmi.Server { - #region RMISocketFactory + #region RMISocketFactory declaration + /// + /// + /// + public partial class RMISocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RMISocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMISocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMISocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMISocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMISocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMISocketFactory implementation public partial class RMISocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RemoteObject.cs b/src/net/JNet/Generated/Java/Rmi/Server/RemoteObject.cs index 9b3ce6cdf4..06da9077b0 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RemoteObject.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RemoteObject.cs @@ -25,7 +25,54 @@ namespace Java.Rmi.Server { - #region RemoteObject + #region RemoteObject declaration + /// + /// + /// + public partial class RemoteObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.RemoteObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RemoteObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RemoteObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RemoteObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RemoteObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RemoteObject implementation public partial class RemoteObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RemoteObjectInvocationHandler.cs b/src/net/JNet/Generated/Java/Rmi/Server/RemoteObjectInvocationHandler.cs index 9813d230d3..c4b51289aa 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RemoteObjectInvocationHandler.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RemoteObjectInvocationHandler.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Server { - #region RemoteObjectInvocationHandler + #region RemoteObjectInvocationHandler declaration + /// + /// + /// + public partial class RemoteObjectInvocationHandler : Java.Rmi.Server.RemoteObject + { + const string _bridgeClassName = "java.rmi.server.RemoteObjectInvocationHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RemoteObjectInvocationHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RemoteObjectInvocationHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RemoteObjectInvocationHandler implementation public partial class RemoteObjectInvocationHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RemoteRef.cs b/src/net/JNet/Generated/Java/Rmi/Server/RemoteRef.cs index 9e1194afe1..b6379949b4 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RemoteRef.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RemoteRef.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Server { + #region RemoteRef declaration + /// + /// + /// + public partial class RemoteRef : Java.Io.Externalizable + { + const string _bridgeClassName = "java.rmi.server.RemoteRef"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RemoteRef class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RemoteRef() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RemoteRef class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RemoteRef(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRemoteRef /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IRemoteRef : Java.Io.IExternalizable } #endregion - #region RemoteRef + #region RemoteRef implementation public partial class RemoteRef : Java.Rmi.Server.IRemoteRef { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/RemoteServer.cs b/src/net/JNet/Generated/Java/Rmi/Server/RemoteServer.cs index b038f2495e..ae0351ff12 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/RemoteServer.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/RemoteServer.cs @@ -25,7 +25,54 @@ namespace Java.Rmi.Server { - #region RemoteServer + #region RemoteServer declaration + /// + /// + /// + public partial class RemoteServer : Java.Rmi.Server.RemoteObject + { + const string _bridgeClassName = "java.rmi.server.RemoteServer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RemoteServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RemoteServer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RemoteServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RemoteServer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RemoteServer implementation public partial class RemoteServer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/ServerCloneException.cs b/src/net/JNet/Generated/Java/Rmi/Server/ServerCloneException.cs index dbd45c3b93..ab009f938a 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/ServerCloneException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/ServerCloneException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Server { - #region ServerCloneException + #region ServerCloneException declaration + /// + /// + /// + public partial class ServerCloneException : Java.Lang.CloneNotSupportedException + { + const string _bridgeClassName = "java.rmi.server.ServerCloneException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServerCloneException implementation public partial class ServerCloneException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/ServerNotActiveException.cs b/src/net/JNet/Generated/Java/Rmi/Server/ServerNotActiveException.cs index e99add2b20..d75883a969 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/ServerNotActiveException.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/ServerNotActiveException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi.Server { - #region ServerNotActiveException + #region ServerNotActiveException declaration + /// + /// + /// + public partial class ServerNotActiveException : Java.Lang.Exception + { + const string _bridgeClassName = "java.rmi.server.ServerNotActiveException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServerNotActiveException implementation public partial class ServerNotActiveException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/UID.cs b/src/net/JNet/Generated/Java/Rmi/Server/UID.cs index bdbd269d07..f788a19f56 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/UID.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/UID.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Server { - #region UID + #region UID declaration + /// + /// + /// + public partial class UID : Java.Io.Serializable + { + const string _bridgeClassName = "java.rmi.server.UID"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UID() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UID(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UID implementation public partial class UID { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/UnicastRemoteObject.cs b/src/net/JNet/Generated/Java/Rmi/Server/UnicastRemoteObject.cs index fde89010c9..378a40e6bb 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/UnicastRemoteObject.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/UnicastRemoteObject.cs @@ -25,7 +25,52 @@ namespace Java.Rmi.Server { - #region UnicastRemoteObject + #region UnicastRemoteObject declaration + /// + /// + /// + public partial class UnicastRemoteObject : Java.Rmi.Server.RemoteServer + { + const string _bridgeClassName = "java.rmi.server.UnicastRemoteObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnicastRemoteObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnicastRemoteObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UnicastRemoteObject implementation public partial class UnicastRemoteObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/Server/Unreferenced.cs b/src/net/JNet/Generated/Java/Rmi/Server/Unreferenced.cs index d6eb7d77dd..98a12e78fb 100644 --- a/src/net/JNet/Generated/Java/Rmi/Server/Unreferenced.cs +++ b/src/net/JNet/Generated/Java/Rmi/Server/Unreferenced.cs @@ -25,6 +25,53 @@ namespace Java.Rmi.Server { + #region Unreferenced declaration + /// + /// + /// + public partial class Unreferenced : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.rmi.server.Unreferenced"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Unreferenced class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Unreferenced() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Unreferenced class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Unreferenced(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUnreferenced /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IUnreferenced } #endregion - #region Unreferenced + #region Unreferenced implementation public partial class Unreferenced : Java.Rmi.Server.IUnreferenced { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/ServerError.cs b/src/net/JNet/Generated/Java/Rmi/ServerError.cs index 9006173b71..b530c27f90 100644 --- a/src/net/JNet/Generated/Java/Rmi/ServerError.cs +++ b/src/net/JNet/Generated/Java/Rmi/ServerError.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region ServerError + #region ServerError declaration + /// + /// + /// + public partial class ServerError : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.ServerError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServerError implementation public partial class ServerError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/ServerException.cs b/src/net/JNet/Generated/Java/Rmi/ServerException.cs index 064c6c13f1..50de6ed2d9 100644 --- a/src/net/JNet/Generated/Java/Rmi/ServerException.cs +++ b/src/net/JNet/Generated/Java/Rmi/ServerException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region ServerException + #region ServerException declaration + /// + /// + /// + public partial class ServerException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.ServerException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServerException implementation public partial class ServerException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/StubNotFoundException.cs b/src/net/JNet/Generated/Java/Rmi/StubNotFoundException.cs index 162c7c96d7..6ee73c1ac1 100644 --- a/src/net/JNet/Generated/Java/Rmi/StubNotFoundException.cs +++ b/src/net/JNet/Generated/Java/Rmi/StubNotFoundException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region StubNotFoundException + #region StubNotFoundException declaration + /// + /// + /// + public partial class StubNotFoundException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.StubNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region StubNotFoundException implementation public partial class StubNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/UnexpectedException.cs b/src/net/JNet/Generated/Java/Rmi/UnexpectedException.cs index 3b5a1775f1..b4d1c49498 100644 --- a/src/net/JNet/Generated/Java/Rmi/UnexpectedException.cs +++ b/src/net/JNet/Generated/Java/Rmi/UnexpectedException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region UnexpectedException + #region UnexpectedException declaration + /// + /// + /// + public partial class UnexpectedException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.UnexpectedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnexpectedException implementation public partial class UnexpectedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/UnknownHostException.cs b/src/net/JNet/Generated/Java/Rmi/UnknownHostException.cs index 94cd621ce8..955d2b260c 100644 --- a/src/net/JNet/Generated/Java/Rmi/UnknownHostException.cs +++ b/src/net/JNet/Generated/Java/Rmi/UnknownHostException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region UnknownHostException + #region UnknownHostException declaration + /// + /// + /// + public partial class UnknownHostException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.UnknownHostException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownHostException implementation public partial class UnknownHostException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Rmi/UnmarshalException.cs b/src/net/JNet/Generated/Java/Rmi/UnmarshalException.cs index 1d312e03f0..a10cb51c2a 100644 --- a/src/net/JNet/Generated/Java/Rmi/UnmarshalException.cs +++ b/src/net/JNet/Generated/Java/Rmi/UnmarshalException.cs @@ -25,7 +25,24 @@ namespace Java.Rmi { - #region UnmarshalException + #region UnmarshalException declaration + /// + /// + /// + public partial class UnmarshalException : Java.Rmi.RemoteException + { + const string _bridgeClassName = "java.rmi.UnmarshalException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnmarshalException implementation public partial class UnmarshalException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AccessControlContext.cs b/src/net/JNet/Generated/Java/Security/AccessControlContext.cs index 58764ac2c8..d74760fb1e 100644 --- a/src/net/JNet/Generated/Java/Security/AccessControlContext.cs +++ b/src/net/JNet/Generated/Java/Security/AccessControlContext.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region AccessControlContext + #region AccessControlContext declaration + /// + /// + /// + public partial class AccessControlContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AccessControlContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessControlContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessControlContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessControlContext implementation public partial class AccessControlContext { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AccessControlException.cs b/src/net/JNet/Generated/Java/Security/AccessControlException.cs index 41428f641c..daa337d060 100644 --- a/src/net/JNet/Generated/Java/Security/AccessControlException.cs +++ b/src/net/JNet/Generated/Java/Security/AccessControlException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region AccessControlException + #region AccessControlException declaration + /// + /// + /// + public partial class AccessControlException : Java.Lang.SecurityException + { + const string _bridgeClassName = "java.security.AccessControlException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccessControlException implementation public partial class AccessControlException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AccessController.cs b/src/net/JNet/Generated/Java/Security/AccessController.cs index 660d4a791f..8579be9b6c 100644 --- a/src/net/JNet/Generated/Java/Security/AccessController.cs +++ b/src/net/JNet/Generated/Java/Security/AccessController.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region AccessController + #region AccessController declaration + /// + /// + /// + public partial class AccessController : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AccessController"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessController() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessController(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessController implementation public partial class AccessController { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Acl/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Security/Acl/AllPackageClasses.cs deleted file mode 100644 index 1565f15c76..0000000000 --- a/src/net/JNet/Generated/Java/Security/Acl/AllPackageClasses.cs +++ /dev/null @@ -1,30 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Security.Acl -{ - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Security/AlgorithmConstraints.cs b/src/net/JNet/Generated/Java/Security/AlgorithmConstraints.cs index d7a2186573..bd1d47e087 100644 --- a/src/net/JNet/Generated/Java/Security/AlgorithmConstraints.cs +++ b/src/net/JNet/Generated/Java/Security/AlgorithmConstraints.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region AlgorithmConstraints declaration + /// + /// + /// + public partial class AlgorithmConstraints : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AlgorithmConstraints"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AlgorithmConstraints class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmConstraints() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AlgorithmConstraints class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmConstraints(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAlgorithmConstraints /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IAlgorithmConstraints } #endregion - #region AlgorithmConstraints + #region AlgorithmConstraints implementation public partial class AlgorithmConstraints : Java.Security.IAlgorithmConstraints { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AlgorithmParameterGenerator.cs b/src/net/JNet/Generated/Java/Security/AlgorithmParameterGenerator.cs index c476a05ecf..b7fdb3bbc9 100644 --- a/src/net/JNet/Generated/Java/Security/AlgorithmParameterGenerator.cs +++ b/src/net/JNet/Generated/Java/Security/AlgorithmParameterGenerator.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region AlgorithmParameterGenerator + #region AlgorithmParameterGenerator declaration + /// + /// + /// + public partial class AlgorithmParameterGenerator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AlgorithmParameterGenerator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AlgorithmParameterGenerator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AlgorithmParameterGenerator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AlgorithmParameterGenerator implementation public partial class AlgorithmParameterGenerator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AlgorithmParameterGeneratorSpi.cs b/src/net/JNet/Generated/Java/Security/AlgorithmParameterGeneratorSpi.cs index 517cf65203..3aae8113c0 100644 --- a/src/net/JNet/Generated/Java/Security/AlgorithmParameterGeneratorSpi.cs +++ b/src/net/JNet/Generated/Java/Security/AlgorithmParameterGeneratorSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region AlgorithmParameterGeneratorSpi + #region AlgorithmParameterGeneratorSpi declaration + /// + /// + /// + public partial class AlgorithmParameterGeneratorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AlgorithmParameterGeneratorSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AlgorithmParameterGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmParameterGeneratorSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AlgorithmParameterGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmParameterGeneratorSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AlgorithmParameterGeneratorSpi implementation public partial class AlgorithmParameterGeneratorSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AlgorithmParameters.cs b/src/net/JNet/Generated/Java/Security/AlgorithmParameters.cs index e331af0493..3e9bd0e93c 100644 --- a/src/net/JNet/Generated/Java/Security/AlgorithmParameters.cs +++ b/src/net/JNet/Generated/Java/Security/AlgorithmParameters.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region AlgorithmParameters + #region AlgorithmParameters declaration + /// + /// + /// + public partial class AlgorithmParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AlgorithmParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AlgorithmParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AlgorithmParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AlgorithmParameters implementation public partial class AlgorithmParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AlgorithmParametersSpi.cs b/src/net/JNet/Generated/Java/Security/AlgorithmParametersSpi.cs index aadce6a4cb..94b864b4e4 100644 --- a/src/net/JNet/Generated/Java/Security/AlgorithmParametersSpi.cs +++ b/src/net/JNet/Generated/Java/Security/AlgorithmParametersSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region AlgorithmParametersSpi + #region AlgorithmParametersSpi declaration + /// + /// + /// + public partial class AlgorithmParametersSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.AlgorithmParametersSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AlgorithmParametersSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmParametersSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AlgorithmParametersSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmParametersSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AlgorithmParametersSpi implementation public partial class AlgorithmParametersSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Security/AllPackageClasses.cs deleted file mode 100644 index 0e9a8e3d74..0000000000 --- a/src/net/JNet/Generated/Java/Security/AllPackageClasses.cs +++ /dev/null @@ -1,3751 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Security -{ - #region AccessControlContext - /// - /// - /// - public partial class AccessControlContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AccessControlContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessControlContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessControlContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessControlException - /// - /// - /// - public partial class AccessControlException : Java.Lang.SecurityException - { - const string _bridgeClassName = "java.security.AccessControlException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AccessController - /// - /// - /// - public partial class AccessController : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AccessController"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessController() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessController(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AlgorithmConstraints - /// - /// - /// - public partial class AlgorithmConstraints : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AlgorithmConstraints"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AlgorithmConstraints class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmConstraints() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AlgorithmConstraints class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmConstraints(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AlgorithmParameterGenerator - /// - /// - /// - public partial class AlgorithmParameterGenerator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AlgorithmParameterGenerator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AlgorithmParameterGenerator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AlgorithmParameterGenerator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AlgorithmParameterGeneratorSpi - /// - /// - /// - public partial class AlgorithmParameterGeneratorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AlgorithmParameterGeneratorSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AlgorithmParameterGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmParameterGeneratorSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AlgorithmParameterGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmParameterGeneratorSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AlgorithmParameters - /// - /// - /// - public partial class AlgorithmParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AlgorithmParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AlgorithmParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AlgorithmParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AlgorithmParametersSpi - /// - /// - /// - public partial class AlgorithmParametersSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.AlgorithmParametersSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AlgorithmParametersSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmParametersSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AlgorithmParametersSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmParametersSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AllPermission - /// - /// - /// - public partial class AllPermission : Java.Security.Permission - { - const string _bridgeClassName = "java.security.AllPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AllPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AllPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AuthProvider - /// - /// - /// - public partial class AuthProvider : Java.Security.Provider - { - const string _bridgeClassName = "java.security.AuthProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AuthProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AuthProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AuthProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AuthProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicPermission - /// - /// - /// - public partial class BasicPermission : Java.Security.Permission - { - const string _bridgeClassName = "java.security.BasicPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BasicPermission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BasicPermission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CodeSigner - /// - /// - /// - public partial class CodeSigner : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.CodeSigner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CodeSigner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CodeSigner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CodeSource - /// - /// - /// - public partial class CodeSource : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.CodeSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CodeSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CodeSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CryptoPrimitive - /// - /// - /// - public partial class CryptoPrimitive : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.CryptoPrimitive"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CryptoPrimitive() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CryptoPrimitive(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DigestException - /// - /// - /// - public partial class DigestException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.DigestException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DigestInputStream - /// - /// - /// - public partial class DigestInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.security.DigestInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DigestInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DigestInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DigestOutputStream - /// - /// - /// - public partial class DigestOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.security.DigestOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DigestOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DigestOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DomainCombiner - /// - /// - /// - public partial class DomainCombiner : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.DomainCombiner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DomainCombiner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DomainCombiner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DomainCombiner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DomainCombiner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DomainLoadStoreParameter - /// - /// - /// - public partial class DomainLoadStoreParameter : Java.Security.KeyStore.LoadStoreParameter - { - const string _bridgeClassName = "java.security.DomainLoadStoreParameter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DomainLoadStoreParameter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DomainLoadStoreParameter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DrbgParameters - /// - /// - /// - public partial class DrbgParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.DrbgParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DrbgParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DrbgParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Capability - /// - /// - /// - public partial class Capability : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.DrbgParameters$Capability"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Capability() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Capability(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Instantiation - /// - /// - /// - public partial class Instantiation : Java.Security.SecureRandomParameters - { - const string _bridgeClassName = "java.security.DrbgParameters$Instantiation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Instantiation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Instantiation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region NextBytes - /// - /// - /// - public partial class NextBytes : Java.Security.SecureRandomParameters - { - const string _bridgeClassName = "java.security.DrbgParameters$NextBytes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NextBytes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NextBytes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Reseed - /// - /// - /// - public partial class Reseed : Java.Security.SecureRandomParameters - { - const string _bridgeClassName = "java.security.DrbgParameters$Reseed"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Reseed() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Reseed(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region GeneralSecurityException - /// - /// - /// - public partial class GeneralSecurityException : Java.Lang.Exception - { - const string _bridgeClassName = "java.security.GeneralSecurityException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Guard - /// - /// - /// - public partial class Guard : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Guard"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Guard class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Guard() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Guard class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Guard(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GuardedObject - /// - /// - /// - public partial class GuardedObject : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.GuardedObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GuardedObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GuardedObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidAlgorithmParameterException - /// - /// - /// - public partial class InvalidAlgorithmParameterException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.InvalidAlgorithmParameterException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidKeyException - /// - /// - /// - public partial class InvalidKeyException : Java.Security.KeyException - { - const string _bridgeClassName = "java.security.InvalidKeyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidParameterException - /// - /// - /// - public partial class InvalidParameterException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.security.InvalidParameterException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Key - /// - /// - /// - public partial class Key : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.Key"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Key() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Key(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyException - /// - /// - /// - public partial class KeyException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.KeyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeyFactory - /// - /// - /// - public partial class KeyFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyFactorySpi - /// - /// - /// - public partial class KeyFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyFactorySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyFactorySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyFactorySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyManagementException - /// - /// - /// - public partial class KeyManagementException : Java.Security.KeyException - { - const string _bridgeClassName = "java.security.KeyManagementException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeyPair - /// - /// - /// - public partial class KeyPair : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.KeyPair"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyPair() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyPair(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyPairGenerator - /// - /// - /// - public partial class KeyPairGenerator : Java.Security.KeyPairGeneratorSpi - { - const string _bridgeClassName = "java.security.KeyPairGenerator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyPairGenerator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyPairGenerator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyPairGeneratorSpi - /// - /// - /// - public partial class KeyPairGeneratorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyPairGeneratorSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyPairGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyPairGeneratorSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyPairGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyPairGeneratorSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyRep - /// - /// - /// - public partial class KeyRep : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.KeyRep"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyRep() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyRep(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.KeyRep$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region KeyStore - /// - /// - /// - public partial class KeyStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyStore() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyStore(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CallbackHandlerProtection - /// - /// - /// - public partial class CallbackHandlerProtection : Java.Security.KeyStore.ProtectionParameter - { - const string _bridgeClassName = "java.security.KeyStore$CallbackHandlerProtection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CallbackHandlerProtection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CallbackHandlerProtection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Entry - /// - /// - /// - public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore$Entry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - #region Attribute - /// - /// - /// - public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore$Entry$Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region LoadStoreParameter - /// - /// - /// - public partial class LoadStoreParameter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore$LoadStoreParameter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LoadStoreParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LoadStoreParameter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LoadStoreParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LoadStoreParameter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PasswordProtection - /// - /// - /// - public partial class PasswordProtection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore$PasswordProtection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PasswordProtection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PasswordProtection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PrivateKeyEntry - /// - /// - /// - public partial class PrivateKeyEntry : Java.Security.KeyStore.Entry - { - const string _bridgeClassName = "java.security.KeyStore$PrivateKeyEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrivateKeyEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrivateKeyEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ProtectionParameter - /// - /// - /// - public partial class ProtectionParameter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStore$ProtectionParameter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProtectionParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProtectionParameter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProtectionParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProtectionParameter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SecretKeyEntry - /// - /// - /// - public partial class SecretKeyEntry : Java.Security.KeyStore.Entry - { - const string _bridgeClassName = "java.security.KeyStore$SecretKeyEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecretKeyEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecretKeyEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TrustedCertificateEntry - /// - /// - /// - public partial class TrustedCertificateEntry : Java.Security.KeyStore.Entry - { - const string _bridgeClassName = "java.security.KeyStore$TrustedCertificateEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TrustedCertificateEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TrustedCertificateEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region KeyStoreException - /// - /// - /// - public partial class KeyStoreException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.KeyStoreException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeyStoreSpi - /// - /// - /// - public partial class KeyStoreSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.KeyStoreSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyStoreSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyStoreSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MessageDigest - /// - /// - /// - public partial class MessageDigest : Java.Security.MessageDigestSpi - { - const string _bridgeClassName = "java.security.MessageDigest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MessageDigest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MessageDigest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MessageDigest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MessageDigest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MessageDigestSpi - /// - /// - /// - public partial class MessageDigestSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.MessageDigestSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MessageDigestSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MessageDigestSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MessageDigestSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MessageDigestSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchAlgorithmException - /// - /// - /// - public partial class NoSuchAlgorithmException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.NoSuchAlgorithmException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoSuchProviderException - /// - /// - /// - public partial class NoSuchProviderException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.NoSuchProviderException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Permission - /// - /// - /// - public partial class Permission : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Permission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Permission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Permission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Permission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Permission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PermissionCollection - /// - /// - /// - public partial class PermissionCollection : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.PermissionCollection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PermissionCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PermissionCollection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PermissionCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PermissionCollection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Permissions - /// - /// - /// - public partial class Permissions : Java.Security.PermissionCollection - { - const string _bridgeClassName = "java.security.Permissions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Permissions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Permissions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKCS12Attribute - /// - /// - /// - public partial class PKCS12Attribute : Java.Security.KeyStore.Entry.Attribute - { - const string _bridgeClassName = "java.security.PKCS12Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKCS12Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKCS12Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Policy - /// - /// - /// - public partial class Policy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Policy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Policy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Policy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Policy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Policy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Parameters - /// - /// - /// - public partial class Parameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Policy$Parameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region PolicySpi - /// - /// - /// - public partial class PolicySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.PolicySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PolicySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PolicySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PolicySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PolicySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Principal - /// - /// - /// - public partial class Principal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Principal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Principal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Principal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Principal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Principal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivateKey - /// - /// - /// - public partial class PrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.PrivateKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivateKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivateKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivilegedAction - /// - /// - /// - public partial class PrivilegedAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.PrivilegedAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivilegedAction - /// - /// - /// - /// - public partial class PrivilegedAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.security.PrivilegedAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivilegedActionException - /// - /// - /// - public partial class PrivilegedActionException : Java.Lang.Exception - { - const string _bridgeClassName = "java.security.PrivilegedActionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PrivilegedExceptionAction - /// - /// - /// - public partial class PrivilegedExceptionAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.PrivilegedExceptionAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedExceptionAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedExceptionAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivilegedExceptionAction - /// - /// - /// - /// - public partial class PrivilegedExceptionAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.security.PrivilegedExceptionAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedExceptionAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivilegedExceptionAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProtectionDomain - /// - /// - /// - public partial class ProtectionDomain : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.ProtectionDomain"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ProtectionDomain() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ProtectionDomain(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Provider - /// - /// - /// - public partial class Provider : Java.Util.Properties - { - const string _bridgeClassName = "java.security.Provider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Provider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Provider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Provider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Provider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Service - /// - /// - /// - public partial class Service : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Provider$Service"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Service() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Service(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ProviderException - /// - /// - /// - public partial class ProviderException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.security.ProviderException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PublicKey - /// - /// - /// - public partial class PublicKey : Java.Security.Key - { - const string _bridgeClassName = "java.security.PublicKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PublicKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PublicKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecureClassLoader - /// - /// - /// - public partial class SecureClassLoader : Java.Lang.ClassLoader - { - const string _bridgeClassName = "java.security.SecureClassLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecureClassLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecureClassLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecureRandom - /// - /// - /// - public partial class SecureRandom : Java.Util.Random - { - const string _bridgeClassName = "java.security.SecureRandom"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecureRandom() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecureRandom(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecureRandomParameters - /// - /// - /// - public partial class SecureRandomParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.SecureRandomParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecureRandomParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureRandomParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecureRandomParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureRandomParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecureRandomSpi - /// - /// - /// - public partial class SecureRandomSpi : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.SecureRandomSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecureRandomSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureRandomSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecureRandomSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecureRandomSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Security - /// - /// - /// - public partial class Security : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.Security"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Security() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Security(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecurityPermission - /// - /// - /// - public partial class SecurityPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.security.SecurityPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecurityPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecurityPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Signature - /// - /// - /// - public partial class Signature : Java.Security.SignatureSpi - { - const string _bridgeClassName = "java.security.Signature"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Signature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Signature() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Signature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Signature(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignatureException - /// - /// - /// - public partial class SignatureException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.SignatureException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SignatureSpi - /// - /// - /// - public partial class SignatureSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.SignatureSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignatureSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignatureSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignedObject - /// - /// - /// - public partial class SignedObject : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.SignedObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SignedObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SignedObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Timestamp - /// - /// - /// - public partial class Timestamp : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.Timestamp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Timestamp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Timestamp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnrecoverableEntryException - /// - /// - /// - public partial class UnrecoverableEntryException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.UnrecoverableEntryException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnrecoverableKeyException - /// - /// - /// - public partial class UnrecoverableKeyException : Java.Security.UnrecoverableEntryException - { - const string _bridgeClassName = "java.security.UnrecoverableKeyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnresolvedPermission - /// - /// - /// - public partial class UnresolvedPermission : Java.Security.Permission - { - const string _bridgeClassName = "java.security.UnresolvedPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnresolvedPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnresolvedPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URIParameter - /// - /// - /// - public partial class URIParameter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.URIParameter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URIParameter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URIParameter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Security/AllPermission.cs b/src/net/JNet/Generated/Java/Security/AllPermission.cs index 31a14633a3..3d032d9e73 100644 --- a/src/net/JNet/Generated/Java/Security/AllPermission.cs +++ b/src/net/JNet/Generated/Java/Security/AllPermission.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region AllPermission + #region AllPermission declaration + /// + /// + /// + public partial class AllPermission : Java.Security.Permission + { + const string _bridgeClassName = "java.security.AllPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AllPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AllPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AllPermission implementation public partial class AllPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/AuthProvider.cs b/src/net/JNet/Generated/Java/Security/AuthProvider.cs index 96d7eb7383..de5433ef40 100644 --- a/src/net/JNet/Generated/Java/Security/AuthProvider.cs +++ b/src/net/JNet/Generated/Java/Security/AuthProvider.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region AuthProvider + #region AuthProvider declaration + /// + /// + /// + public partial class AuthProvider : Java.Security.Provider + { + const string _bridgeClassName = "java.security.AuthProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AuthProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AuthProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AuthProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AuthProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AuthProvider implementation public partial class AuthProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/BasicPermission.cs b/src/net/JNet/Generated/Java/Security/BasicPermission.cs index a440916ba0..e715a71f6a 100644 --- a/src/net/JNet/Generated/Java/Security/BasicPermission.cs +++ b/src/net/JNet/Generated/Java/Security/BasicPermission.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region BasicPermission + #region BasicPermission declaration + /// + /// + /// + public partial class BasicPermission : Java.Security.Permission + { + const string _bridgeClassName = "java.security.BasicPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BasicPermission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BasicPermission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicPermission implementation public partial class BasicPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Security/Cert/AllPackageClasses.cs deleted file mode 100644 index 80671228ea..0000000000 --- a/src/net/JNet/Generated/Java/Security/Cert/AllPackageClasses.cs +++ /dev/null @@ -1,2136 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Security.Cert -{ - #region Certificate - /// - /// - /// - public partial class Certificate : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.cert.Certificate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Certificate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Certificate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertificateEncodingException - /// - /// - /// - public partial class CertificateEncodingException : Java.Security.Cert.CertificateException - { - const string _bridgeClassName = "java.security.cert.CertificateEncodingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertificateException - /// - /// - /// - public partial class CertificateException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.cert.CertificateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertificateExpiredException - /// - /// - /// - public partial class CertificateExpiredException : Java.Security.Cert.CertificateException - { - const string _bridgeClassName = "java.security.cert.CertificateExpiredException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertificateFactory - /// - /// - /// - public partial class CertificateFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertificateFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CertificateFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CertificateFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertificateFactorySpi - /// - /// - /// - public partial class CertificateFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertificateFactorySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertificateFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertificateFactorySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertificateFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertificateFactorySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertificateNotYetValidException - /// - /// - /// - public partial class CertificateNotYetValidException : Java.Security.Cert.CertificateException - { - const string _bridgeClassName = "java.security.cert.CertificateNotYetValidException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertificateParsingException - /// - /// - /// - public partial class CertificateParsingException : Java.Security.Cert.CertificateException - { - const string _bridgeClassName = "java.security.cert.CertificateParsingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertificateRevokedException - /// - /// - /// - public partial class CertificateRevokedException : Java.Security.Cert.CertificateException - { - const string _bridgeClassName = "java.security.cert.CertificateRevokedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertPath - /// - /// - /// - public partial class CertPath : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.cert.CertPath"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPath() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPath(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathBuilder - /// - /// - /// - public partial class CertPathBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertPathBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CertPathBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CertPathBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathBuilderException - /// - /// - /// - public partial class CertPathBuilderException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.cert.CertPathBuilderException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertPathBuilderResult - /// - /// - /// - public partial class CertPathBuilderResult : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.security.cert.CertPathBuilderResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPathBuilderResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathBuilderResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPathBuilderResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathBuilderResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathBuilderSpi - /// - /// - /// - public partial class CertPathBuilderSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertPathBuilderSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPathBuilderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathBuilderSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPathBuilderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathBuilderSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathChecker - /// - /// - /// - public partial class CertPathChecker : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertPathChecker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathChecker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathChecker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathParameters - /// - /// - /// - public partial class CertPathParameters : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.security.cert.CertPathParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPathParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPathParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathValidator - /// - /// - /// - public partial class CertPathValidator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertPathValidator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CertPathValidator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CertPathValidator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathValidatorException - /// - /// - /// - public partial class CertPathValidatorException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.cert.CertPathValidatorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - #region BasicReason - /// - /// - /// - public partial class BasicReason : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.cert.CertPathValidatorException$BasicReason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicReason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicReason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Reason - /// - /// - /// - public partial class Reason : Java.Io.Serializable - { - const string _bridgeClassName = "java.security.cert.CertPathValidatorException$Reason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Reason class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Reason class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region CertPathValidatorResult - /// - /// - /// - public partial class CertPathValidatorResult : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.security.cert.CertPathValidatorResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPathValidatorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathValidatorResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPathValidatorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathValidatorResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertPathValidatorSpi - /// - /// - /// - public partial class CertPathValidatorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertPathValidatorSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertPathValidatorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathValidatorSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertPathValidatorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertPathValidatorSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertSelector - /// - /// - /// - public partial class CertSelector : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.security.cert.CertSelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertSelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertSelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertStore - /// - /// - /// - public partial class CertStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertStore"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CertStore() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CertStore(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertStoreException - /// - /// - /// - public partial class CertStoreException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.cert.CertStoreException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CertStoreParameters - /// - /// - /// - public partial class CertStoreParameters : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.security.cert.CertStoreParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertStoreParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertStoreParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertStoreParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertStoreParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CertStoreSpi - /// - /// - /// - public partial class CertStoreSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CertStoreSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CertStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertStoreSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CertStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CertStoreSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CollectionCertStoreParameters - /// - /// - /// - public partial class CollectionCertStoreParameters : Java.Security.Cert.CertStoreParameters - { - const string _bridgeClassName = "java.security.cert.CollectionCertStoreParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CollectionCertStoreParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CollectionCertStoreParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CRL - /// - /// - /// - public partial class CRL : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.CRL"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CRL() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CRL(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CRLException - /// - /// - /// - public partial class CRLException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.cert.CRLException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CRLReason - /// - /// - /// - public partial class CRLReason : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.cert.CRLReason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CRLReason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CRLReason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CRLSelector - /// - /// - /// - public partial class CRLSelector : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.security.cert.CRLSelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CRLSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CRLSelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CRLSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CRLSelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Extension - /// - /// - /// - public partial class Extension : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.Extension"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Extension() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Extension(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LDAPCertStoreParameters - /// - /// - /// - public partial class LDAPCertStoreParameters : Java.Security.Cert.CertStoreParameters - { - const string _bridgeClassName = "java.security.cert.LDAPCertStoreParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LDAPCertStoreParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LDAPCertStoreParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXBuilderParameters - /// - /// - /// - public partial class PKIXBuilderParameters : Java.Security.Cert.PKIXParameters - { - const string _bridgeClassName = "java.security.cert.PKIXBuilderParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKIXBuilderParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKIXBuilderParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXCertPathBuilderResult - /// - /// - /// - public partial class PKIXCertPathBuilderResult : Java.Security.Cert.PKIXCertPathValidatorResult - { - const string _bridgeClassName = "java.security.cert.PKIXCertPathBuilderResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKIXCertPathBuilderResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKIXCertPathBuilderResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXCertPathChecker - /// - /// - /// - public partial class PKIXCertPathChecker : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.PKIXCertPathChecker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PKIXCertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PKIXCertPathChecker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PKIXCertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PKIXCertPathChecker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXCertPathValidatorResult - /// - /// - /// - public partial class PKIXCertPathValidatorResult : Java.Security.Cert.CertPathValidatorResult - { - const string _bridgeClassName = "java.security.cert.PKIXCertPathValidatorResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKIXCertPathValidatorResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKIXCertPathValidatorResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXParameters - /// - /// - /// - public partial class PKIXParameters : Java.Security.Cert.CertPathParameters - { - const string _bridgeClassName = "java.security.cert.PKIXParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKIXParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKIXParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXReason - /// - /// - /// - public partial class PKIXReason : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.cert.PKIXReason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKIXReason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKIXReason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKIXRevocationChecker - /// - /// - /// - public partial class PKIXRevocationChecker : Java.Security.Cert.PKIXCertPathChecker - { - const string _bridgeClassName = "java.security.cert.PKIXRevocationChecker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PKIXRevocationChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PKIXRevocationChecker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PKIXRevocationChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PKIXRevocationChecker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Option - /// - /// - /// - public partial class Option : Java.Lang.Enum - { - const string _bridgeClassName = "java.security.cert.PKIXRevocationChecker$Option"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Option() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Option(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region PolicyNode - /// - /// - /// - public partial class PolicyNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.PolicyNode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PolicyNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PolicyNode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PolicyNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PolicyNode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PolicyQualifierInfo - /// - /// - /// - public partial class PolicyQualifierInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.PolicyQualifierInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PolicyQualifierInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PolicyQualifierInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TrustAnchor - /// - /// - /// - public partial class TrustAnchor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.TrustAnchor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TrustAnchor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TrustAnchor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URICertStoreParameters - /// - /// - /// - public partial class URICertStoreParameters : Java.Security.Cert.CertStoreParameters - { - const string _bridgeClassName = "java.security.cert.URICertStoreParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URICertStoreParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URICertStoreParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509Certificate - /// - /// - /// - public partial class X509Certificate : Java.Security.Cert.Certificate - { - const string _bridgeClassName = "java.security.cert.X509Certificate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509Certificate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509Certificate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509CertSelector - /// - /// - /// - public partial class X509CertSelector : Java.Security.Cert.CertSelector - { - const string _bridgeClassName = "java.security.cert.X509CertSelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public X509CertSelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public X509CertSelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509CRL - /// - /// - /// - public partial class X509CRL : Java.Security.Cert.CRL - { - const string _bridgeClassName = "java.security.cert.X509CRL"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509CRL() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509CRL(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509CRLEntry - /// - /// - /// - public partial class X509CRLEntry : Java.Security.Cert.X509Extension - { - const string _bridgeClassName = "java.security.cert.X509CRLEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509CRLEntry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509CRLEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509CRLEntry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509CRLEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509CRLSelector - /// - /// - /// - public partial class X509CRLSelector : Java.Security.Cert.CRLSelector - { - const string _bridgeClassName = "java.security.cert.X509CRLSelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public X509CRLSelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public X509CRLSelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509Extension - /// - /// - /// - public partial class X509Extension : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.cert.X509Extension"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509Extension() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509Extension(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Security/Cert/CRL.cs b/src/net/JNet/Generated/Java/Security/Cert/CRL.cs index 6a0d3b528a..af9fa0bd5d 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CRL.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CRL.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region CRL + #region CRL declaration + /// + /// + /// + public partial class CRL : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CRL"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CRL() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CRL(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CRL implementation public partial class CRL { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CRLException.cs b/src/net/JNet/Generated/Java/Security/Cert/CRLException.cs index 7be331459a..4a55c23cb4 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CRLException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CRLException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CRLException + #region CRLException declaration + /// + /// + /// + public partial class CRLException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.cert.CRLException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CRLException implementation public partial class CRLException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CRLReason.cs b/src/net/JNet/Generated/Java/Security/Cert/CRLReason.cs index 05e3e38625..57e16dca61 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CRLReason.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CRLReason.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region CRLReason + #region CRLReason declaration + /// + /// + /// + public partial class CRLReason : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.cert.CRLReason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CRLReason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CRLReason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CRLReason implementation public partial class CRLReason { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CRLSelector.cs b/src/net/JNet/Generated/Java/Security/Cert/CRLSelector.cs index 913074dced..83f28e8263 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CRLSelector.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CRLSelector.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CRLSelector declaration + /// + /// + /// + public partial class CRLSelector : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.security.cert.CRLSelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CRLSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CRLSelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CRLSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CRLSelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICRLSelector /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface ICRLSelector : Java.Lang.ICloneable } #endregion - #region CRLSelector + #region CRLSelector implementation public partial class CRLSelector : Java.Security.Cert.ICRLSelector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPath.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPath.cs index de2fb1634a..a67c299b7e 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPath.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPath.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region CertPath + #region CertPath declaration + /// + /// + /// + public partial class CertPath : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.cert.CertPath"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPath() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPath(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertPath implementation public partial class CertPath { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilder.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilder.cs index 1223d11a77..4c8b047f99 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilder.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilder.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region CertPathBuilder + #region CertPathBuilder declaration + /// + /// + /// + public partial class CertPathBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertPathBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CertPathBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CertPathBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertPathBuilder implementation public partial class CertPathBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderException.cs index 62d1b79a4b..450b3dce41 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertPathBuilderException + #region CertPathBuilderException declaration + /// + /// + /// + public partial class CertPathBuilderException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.cert.CertPathBuilderException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertPathBuilderException implementation public partial class CertPathBuilderException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderResult.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderResult.cs index e4753a95e8..e3fd1c8ca2 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderResult.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderResult.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CertPathBuilderResult declaration + /// + /// + /// + public partial class CertPathBuilderResult : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.security.cert.CertPathBuilderResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPathBuilderResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathBuilderResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPathBuilderResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathBuilderResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICertPathBuilderResult /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ICertPathBuilderResult : Java.Lang.ICloneable } #endregion - #region CertPathBuilderResult + #region CertPathBuilderResult implementation public partial class CertPathBuilderResult : Java.Security.Cert.ICertPathBuilderResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderSpi.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderSpi.cs index f128eadd0b..d9e051ef67 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderSpi.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathBuilderSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region CertPathBuilderSpi + #region CertPathBuilderSpi declaration + /// + /// + /// + public partial class CertPathBuilderSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertPathBuilderSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPathBuilderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathBuilderSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPathBuilderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathBuilderSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertPathBuilderSpi implementation public partial class CertPathBuilderSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathChecker.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathChecker.cs index 7ced001c41..acea760633 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathChecker.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathChecker.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CertPathChecker declaration + /// + /// + /// + public partial class CertPathChecker : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertPathChecker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathChecker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathChecker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICertPathChecker /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface ICertPathChecker } #endregion - #region CertPathChecker + #region CertPathChecker implementation public partial class CertPathChecker : Java.Security.Cert.ICertPathChecker { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathParameters.cs index ce414074ec..45934e1466 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathParameters.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CertPathParameters declaration + /// + /// + /// + public partial class CertPathParameters : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.security.cert.CertPathParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPathParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPathParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICertPathParameters /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICertPathParameters : Java.Lang.ICloneable } #endregion - #region CertPathParameters + #region CertPathParameters implementation public partial class CertPathParameters : Java.Security.Cert.ICertPathParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidator.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidator.cs index e793ffc72a..cad65c1d85 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidator.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidator.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region CertPathValidator + #region CertPathValidator declaration + /// + /// + /// + public partial class CertPathValidator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertPathValidator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CertPathValidator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CertPathValidator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertPathValidator implementation public partial class CertPathValidator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorException.cs index 83cd37115c..2254897adc 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorException.cs @@ -25,7 +25,116 @@ namespace Java.Security.Cert { - #region CertPathValidatorException + #region CertPathValidatorException declaration + /// + /// + /// + public partial class CertPathValidatorException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.cert.CertPathValidatorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + #region BasicReason declaration + /// + /// + /// + public partial class BasicReason : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.cert.CertPathValidatorException$BasicReason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicReason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicReason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Reason declaration + /// + /// + /// + public partial class Reason : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.cert.CertPathValidatorException$Reason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Reason class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Reason class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CertPathValidatorException implementation public partial class CertPathValidatorException { #region Constructors @@ -49,7 +158,7 @@ public partial class CertPathValidatorException #endregion #region Nested classes - #region BasicReason + #region BasicReason implementation public partial class BasicReason { #region Constructors @@ -139,7 +248,7 @@ public static Java.Security.Cert.CertPathValidatorException.BasicReason[] Values } #endregion - #region Reason + #region Reason implementation public partial class Reason { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorResult.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorResult.cs index 26509b1e7f..61b4000e72 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorResult.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorResult.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CertPathValidatorResult declaration + /// + /// + /// + public partial class CertPathValidatorResult : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.security.cert.CertPathValidatorResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPathValidatorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathValidatorResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPathValidatorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathValidatorResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICertPathValidatorResult /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICertPathValidatorResult : Java.Lang.ICloneable } #endregion - #region CertPathValidatorResult + #region CertPathValidatorResult implementation public partial class CertPathValidatorResult : Java.Security.Cert.ICertPathValidatorResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorSpi.cs b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorSpi.cs index b8c085432b..d99d1d879c 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorSpi.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertPathValidatorSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region CertPathValidatorSpi + #region CertPathValidatorSpi declaration + /// + /// + /// + public partial class CertPathValidatorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertPathValidatorSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertPathValidatorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathValidatorSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertPathValidatorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertPathValidatorSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertPathValidatorSpi implementation public partial class CertPathValidatorSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertSelector.cs b/src/net/JNet/Generated/Java/Security/Cert/CertSelector.cs index 58c00517b4..b0e76e6c89 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertSelector.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertSelector.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CertSelector declaration + /// + /// + /// + public partial class CertSelector : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.security.cert.CertSelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertSelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertSelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertSelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICertSelector /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface ICertSelector : Java.Lang.ICloneable } #endregion - #region CertSelector + #region CertSelector implementation public partial class CertSelector : Java.Security.Cert.ICertSelector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertStore.cs b/src/net/JNet/Generated/Java/Security/Cert/CertStore.cs index ec2114c872..0a64f090bb 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertStore.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertStore.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region CertStore + #region CertStore declaration + /// + /// + /// + public partial class CertStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertStore"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CertStore() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CertStore(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertStore implementation public partial class CertStore { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertStoreException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertStoreException.cs index 0c02023633..c07d2d232e 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertStoreException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertStoreException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertStoreException + #region CertStoreException declaration + /// + /// + /// + public partial class CertStoreException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.cert.CertStoreException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertStoreException implementation public partial class CertStoreException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertStoreParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/CertStoreParameters.cs index 142909ba80..c1176030f8 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertStoreParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertStoreParameters.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region CertStoreParameters declaration + /// + /// + /// + public partial class CertStoreParameters : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.security.cert.CertStoreParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertStoreParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertStoreParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertStoreParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertStoreParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICertStoreParameters /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICertStoreParameters : Java.Lang.ICloneable } #endregion - #region CertStoreParameters + #region CertStoreParameters implementation public partial class CertStoreParameters : Java.Security.Cert.ICertStoreParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertStoreSpi.cs b/src/net/JNet/Generated/Java/Security/Cert/CertStoreSpi.cs index df2e3fbf8f..93589e692e 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertStoreSpi.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertStoreSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region CertStoreSpi + #region CertStoreSpi declaration + /// + /// + /// + public partial class CertStoreSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertStoreSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertStoreSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertStoreSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertStoreSpi implementation public partial class CertStoreSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/Certificate.cs b/src/net/JNet/Generated/Java/Security/Cert/Certificate.cs index f5634867d9..c330fa14c3 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/Certificate.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/Certificate.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region Certificate + #region Certificate declaration + /// + /// + /// + public partial class Certificate : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.cert.Certificate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Certificate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Certificate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Certificate implementation public partial class Certificate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateEncodingException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateEncodingException.cs index 14e1dd41ba..bdff28a135 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateEncodingException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateEncodingException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertificateEncodingException + #region CertificateEncodingException declaration + /// + /// + /// + public partial class CertificateEncodingException : Java.Security.Cert.CertificateException + { + const string _bridgeClassName = "java.security.cert.CertificateEncodingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertificateEncodingException implementation public partial class CertificateEncodingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateException.cs index 5bdd2bc502..38b29dff16 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertificateException + #region CertificateException declaration + /// + /// + /// + public partial class CertificateException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.cert.CertificateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertificateException implementation public partial class CertificateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateExpiredException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateExpiredException.cs index 56844f9036..6a7c5fc002 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateExpiredException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateExpiredException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertificateExpiredException + #region CertificateExpiredException declaration + /// + /// + /// + public partial class CertificateExpiredException : Java.Security.Cert.CertificateException + { + const string _bridgeClassName = "java.security.cert.CertificateExpiredException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertificateExpiredException implementation public partial class CertificateExpiredException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateFactory.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateFactory.cs index 935a214a65..a3fbefb34c 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateFactory.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateFactory.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region CertificateFactory + #region CertificateFactory declaration + /// + /// + /// + public partial class CertificateFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertificateFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CertificateFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CertificateFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertificateFactory implementation public partial class CertificateFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateFactorySpi.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateFactorySpi.cs index 1a754cc48a..53087485e9 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateFactorySpi.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateFactorySpi.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region CertificateFactorySpi + #region CertificateFactorySpi declaration + /// + /// + /// + public partial class CertificateFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.CertificateFactorySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CertificateFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertificateFactorySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CertificateFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CertificateFactorySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertificateFactorySpi implementation public partial class CertificateFactorySpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateNotYetValidException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateNotYetValidException.cs index 5d2a6c2e5c..7d59141ea0 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateNotYetValidException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateNotYetValidException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertificateNotYetValidException + #region CertificateNotYetValidException declaration + /// + /// + /// + public partial class CertificateNotYetValidException : Java.Security.Cert.CertificateException + { + const string _bridgeClassName = "java.security.cert.CertificateNotYetValidException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertificateNotYetValidException implementation public partial class CertificateNotYetValidException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateParsingException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateParsingException.cs index e8de2a2075..ec499911dc 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateParsingException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateParsingException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertificateParsingException + #region CertificateParsingException declaration + /// + /// + /// + public partial class CertificateParsingException : Java.Security.Cert.CertificateException + { + const string _bridgeClassName = "java.security.cert.CertificateParsingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertificateParsingException implementation public partial class CertificateParsingException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CertificateRevokedException.cs b/src/net/JNet/Generated/Java/Security/Cert/CertificateRevokedException.cs index 94deeb15ec..f27ef17092 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CertificateRevokedException.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CertificateRevokedException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Cert { - #region CertificateRevokedException + #region CertificateRevokedException declaration + /// + /// + /// + public partial class CertificateRevokedException : Java.Security.Cert.CertificateException + { + const string _bridgeClassName = "java.security.cert.CertificateRevokedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CertificateRevokedException implementation public partial class CertificateRevokedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/CollectionCertStoreParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/CollectionCertStoreParameters.cs index 20acc965af..bccfe42ba7 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/CollectionCertStoreParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/CollectionCertStoreParameters.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region CollectionCertStoreParameters + #region CollectionCertStoreParameters declaration + /// + /// + /// + public partial class CollectionCertStoreParameters : Java.Security.Cert.CertStoreParameters + { + const string _bridgeClassName = "java.security.cert.CollectionCertStoreParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CollectionCertStoreParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CollectionCertStoreParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CollectionCertStoreParameters implementation public partial class CollectionCertStoreParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/Extension.cs b/src/net/JNet/Generated/Java/Security/Cert/Extension.cs index dc24985d75..aa525f2ec3 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/Extension.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/Extension.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region Extension declaration + /// + /// + /// + public partial class Extension : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.Extension"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Extension() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Extension(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExtension /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +109,7 @@ public partial interface IExtension } #endregion - #region Extension + #region Extension implementation public partial class Extension : Java.Security.Cert.IExtension { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/LDAPCertStoreParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/LDAPCertStoreParameters.cs index cee50bd7c3..504c02d827 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/LDAPCertStoreParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/LDAPCertStoreParameters.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region LDAPCertStoreParameters + #region LDAPCertStoreParameters declaration + /// + /// + /// + public partial class LDAPCertStoreParameters : Java.Security.Cert.CertStoreParameters + { + const string _bridgeClassName = "java.security.cert.LDAPCertStoreParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LDAPCertStoreParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LDAPCertStoreParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LDAPCertStoreParameters implementation public partial class LDAPCertStoreParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXBuilderParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXBuilderParameters.cs index 1991efb9a2..92b6f28704 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXBuilderParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXBuilderParameters.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region PKIXBuilderParameters + #region PKIXBuilderParameters declaration + /// + /// + /// + public partial class PKIXBuilderParameters : Java.Security.Cert.PKIXParameters + { + const string _bridgeClassName = "java.security.cert.PKIXBuilderParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKIXBuilderParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKIXBuilderParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKIXBuilderParameters implementation public partial class PKIXBuilderParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathBuilderResult.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathBuilderResult.cs index 0d10e3cf22..0f5bff25e3 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathBuilderResult.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathBuilderResult.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region PKIXCertPathBuilderResult + #region PKIXCertPathBuilderResult declaration + /// + /// + /// + public partial class PKIXCertPathBuilderResult : Java.Security.Cert.PKIXCertPathValidatorResult + { + const string _bridgeClassName = "java.security.cert.PKIXCertPathBuilderResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKIXCertPathBuilderResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKIXCertPathBuilderResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKIXCertPathBuilderResult implementation public partial class PKIXCertPathBuilderResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathChecker.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathChecker.cs index 40ca4f6235..212fae70bd 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathChecker.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathChecker.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region PKIXCertPathChecker + #region PKIXCertPathChecker declaration + /// + /// + /// + public partial class PKIXCertPathChecker : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.PKIXCertPathChecker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PKIXCertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PKIXCertPathChecker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PKIXCertPathChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PKIXCertPathChecker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKIXCertPathChecker implementation public partial class PKIXCertPathChecker { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathValidatorResult.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathValidatorResult.cs index bd46fab18d..f843a02a23 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathValidatorResult.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXCertPathValidatorResult.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region PKIXCertPathValidatorResult + #region PKIXCertPathValidatorResult declaration + /// + /// + /// + public partial class PKIXCertPathValidatorResult : Java.Security.Cert.CertPathValidatorResult + { + const string _bridgeClassName = "java.security.cert.PKIXCertPathValidatorResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKIXCertPathValidatorResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKIXCertPathValidatorResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKIXCertPathValidatorResult implementation public partial class PKIXCertPathValidatorResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXParameters.cs index 7b5d441114..e8fe6427be 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXParameters.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region PKIXParameters + #region PKIXParameters declaration + /// + /// + /// + public partial class PKIXParameters : Java.Security.Cert.CertPathParameters + { + const string _bridgeClassName = "java.security.cert.PKIXParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKIXParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKIXParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKIXParameters implementation public partial class PKIXParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXReason.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXReason.cs index 7815f368d4..9e401ba4b6 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXReason.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXReason.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region PKIXReason + #region PKIXReason declaration + /// + /// + /// + public partial class PKIXReason : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.cert.PKIXReason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKIXReason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKIXReason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKIXReason implementation public partial class PKIXReason { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PKIXRevocationChecker.cs b/src/net/JNet/Generated/Java/Security/Cert/PKIXRevocationChecker.cs index 9debd02c80..534ed95cb5 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PKIXRevocationChecker.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PKIXRevocationChecker.cs @@ -25,7 +25,99 @@ namespace Java.Security.Cert { - #region PKIXRevocationChecker + #region PKIXRevocationChecker declaration + /// + /// + /// + public partial class PKIXRevocationChecker : Java.Security.Cert.PKIXCertPathChecker + { + const string _bridgeClassName = "java.security.cert.PKIXRevocationChecker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PKIXRevocationChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PKIXRevocationChecker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PKIXRevocationChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PKIXRevocationChecker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Option declaration + /// + /// + /// + public partial class Option : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.cert.PKIXRevocationChecker$Option"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Option() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Option(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region PKIXRevocationChecker implementation public partial class PKIXRevocationChecker { #region Constructors @@ -91,7 +183,7 @@ public Java.Util.List SoftFailExc #endregion #region Nested classes - #region Option + #region Option implementation public partial class Option { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PolicyNode.cs b/src/net/JNet/Generated/Java/Security/Cert/PolicyNode.cs index 4caa8187e7..17a6dbd6e6 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PolicyNode.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PolicyNode.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region PolicyNode declaration + /// + /// + /// + public partial class PolicyNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.PolicyNode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PolicyNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PolicyNode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PolicyNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PolicyNode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPolicyNode /// /// .NET interface for TO BE DEFINED FROM USER @@ -72,7 +119,7 @@ public partial interface IPolicyNode } #endregion - #region PolicyNode + #region PolicyNode implementation public partial class PolicyNode : Java.Security.Cert.IPolicyNode { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/PolicyQualifierInfo.cs b/src/net/JNet/Generated/Java/Security/Cert/PolicyQualifierInfo.cs index 305081bc3d..71a3e91eb2 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/PolicyQualifierInfo.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/PolicyQualifierInfo.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region PolicyQualifierInfo + #region PolicyQualifierInfo declaration + /// + /// + /// + public partial class PolicyQualifierInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.PolicyQualifierInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PolicyQualifierInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PolicyQualifierInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PolicyQualifierInfo implementation public partial class PolicyQualifierInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/TrustAnchor.cs b/src/net/JNet/Generated/Java/Security/Cert/TrustAnchor.cs index 005a20a609..9c2fd20f05 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/TrustAnchor.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/TrustAnchor.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region TrustAnchor + #region TrustAnchor declaration + /// + /// + /// + public partial class TrustAnchor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.TrustAnchor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TrustAnchor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TrustAnchor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TrustAnchor implementation public partial class TrustAnchor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/URICertStoreParameters.cs b/src/net/JNet/Generated/Java/Security/Cert/URICertStoreParameters.cs index 145270992e..589d602e59 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/URICertStoreParameters.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/URICertStoreParameters.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region URICertStoreParameters + #region URICertStoreParameters declaration + /// + /// + /// + public partial class URICertStoreParameters : Java.Security.Cert.CertStoreParameters + { + const string _bridgeClassName = "java.security.cert.URICertStoreParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URICertStoreParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URICertStoreParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URICertStoreParameters implementation public partial class URICertStoreParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/X509CRL.cs b/src/net/JNet/Generated/Java/Security/Cert/X509CRL.cs index 3a7f41f9f2..e82c56ec6a 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/X509CRL.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/X509CRL.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region X509CRL + #region X509CRL declaration + /// + /// + /// + public partial class X509CRL : Java.Security.Cert.CRL + { + const string _bridgeClassName = "java.security.cert.X509CRL"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509CRL() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509CRL class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509CRL(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509CRL implementation public partial class X509CRL { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/X509CRLEntry.cs b/src/net/JNet/Generated/Java/Security/Cert/X509CRLEntry.cs index 452e1c101c..db7a3da46d 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/X509CRLEntry.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/X509CRLEntry.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region X509CRLEntry + #region X509CRLEntry declaration + /// + /// + /// + public partial class X509CRLEntry : Java.Security.Cert.X509Extension + { + const string _bridgeClassName = "java.security.cert.X509CRLEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509CRLEntry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509CRLEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509CRLEntry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509CRLEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509CRLEntry implementation public partial class X509CRLEntry { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/X509CRLSelector.cs b/src/net/JNet/Generated/Java/Security/Cert/X509CRLSelector.cs index 7c69847e41..e5b696d1ac 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/X509CRLSelector.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/X509CRLSelector.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region X509CRLSelector + #region X509CRLSelector declaration + /// + /// + /// + public partial class X509CRLSelector : Java.Security.Cert.CRLSelector + { + const string _bridgeClassName = "java.security.cert.X509CRLSelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public X509CRLSelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public X509CRLSelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509CRLSelector implementation public partial class X509CRLSelector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/X509CertSelector.cs b/src/net/JNet/Generated/Java/Security/Cert/X509CertSelector.cs index 590eb6a15a..55fbd9e9c9 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/X509CertSelector.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/X509CertSelector.cs @@ -25,7 +25,52 @@ namespace Java.Security.Cert { - #region X509CertSelector + #region X509CertSelector declaration + /// + /// + /// + public partial class X509CertSelector : Java.Security.Cert.CertSelector + { + const string _bridgeClassName = "java.security.cert.X509CertSelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public X509CertSelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public X509CertSelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509CertSelector implementation public partial class X509CertSelector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/X509Certificate.cs b/src/net/JNet/Generated/Java/Security/Cert/X509Certificate.cs index e326f5f8d2..c9205512fc 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/X509Certificate.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/X509Certificate.cs @@ -25,7 +25,54 @@ namespace Java.Security.Cert { - #region X509Certificate + #region X509Certificate declaration + /// + /// + /// + public partial class X509Certificate : Java.Security.Cert.Certificate + { + const string _bridgeClassName = "java.security.cert.X509Certificate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509Certificate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509Certificate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509Certificate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509Certificate implementation public partial class X509Certificate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Cert/X509Extension.cs b/src/net/JNet/Generated/Java/Security/Cert/X509Extension.cs index 4e47bc0f2e..9ddd886092 100644 --- a/src/net/JNet/Generated/Java/Security/Cert/X509Extension.cs +++ b/src/net/JNet/Generated/Java/Security/Cert/X509Extension.cs @@ -25,6 +25,53 @@ namespace Java.Security.Cert { + #region X509Extension declaration + /// + /// + /// + public partial class X509Extension : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.cert.X509Extension"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509Extension() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509Extension class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509Extension(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IX509Extension /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +109,7 @@ public partial interface IX509Extension } #endregion - #region X509Extension + #region X509Extension implementation public partial class X509Extension : Java.Security.Cert.IX509Extension { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/CodeSigner.cs b/src/net/JNet/Generated/Java/Security/CodeSigner.cs index da57ced066..11dcf5ab99 100644 --- a/src/net/JNet/Generated/Java/Security/CodeSigner.cs +++ b/src/net/JNet/Generated/Java/Security/CodeSigner.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region CodeSigner + #region CodeSigner declaration + /// + /// + /// + public partial class CodeSigner : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.CodeSigner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CodeSigner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CodeSigner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CodeSigner implementation public partial class CodeSigner { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/CodeSource.cs b/src/net/JNet/Generated/Java/Security/CodeSource.cs index 5a20f6ebdf..98cc9489d2 100644 --- a/src/net/JNet/Generated/Java/Security/CodeSource.cs +++ b/src/net/JNet/Generated/Java/Security/CodeSource.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region CodeSource + #region CodeSource declaration + /// + /// + /// + public partial class CodeSource : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.CodeSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CodeSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CodeSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CodeSource implementation public partial class CodeSource { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/CryptoPrimitive.cs b/src/net/JNet/Generated/Java/Security/CryptoPrimitive.cs index 3e30589b22..a1a64e4f8e 100644 --- a/src/net/JNet/Generated/Java/Security/CryptoPrimitive.cs +++ b/src/net/JNet/Generated/Java/Security/CryptoPrimitive.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region CryptoPrimitive + #region CryptoPrimitive declaration + /// + /// + /// + public partial class CryptoPrimitive : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.CryptoPrimitive"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CryptoPrimitive() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CryptoPrimitive(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CryptoPrimitive implementation public partial class CryptoPrimitive { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/DigestException.cs b/src/net/JNet/Generated/Java/Security/DigestException.cs index f84cf3ae59..3c8e486ec1 100644 --- a/src/net/JNet/Generated/Java/Security/DigestException.cs +++ b/src/net/JNet/Generated/Java/Security/DigestException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region DigestException + #region DigestException declaration + /// + /// + /// + public partial class DigestException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.DigestException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DigestException implementation public partial class DigestException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/DigestInputStream.cs b/src/net/JNet/Generated/Java/Security/DigestInputStream.cs index 4251d0d4c7..2f86b8a321 100644 --- a/src/net/JNet/Generated/Java/Security/DigestInputStream.cs +++ b/src/net/JNet/Generated/Java/Security/DigestInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region DigestInputStream + #region DigestInputStream declaration + /// + /// + /// + public partial class DigestInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.security.DigestInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DigestInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DigestInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DigestInputStream implementation public partial class DigestInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/DigestOutputStream.cs b/src/net/JNet/Generated/Java/Security/DigestOutputStream.cs index 2efb0b3540..835868ccc7 100644 --- a/src/net/JNet/Generated/Java/Security/DigestOutputStream.cs +++ b/src/net/JNet/Generated/Java/Security/DigestOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region DigestOutputStream + #region DigestOutputStream declaration + /// + /// + /// + public partial class DigestOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.security.DigestOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DigestOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DigestOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DigestOutputStream implementation public partial class DigestOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/DomainCombiner.cs b/src/net/JNet/Generated/Java/Security/DomainCombiner.cs index 9ce057f9df..4796c73a16 100644 --- a/src/net/JNet/Generated/Java/Security/DomainCombiner.cs +++ b/src/net/JNet/Generated/Java/Security/DomainCombiner.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region DomainCombiner declaration + /// + /// + /// + public partial class DomainCombiner : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.DomainCombiner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DomainCombiner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DomainCombiner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DomainCombiner class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DomainCombiner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDomainCombiner /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IDomainCombiner } #endregion - #region DomainCombiner + #region DomainCombiner implementation public partial class DomainCombiner : Java.Security.IDomainCombiner { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/DomainLoadStoreParameter.cs b/src/net/JNet/Generated/Java/Security/DomainLoadStoreParameter.cs index c623918b59..4c4ee8beee 100644 --- a/src/net/JNet/Generated/Java/Security/DomainLoadStoreParameter.cs +++ b/src/net/JNet/Generated/Java/Security/DomainLoadStoreParameter.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region DomainLoadStoreParameter + #region DomainLoadStoreParameter declaration + /// + /// + /// + public partial class DomainLoadStoreParameter : Java.Security.KeyStore.LoadStoreParameter + { + const string _bridgeClassName = "java.security.DomainLoadStoreParameter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DomainLoadStoreParameter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DomainLoadStoreParameter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DomainLoadStoreParameter implementation public partial class DomainLoadStoreParameter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/DrbgParameters.cs b/src/net/JNet/Generated/Java/Security/DrbgParameters.cs index 09cba7b72f..5d45c279a2 100644 --- a/src/net/JNet/Generated/Java/Security/DrbgParameters.cs +++ b/src/net/JNet/Generated/Java/Security/DrbgParameters.cs @@ -25,7 +25,232 @@ namespace Java.Security { - #region DrbgParameters + #region DrbgParameters declaration + /// + /// + /// + public partial class DrbgParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.DrbgParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DrbgParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DrbgParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Capability declaration + /// + /// + /// + public partial class Capability : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.DrbgParameters$Capability"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Capability() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Capability(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Instantiation declaration + /// + /// + /// + public partial class Instantiation : Java.Security.SecureRandomParameters + { + const string _bridgeClassName = "java.security.DrbgParameters$Instantiation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Instantiation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Instantiation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region NextBytes declaration + /// + /// + /// + public partial class NextBytes : Java.Security.SecureRandomParameters + { + const string _bridgeClassName = "java.security.DrbgParameters$NextBytes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NextBytes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NextBytes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Reseed declaration + /// + /// + /// + public partial class Reseed : Java.Security.SecureRandomParameters + { + const string _bridgeClassName = "java.security.DrbgParameters$Reseed"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Reseed() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Reseed(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DrbgParameters implementation public partial class DrbgParameters { #region Constructors @@ -81,7 +306,7 @@ public static Java.Security.DrbgParameters.Reseed ReseedMethod(bool arg0, byte[] #endregion #region Nested classes - #region Capability + #region Capability implementation public partial class Capability { #region Constructors @@ -163,7 +388,7 @@ public bool SupportsReseeding() } #endregion - #region Instantiation + #region Instantiation implementation public partial class Instantiation { #region Constructors @@ -215,7 +440,7 @@ public int Strength } #endregion - #region NextBytes + #region NextBytes implementation public partial class NextBytes { #region Constructors @@ -267,7 +492,7 @@ public int Strength } #endregion - #region Reseed + #region Reseed implementation public partial class Reseed { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/GeneralSecurityException.cs b/src/net/JNet/Generated/Java/Security/GeneralSecurityException.cs index c1842d3bae..6bc0eeeebd 100644 --- a/src/net/JNet/Generated/Java/Security/GeneralSecurityException.cs +++ b/src/net/JNet/Generated/Java/Security/GeneralSecurityException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region GeneralSecurityException + #region GeneralSecurityException declaration + /// + /// + /// + public partial class GeneralSecurityException : Java.Lang.Exception + { + const string _bridgeClassName = "java.security.GeneralSecurityException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region GeneralSecurityException implementation public partial class GeneralSecurityException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Guard.cs b/src/net/JNet/Generated/Java/Security/Guard.cs index a87d9edd0c..e58e5e4e32 100644 --- a/src/net/JNet/Generated/Java/Security/Guard.cs +++ b/src/net/JNet/Generated/Java/Security/Guard.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region Guard declaration + /// + /// + /// + public partial class Guard : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Guard"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Guard class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Guard() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Guard class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Guard(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGuard /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IGuard } #endregion - #region Guard + #region Guard implementation public partial class Guard : Java.Security.IGuard { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/GuardedObject.cs b/src/net/JNet/Generated/Java/Security/GuardedObject.cs index 86640bc4d3..6eb38e2e10 100644 --- a/src/net/JNet/Generated/Java/Security/GuardedObject.cs +++ b/src/net/JNet/Generated/Java/Security/GuardedObject.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region GuardedObject + #region GuardedObject declaration + /// + /// + /// + public partial class GuardedObject : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.GuardedObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GuardedObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GuardedObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GuardedObject implementation public partial class GuardedObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Security/Interfaces/AllPackageClasses.cs deleted file mode 100644 index 104555e1e6..0000000000 --- a/src/net/JNet/Generated/Java/Security/Interfaces/AllPackageClasses.cs +++ /dev/null @@ -1,782 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Security.Interfaces -{ - #region DSAKey - /// - /// - /// - public partial class DSAKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.DSAKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAKeyPairGenerator - /// - /// - /// - public partial class DSAKeyPairGenerator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.DSAKeyPairGenerator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DSAKeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAKeyPairGenerator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DSAKeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAKeyPairGenerator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAParams - /// - /// - /// - public partial class DSAParams : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.DSAParams"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DSAParams class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAParams() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DSAParams class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAParams(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAPrivateKey - /// - /// - /// - public partial class DSAPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.DSAPrivateKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAPrivateKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAPrivateKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAPublicKey - /// - /// - /// - public partial class DSAPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.DSAPublicKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAPublicKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DSAPublicKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECKey - /// - /// - /// - public partial class ECKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.ECKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECPrivateKey - /// - /// - /// - public partial class ECPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.ECPrivateKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECPrivateKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECPrivateKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECPublicKey - /// - /// - /// - public partial class ECPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.ECPublicKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECPublicKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECPublicKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAKey - /// - /// - /// - public partial class RSAKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.RSAKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAMultiPrimePrivateCrtKey - /// - /// - /// - public partial class RSAMultiPrimePrivateCrtKey : Java.Security.Interfaces.RSAPrivateKey - { - const string _bridgeClassName = "java.security.interfaces.RSAMultiPrimePrivateCrtKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RSAMultiPrimePrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAMultiPrimePrivateCrtKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RSAMultiPrimePrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAMultiPrimePrivateCrtKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAPrivateCrtKey - /// - /// - /// - public partial class RSAPrivateCrtKey : Java.Security.Interfaces.RSAPrivateKey - { - const string _bridgeClassName = "java.security.interfaces.RSAPrivateCrtKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RSAPrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAPrivateCrtKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RSAPrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAPrivateCrtKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAPrivateKey - /// - /// - /// - public partial class RSAPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.RSAPrivateKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAPrivateKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAPrivateKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAPublicKey - /// - /// - /// - public partial class RSAPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.RSAPublicKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAPublicKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RSAPublicKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XECKey - /// - /// - /// - public partial class XECKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.XECKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XECKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XECKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XECPrivateKey - /// - /// - /// - public partial class XECPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.XECPrivateKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XECPrivateKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XECPrivateKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XECPublicKey - /// - /// - /// - public partial class XECPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.interfaces.XECPublicKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XECPublicKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XECPublicKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/DSAKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/DSAKey.cs index 1e2a1e0157..5a8bd95ee4 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/DSAKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/DSAKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region DSAKey declaration + /// + /// + /// + public partial class DSAKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.DSAKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDSAKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDSAKey } #endregion - #region DSAKey + #region DSAKey implementation public partial class DSAKey : Java.Security.Interfaces.IDSAKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/DSAKeyPairGenerator.cs b/src/net/JNet/Generated/Java/Security/Interfaces/DSAKeyPairGenerator.cs index ad03719c5e..afa24bf06c 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/DSAKeyPairGenerator.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/DSAKeyPairGenerator.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region DSAKeyPairGenerator declaration + /// + /// + /// + public partial class DSAKeyPairGenerator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.DSAKeyPairGenerator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DSAKeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAKeyPairGenerator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DSAKeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAKeyPairGenerator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDSAKeyPairGenerator /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IDSAKeyPairGenerator } #endregion - #region DSAKeyPairGenerator + #region DSAKeyPairGenerator implementation public partial class DSAKeyPairGenerator : Java.Security.Interfaces.IDSAKeyPairGenerator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/DSAParams.cs b/src/net/JNet/Generated/Java/Security/Interfaces/DSAParams.cs index 7c9078938a..ffe40acb39 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/DSAParams.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/DSAParams.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region DSAParams declaration + /// + /// + /// + public partial class DSAParams : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.DSAParams"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DSAParams class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAParams() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DSAParams class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAParams(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDSAParams /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IDSAParams } #endregion - #region DSAParams + #region DSAParams implementation public partial class DSAParams : Java.Security.Interfaces.IDSAParams { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/DSAPrivateKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/DSAPrivateKey.cs index 93484a8d60..9b49a397d6 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/DSAPrivateKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/DSAPrivateKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region DSAPrivateKey declaration + /// + /// + /// + public partial class DSAPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.DSAPrivateKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAPrivateKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAPrivateKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDSAPrivateKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDSAPrivateKey } #endregion - #region DSAPrivateKey + #region DSAPrivateKey implementation public partial class DSAPrivateKey : Java.Security.Interfaces.IDSAPrivateKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/DSAPublicKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/DSAPublicKey.cs index e57ce00700..e35393a613 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/DSAPublicKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/DSAPublicKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region DSAPublicKey declaration + /// + /// + /// + public partial class DSAPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.DSAPublicKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAPublicKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DSAPublicKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDSAPublicKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDSAPublicKey } #endregion - #region DSAPublicKey + #region DSAPublicKey implementation public partial class DSAPublicKey : Java.Security.Interfaces.IDSAPublicKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/ECKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/ECKey.cs index b8c2c48bf9..3e779686f8 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/ECKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/ECKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region ECKey declaration + /// + /// + /// + public partial class ECKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.ECKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IECKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IECKey } #endregion - #region ECKey + #region ECKey implementation public partial class ECKey : Java.Security.Interfaces.IECKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/ECPrivateKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/ECPrivateKey.cs index b80ae78b1c..b1a4da812c 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/ECPrivateKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/ECPrivateKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region ECPrivateKey declaration + /// + /// + /// + public partial class ECPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.ECPrivateKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECPrivateKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECPrivateKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IECPrivateKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IECPrivateKey } #endregion - #region ECPrivateKey + #region ECPrivateKey implementation public partial class ECPrivateKey : Java.Security.Interfaces.IECPrivateKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/ECPublicKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/ECPublicKey.cs index 24ba8e0e37..3b2eac1b22 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/ECPublicKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/ECPublicKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region ECPublicKey declaration + /// + /// + /// + public partial class ECPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.ECPublicKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECPublicKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECPublicKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IECPublicKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IECPublicKey } #endregion - #region ECPublicKey + #region ECPublicKey implementation public partial class ECPublicKey : Java.Security.Interfaces.IECPublicKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/RSAKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/RSAKey.cs index 8e762c07ea..76c3754267 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/RSAKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/RSAKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region RSAKey declaration + /// + /// + /// + public partial class RSAKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.RSAKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RSAKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRSAKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IRSAKey } #endregion - #region RSAKey + #region RSAKey implementation public partial class RSAKey : Java.Security.Interfaces.IRSAKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/RSAMultiPrimePrivateCrtKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/RSAMultiPrimePrivateCrtKey.cs index dd7fdd977b..fa9028afcf 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/RSAMultiPrimePrivateCrtKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/RSAMultiPrimePrivateCrtKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region RSAMultiPrimePrivateCrtKey declaration + /// + /// + /// + public partial class RSAMultiPrimePrivateCrtKey : Java.Security.Interfaces.RSAPrivateKey + { + const string _bridgeClassName = "java.security.interfaces.RSAMultiPrimePrivateCrtKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RSAMultiPrimePrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAMultiPrimePrivateCrtKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RSAMultiPrimePrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAMultiPrimePrivateCrtKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRSAMultiPrimePrivateCrtKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IRSAMultiPrimePrivateCrtKey : Java.Security.Interfaces. } #endregion - #region RSAMultiPrimePrivateCrtKey + #region RSAMultiPrimePrivateCrtKey implementation public partial class RSAMultiPrimePrivateCrtKey : Java.Security.Interfaces.IRSAMultiPrimePrivateCrtKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateCrtKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateCrtKey.cs index f0e84e60fe..a8425d7e46 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateCrtKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateCrtKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region RSAPrivateCrtKey declaration + /// + /// + /// + public partial class RSAPrivateCrtKey : Java.Security.Interfaces.RSAPrivateKey + { + const string _bridgeClassName = "java.security.interfaces.RSAPrivateCrtKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RSAPrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAPrivateCrtKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RSAPrivateCrtKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAPrivateCrtKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRSAPrivateCrtKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IRSAPrivateCrtKey : Java.Security.Interfaces.IRSAPrivat } #endregion - #region RSAPrivateCrtKey + #region RSAPrivateCrtKey implementation public partial class RSAPrivateCrtKey : Java.Security.Interfaces.IRSAPrivateCrtKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateKey.cs index 895139b2e6..a66cf3c0a3 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/RSAPrivateKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region RSAPrivateKey declaration + /// + /// + /// + public partial class RSAPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.RSAPrivateKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAPrivateKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RSAPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAPrivateKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRSAPrivateKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IRSAPrivateKey } #endregion - #region RSAPrivateKey + #region RSAPrivateKey implementation public partial class RSAPrivateKey : Java.Security.Interfaces.IRSAPrivateKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/RSAPublicKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/RSAPublicKey.cs index bdfa9ec048..f88e08a7b3 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/RSAPublicKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/RSAPublicKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region RSAPublicKey declaration + /// + /// + /// + public partial class RSAPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.RSAPublicKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAPublicKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RSAPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RSAPublicKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRSAPublicKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IRSAPublicKey } #endregion - #region RSAPublicKey + #region RSAPublicKey implementation public partial class RSAPublicKey : Java.Security.Interfaces.IRSAPublicKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/XECKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/XECKey.cs index 9110c01f09..2bc9ef77ea 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/XECKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/XECKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region XECKey declaration + /// + /// + /// + public partial class XECKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.XECKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XECKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XECKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XECKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXECKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IXECKey } #endregion - #region XECKey + #region XECKey implementation public partial class XECKey : Java.Security.Interfaces.IXECKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/XECPrivateKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/XECPrivateKey.cs index a6097c6810..057675f2ad 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/XECPrivateKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/XECPrivateKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region XECPrivateKey declaration + /// + /// + /// + public partial class XECPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.XECPrivateKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XECPrivateKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XECPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XECPrivateKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXECPrivateKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IXECPrivateKey } #endregion - #region XECPrivateKey + #region XECPrivateKey implementation public partial class XECPrivateKey : Java.Security.Interfaces.IXECPrivateKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Interfaces/XECPublicKey.cs b/src/net/JNet/Generated/Java/Security/Interfaces/XECPublicKey.cs index 93e4473d94..9936705e12 100644 --- a/src/net/JNet/Generated/Java/Security/Interfaces/XECPublicKey.cs +++ b/src/net/JNet/Generated/Java/Security/Interfaces/XECPublicKey.cs @@ -25,6 +25,53 @@ namespace Java.Security.Interfaces { + #region XECPublicKey declaration + /// + /// + /// + public partial class XECPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.interfaces.XECPublicKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XECPublicKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XECPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XECPublicKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXECPublicKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IXECPublicKey } #endregion - #region XECPublicKey + #region XECPublicKey implementation public partial class XECPublicKey : Java.Security.Interfaces.IXECPublicKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/InvalidAlgorithmParameterException.cs b/src/net/JNet/Generated/Java/Security/InvalidAlgorithmParameterException.cs index 57a2a8bd52..56c063a5cd 100644 --- a/src/net/JNet/Generated/Java/Security/InvalidAlgorithmParameterException.cs +++ b/src/net/JNet/Generated/Java/Security/InvalidAlgorithmParameterException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region InvalidAlgorithmParameterException + #region InvalidAlgorithmParameterException declaration + /// + /// + /// + public partial class InvalidAlgorithmParameterException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.InvalidAlgorithmParameterException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidAlgorithmParameterException implementation public partial class InvalidAlgorithmParameterException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/InvalidKeyException.cs b/src/net/JNet/Generated/Java/Security/InvalidKeyException.cs index 47a9a54cf4..32845678dc 100644 --- a/src/net/JNet/Generated/Java/Security/InvalidKeyException.cs +++ b/src/net/JNet/Generated/Java/Security/InvalidKeyException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region InvalidKeyException + #region InvalidKeyException declaration + /// + /// + /// + public partial class InvalidKeyException : Java.Security.KeyException + { + const string _bridgeClassName = "java.security.InvalidKeyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidKeyException implementation public partial class InvalidKeyException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/InvalidParameterException.cs b/src/net/JNet/Generated/Java/Security/InvalidParameterException.cs index 8922b6cef2..64028aab13 100644 --- a/src/net/JNet/Generated/Java/Security/InvalidParameterException.cs +++ b/src/net/JNet/Generated/Java/Security/InvalidParameterException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region InvalidParameterException + #region InvalidParameterException declaration + /// + /// + /// + public partial class InvalidParameterException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.security.InvalidParameterException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidParameterException implementation public partial class InvalidParameterException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Key.cs b/src/net/JNet/Generated/Java/Security/Key.cs index ef726a5332..011998deb8 100644 --- a/src/net/JNet/Generated/Java/Security/Key.cs +++ b/src/net/JNet/Generated/Java/Security/Key.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region Key declaration + /// + /// + /// + public partial class Key : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.Key"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Key() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Key class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Key(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IKey : Java.Io.ISerializable } #endregion - #region Key + #region Key implementation public partial class Key : Java.Security.IKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyException.cs b/src/net/JNet/Generated/Java/Security/KeyException.cs index f84975a17d..b7cede2143 100644 --- a/src/net/JNet/Generated/Java/Security/KeyException.cs +++ b/src/net/JNet/Generated/Java/Security/KeyException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region KeyException + #region KeyException declaration + /// + /// + /// + public partial class KeyException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.KeyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region KeyException implementation public partial class KeyException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyFactory.cs b/src/net/JNet/Generated/Java/Security/KeyFactory.cs index 658c578341..9cce59b49e 100644 --- a/src/net/JNet/Generated/Java/Security/KeyFactory.cs +++ b/src/net/JNet/Generated/Java/Security/KeyFactory.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region KeyFactory + #region KeyFactory declaration + /// + /// + /// + public partial class KeyFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyFactory implementation public partial class KeyFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyFactorySpi.cs b/src/net/JNet/Generated/Java/Security/KeyFactorySpi.cs index d4ad303056..51ca72e2d7 100644 --- a/src/net/JNet/Generated/Java/Security/KeyFactorySpi.cs +++ b/src/net/JNet/Generated/Java/Security/KeyFactorySpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region KeyFactorySpi + #region KeyFactorySpi declaration + /// + /// + /// + public partial class KeyFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyFactorySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyFactorySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyFactorySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyFactorySpi implementation public partial class KeyFactorySpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyManagementException.cs b/src/net/JNet/Generated/Java/Security/KeyManagementException.cs index 562fa938c0..94526957b5 100644 --- a/src/net/JNet/Generated/Java/Security/KeyManagementException.cs +++ b/src/net/JNet/Generated/Java/Security/KeyManagementException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region KeyManagementException + #region KeyManagementException declaration + /// + /// + /// + public partial class KeyManagementException : Java.Security.KeyException + { + const string _bridgeClassName = "java.security.KeyManagementException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region KeyManagementException implementation public partial class KeyManagementException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyPair.cs b/src/net/JNet/Generated/Java/Security/KeyPair.cs index 8cd93c7fd8..4e1f9b468d 100644 --- a/src/net/JNet/Generated/Java/Security/KeyPair.cs +++ b/src/net/JNet/Generated/Java/Security/KeyPair.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region KeyPair + #region KeyPair declaration + /// + /// + /// + public partial class KeyPair : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.KeyPair"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyPair() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyPair(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyPair implementation public partial class KeyPair { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyPairGenerator.cs b/src/net/JNet/Generated/Java/Security/KeyPairGenerator.cs index 278feeb587..4fbcabfa91 100644 --- a/src/net/JNet/Generated/Java/Security/KeyPairGenerator.cs +++ b/src/net/JNet/Generated/Java/Security/KeyPairGenerator.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region KeyPairGenerator + #region KeyPairGenerator declaration + /// + /// + /// + public partial class KeyPairGenerator : Java.Security.KeyPairGeneratorSpi + { + const string _bridgeClassName = "java.security.KeyPairGenerator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyPairGenerator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyPairGenerator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyPairGenerator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyPairGenerator implementation public partial class KeyPairGenerator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyPairGeneratorSpi.cs b/src/net/JNet/Generated/Java/Security/KeyPairGeneratorSpi.cs index 2b78d08f0a..257409f023 100644 --- a/src/net/JNet/Generated/Java/Security/KeyPairGeneratorSpi.cs +++ b/src/net/JNet/Generated/Java/Security/KeyPairGeneratorSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region KeyPairGeneratorSpi + #region KeyPairGeneratorSpi declaration + /// + /// + /// + public partial class KeyPairGeneratorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyPairGeneratorSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyPairGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyPairGeneratorSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyPairGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyPairGeneratorSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyPairGeneratorSpi implementation public partial class KeyPairGeneratorSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyRep.cs b/src/net/JNet/Generated/Java/Security/KeyRep.cs index f44800d2fa..2ee8a1ac23 100644 --- a/src/net/JNet/Generated/Java/Security/KeyRep.cs +++ b/src/net/JNet/Generated/Java/Security/KeyRep.cs @@ -25,7 +25,97 @@ namespace Java.Security { - #region KeyRep + #region KeyRep declaration + /// + /// + /// + public partial class KeyRep : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.KeyRep"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyRep() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyRep(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Java.Lang.Enum + { + const string _bridgeClassName = "java.security.KeyRep$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region KeyRep implementation public partial class KeyRep { #region Constructors @@ -60,7 +150,7 @@ public KeyRep(Java.Security.KeyRep.Type arg0, Java.Lang.String arg1, Java.Lang.S #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyStore.cs b/src/net/JNet/Generated/Java/Security/KeyStore.cs index fbc91e4e58..dff9f550f3 100644 --- a/src/net/JNet/Generated/Java/Security/KeyStore.cs +++ b/src/net/JNet/Generated/Java/Security/KeyStore.cs @@ -25,7 +25,512 @@ namespace Java.Security { - #region KeyStore + #region KeyStore declaration + /// + /// + /// + public partial class KeyStore : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyStore() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyStore(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Builder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CallbackHandlerProtection declaration + /// + /// + /// + public partial class CallbackHandlerProtection : Java.Security.KeyStore.ProtectionParameter + { + const string _bridgeClassName = "java.security.KeyStore$CallbackHandlerProtection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CallbackHandlerProtection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CallbackHandlerProtection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Entry declaration + /// + /// + /// + public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore$Entry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + #region Attribute declaration + /// + /// + /// + public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore$Entry$Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region LoadStoreParameter declaration + /// + /// + /// + public partial class LoadStoreParameter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore$LoadStoreParameter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LoadStoreParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LoadStoreParameter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LoadStoreParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LoadStoreParameter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PasswordProtection declaration + /// + /// + /// + public partial class PasswordProtection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore$PasswordProtection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PasswordProtection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PasswordProtection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PrivateKeyEntry declaration + /// + /// + /// + public partial class PrivateKeyEntry : Java.Security.KeyStore.Entry + { + const string _bridgeClassName = "java.security.KeyStore$PrivateKeyEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrivateKeyEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrivateKeyEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ProtectionParameter declaration + /// + /// + /// + public partial class ProtectionParameter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStore$ProtectionParameter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProtectionParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProtectionParameter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProtectionParameter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProtectionParameter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SecretKeyEntry declaration + /// + /// + /// + public partial class SecretKeyEntry : Java.Security.KeyStore.Entry + { + const string _bridgeClassName = "java.security.KeyStore$SecretKeyEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecretKeyEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecretKeyEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TrustedCertificateEntry declaration + /// + /// + /// + public partial class TrustedCertificateEntry : Java.Security.KeyStore.Entry + { + const string _bridgeClassName = "java.security.KeyStore$TrustedCertificateEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TrustedCertificateEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TrustedCertificateEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region KeyStore implementation public partial class KeyStore { #region Constructors @@ -357,7 +862,7 @@ public void Store(Java.Security.KeyStore.LoadStoreParameter arg0) #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors @@ -448,7 +953,7 @@ public Java.Security.KeyStore.ProtectionParameter GetProtectionParameter(Java.La } #endregion - #region CallbackHandlerProtection + #region CallbackHandlerProtection implementation public partial class CallbackHandlerProtection { #region Constructors @@ -494,7 +999,7 @@ public Javax.Security.Auth.Callback.CallbackHandler CallbackHandler } #endregion - #region Entry + #region Entry implementation public partial class Entry { #region Constructors @@ -525,7 +1030,7 @@ public Java.Util.Set Attributes #endregion #region Nested classes - #region Attribute + #region Attribute implementation public partial class Attribute { #region Constructors @@ -577,7 +1082,7 @@ public Java.Lang.String Value } #endregion - #region LoadStoreParameter + #region LoadStoreParameter implementation public partial class LoadStoreParameter { #region Constructors @@ -615,7 +1120,7 @@ public Java.Security.KeyStore.ProtectionParameter GetProtectionParameter } #endregion - #region PasswordProtection + #region PasswordProtection implementation public partial class PasswordProtection { #region Constructors @@ -705,7 +1210,7 @@ public void Destroy() } #endregion - #region PrivateKeyEntry + #region PrivateKeyEntry implementation public partial class PrivateKeyEntry { #region Constructors @@ -783,7 +1288,7 @@ public Java.Security.PrivateKey PrivateKey } #endregion - #region ProtectionParameter + #region ProtectionParameter implementation public partial class ProtectionParameter { #region Constructors @@ -814,7 +1319,7 @@ public partial class ProtectionParameter } #endregion - #region SecretKeyEntry + #region SecretKeyEntry implementation public partial class SecretKeyEntry { #region Constructors @@ -876,7 +1381,7 @@ public Javax.Crypto.SecretKey SecretKey } #endregion - #region TrustedCertificateEntry + #region TrustedCertificateEntry implementation public partial class TrustedCertificateEntry { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyStoreException.cs b/src/net/JNet/Generated/Java/Security/KeyStoreException.cs index b3573c1bf1..957e6f1771 100644 --- a/src/net/JNet/Generated/Java/Security/KeyStoreException.cs +++ b/src/net/JNet/Generated/Java/Security/KeyStoreException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region KeyStoreException + #region KeyStoreException declaration + /// + /// + /// + public partial class KeyStoreException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.KeyStoreException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region KeyStoreException implementation public partial class KeyStoreException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/KeyStoreSpi.cs b/src/net/JNet/Generated/Java/Security/KeyStoreSpi.cs index d320434b41..e1610f2afe 100644 --- a/src/net/JNet/Generated/Java/Security/KeyStoreSpi.cs +++ b/src/net/JNet/Generated/Java/Security/KeyStoreSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region KeyStoreSpi + #region KeyStoreSpi declaration + /// + /// + /// + public partial class KeyStoreSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.KeyStoreSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyStoreSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyStoreSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyStoreSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyStoreSpi implementation public partial class KeyStoreSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/MessageDigest.cs b/src/net/JNet/Generated/Java/Security/MessageDigest.cs index 4978db67de..0d29eb7afc 100644 --- a/src/net/JNet/Generated/Java/Security/MessageDigest.cs +++ b/src/net/JNet/Generated/Java/Security/MessageDigest.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region MessageDigest + #region MessageDigest declaration + /// + /// + /// + public partial class MessageDigest : Java.Security.MessageDigestSpi + { + const string _bridgeClassName = "java.security.MessageDigest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MessageDigest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MessageDigest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MessageDigest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MessageDigest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MessageDigest implementation public partial class MessageDigest { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/MessageDigestSpi.cs b/src/net/JNet/Generated/Java/Security/MessageDigestSpi.cs index 4b1c2276e9..137efe1f93 100644 --- a/src/net/JNet/Generated/Java/Security/MessageDigestSpi.cs +++ b/src/net/JNet/Generated/Java/Security/MessageDigestSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region MessageDigestSpi + #region MessageDigestSpi declaration + /// + /// + /// + public partial class MessageDigestSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.MessageDigestSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MessageDigestSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MessageDigestSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MessageDigestSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MessageDigestSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MessageDigestSpi implementation public partial class MessageDigestSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/NoSuchAlgorithmException.cs b/src/net/JNet/Generated/Java/Security/NoSuchAlgorithmException.cs index f369ef5f73..48b4447450 100644 --- a/src/net/JNet/Generated/Java/Security/NoSuchAlgorithmException.cs +++ b/src/net/JNet/Generated/Java/Security/NoSuchAlgorithmException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region NoSuchAlgorithmException + #region NoSuchAlgorithmException declaration + /// + /// + /// + public partial class NoSuchAlgorithmException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.NoSuchAlgorithmException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchAlgorithmException implementation public partial class NoSuchAlgorithmException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/NoSuchProviderException.cs b/src/net/JNet/Generated/Java/Security/NoSuchProviderException.cs index fad8669427..91f6207204 100644 --- a/src/net/JNet/Generated/Java/Security/NoSuchProviderException.cs +++ b/src/net/JNet/Generated/Java/Security/NoSuchProviderException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region NoSuchProviderException + #region NoSuchProviderException declaration + /// + /// + /// + public partial class NoSuchProviderException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.NoSuchProviderException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchProviderException implementation public partial class NoSuchProviderException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PKCS12Attribute.cs b/src/net/JNet/Generated/Java/Security/PKCS12Attribute.cs index 08167ebe01..aa59f119cd 100644 --- a/src/net/JNet/Generated/Java/Security/PKCS12Attribute.cs +++ b/src/net/JNet/Generated/Java/Security/PKCS12Attribute.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region PKCS12Attribute + #region PKCS12Attribute declaration + /// + /// + /// + public partial class PKCS12Attribute : Java.Security.KeyStore.Entry.Attribute + { + const string _bridgeClassName = "java.security.PKCS12Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKCS12Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKCS12Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKCS12Attribute implementation public partial class PKCS12Attribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Permission.cs b/src/net/JNet/Generated/Java/Security/Permission.cs index 8a99ce0da3..2996a4d1d1 100644 --- a/src/net/JNet/Generated/Java/Security/Permission.cs +++ b/src/net/JNet/Generated/Java/Security/Permission.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region Permission + #region Permission declaration + /// + /// + /// + public partial class Permission : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Permission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Permission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Permission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Permission class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Permission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Permission implementation public partial class Permission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PermissionCollection.cs b/src/net/JNet/Generated/Java/Security/PermissionCollection.cs index cca360fad7..16fb74bcf1 100644 --- a/src/net/JNet/Generated/Java/Security/PermissionCollection.cs +++ b/src/net/JNet/Generated/Java/Security/PermissionCollection.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region PermissionCollection + #region PermissionCollection declaration + /// + /// + /// + public partial class PermissionCollection : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.PermissionCollection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PermissionCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PermissionCollection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PermissionCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PermissionCollection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PermissionCollection implementation public partial class PermissionCollection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Permissions.cs b/src/net/JNet/Generated/Java/Security/Permissions.cs index 2f0b2a561f..f4387a7af9 100644 --- a/src/net/JNet/Generated/Java/Security/Permissions.cs +++ b/src/net/JNet/Generated/Java/Security/Permissions.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region Permissions + #region Permissions declaration + /// + /// + /// + public partial class Permissions : Java.Security.PermissionCollection + { + const string _bridgeClassName = "java.security.Permissions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Permissions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Permissions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Permissions implementation public partial class Permissions { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Policy.cs b/src/net/JNet/Generated/Java/Security/Policy.cs index 06f9a09b7d..5d2ea816fb 100644 --- a/src/net/JNet/Generated/Java/Security/Policy.cs +++ b/src/net/JNet/Generated/Java/Security/Policy.cs @@ -25,7 +25,101 @@ namespace Java.Security { - #region Policy + #region Policy declaration + /// + /// + /// + public partial class Policy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Policy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Policy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Policy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Policy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Policy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Parameters declaration + /// + /// + /// + public partial class Parameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Policy$Parameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Policy implementation public partial class Policy { #region Constructors @@ -162,7 +256,7 @@ public void Refresh() #endregion #region Nested classes - #region Parameters + #region Parameters implementation public partial class Parameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PolicySpi.cs b/src/net/JNet/Generated/Java/Security/PolicySpi.cs index 4eaf846309..e072821d0e 100644 --- a/src/net/JNet/Generated/Java/Security/PolicySpi.cs +++ b/src/net/JNet/Generated/Java/Security/PolicySpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region PolicySpi + #region PolicySpi declaration + /// + /// + /// + public partial class PolicySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.PolicySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PolicySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PolicySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PolicySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PolicySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PolicySpi implementation public partial class PolicySpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Principal.cs b/src/net/JNet/Generated/Java/Security/Principal.cs index f1db7a7a5c..2b14745555 100644 --- a/src/net/JNet/Generated/Java/Security/Principal.cs +++ b/src/net/JNet/Generated/Java/Security/Principal.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region Principal declaration + /// + /// + /// + public partial class Principal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Principal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Principal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Principal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Principal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Principal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrincipal /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IPrincipal } #endregion - #region Principal + #region Principal implementation public partial class Principal : Java.Security.IPrincipal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PrivateKey.cs b/src/net/JNet/Generated/Java/Security/PrivateKey.cs index f7deff0e6c..11c3b7f586 100644 --- a/src/net/JNet/Generated/Java/Security/PrivateKey.cs +++ b/src/net/JNet/Generated/Java/Security/PrivateKey.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region PrivateKey declaration + /// + /// + /// + public partial class PrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.PrivateKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivateKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivateKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrivateKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPrivateKey } #endregion - #region PrivateKey + #region PrivateKey implementation public partial class PrivateKey : Java.Security.IPrivateKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PrivilegedAction.cs b/src/net/JNet/Generated/Java/Security/PrivilegedAction.cs index 45d86cfe00..e998faef30 100644 --- a/src/net/JNet/Generated/Java/Security/PrivilegedAction.cs +++ b/src/net/JNet/Generated/Java/Security/PrivilegedAction.cs @@ -25,7 +25,102 @@ namespace Java.Security { - #region PrivilegedAction + #region PrivilegedAction declaration + /// + /// + /// + public partial class PrivilegedAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.PrivilegedAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrivilegedAction declaration + /// + /// + /// + /// + public partial class PrivilegedAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.security.PrivilegedAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrivilegedAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrivilegedAction implementation public partial class PrivilegedAction { #region Constructors @@ -87,7 +182,7 @@ public partial interface IPrivilegedAction } #endregion - #region PrivilegedAction + #region PrivilegedAction implementation public partial class PrivilegedAction : Java.Security.IPrivilegedAction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PrivilegedActionException.cs b/src/net/JNet/Generated/Java/Security/PrivilegedActionException.cs index d9d20b3963..c6caad806d 100644 --- a/src/net/JNet/Generated/Java/Security/PrivilegedActionException.cs +++ b/src/net/JNet/Generated/Java/Security/PrivilegedActionException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region PrivilegedActionException + #region PrivilegedActionException declaration + /// + /// + /// + public partial class PrivilegedActionException : Java.Lang.Exception + { + const string _bridgeClassName = "java.security.PrivilegedActionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PrivilegedActionException implementation public partial class PrivilegedActionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PrivilegedExceptionAction.cs b/src/net/JNet/Generated/Java/Security/PrivilegedExceptionAction.cs index caac110eeb..fee2663c1e 100644 --- a/src/net/JNet/Generated/Java/Security/PrivilegedExceptionAction.cs +++ b/src/net/JNet/Generated/Java/Security/PrivilegedExceptionAction.cs @@ -25,7 +25,102 @@ namespace Java.Security { - #region PrivilegedExceptionAction + #region PrivilegedExceptionAction declaration + /// + /// + /// + public partial class PrivilegedExceptionAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.PrivilegedExceptionAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedExceptionAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedExceptionAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrivilegedExceptionAction declaration + /// + /// + /// + /// + public partial class PrivilegedExceptionAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.security.PrivilegedExceptionAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedExceptionAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrivilegedExceptionAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivilegedExceptionAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrivilegedExceptionAction implementation public partial class PrivilegedExceptionAction { #region Constructors @@ -89,7 +184,7 @@ public partial interface IPrivilegedExceptionAction } #endregion - #region PrivilegedExceptionAction + #region PrivilegedExceptionAction implementation public partial class PrivilegedExceptionAction : Java.Security.IPrivilegedExceptionAction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/ProtectionDomain.cs b/src/net/JNet/Generated/Java/Security/ProtectionDomain.cs index 8336bac552..ae881254a0 100644 --- a/src/net/JNet/Generated/Java/Security/ProtectionDomain.cs +++ b/src/net/JNet/Generated/Java/Security/ProtectionDomain.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region ProtectionDomain + #region ProtectionDomain declaration + /// + /// + /// + public partial class ProtectionDomain : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.ProtectionDomain"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ProtectionDomain() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ProtectionDomain(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ProtectionDomain implementation public partial class ProtectionDomain { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Provider.cs b/src/net/JNet/Generated/Java/Security/Provider.cs index d7c3c9cdb9..519ca52358 100644 --- a/src/net/JNet/Generated/Java/Security/Provider.cs +++ b/src/net/JNet/Generated/Java/Security/Provider.cs @@ -25,7 +25,99 @@ namespace Java.Security { - #region Provider + #region Provider declaration + /// + /// + /// + public partial class Provider : Java.Util.Properties + { + const string _bridgeClassName = "java.security.Provider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Provider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Provider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Provider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Provider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Service declaration + /// + /// + /// + public partial class Service : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Provider$Service"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Service() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Service(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Provider implementation public partial class Provider { #region Constructors @@ -104,7 +196,7 @@ public Java.Security.Provider.Service GetService(Java.Lang.String arg0, Java.Lan #endregion #region Nested classes - #region Service + #region Service implementation public partial class Service { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/ProviderException.cs b/src/net/JNet/Generated/Java/Security/ProviderException.cs index 396a2f549e..d5a40b8ffb 100644 --- a/src/net/JNet/Generated/Java/Security/ProviderException.cs +++ b/src/net/JNet/Generated/Java/Security/ProviderException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region ProviderException + #region ProviderException declaration + /// + /// + /// + public partial class ProviderException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.security.ProviderException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ProviderException implementation public partial class ProviderException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/PublicKey.cs b/src/net/JNet/Generated/Java/Security/PublicKey.cs index f2f918e6d9..8664cc3797 100644 --- a/src/net/JNet/Generated/Java/Security/PublicKey.cs +++ b/src/net/JNet/Generated/Java/Security/PublicKey.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region PublicKey declaration + /// + /// + /// + public partial class PublicKey : Java.Security.Key + { + const string _bridgeClassName = "java.security.PublicKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PublicKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PublicKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPublicKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPublicKey : Java.Security.IKey } #endregion - #region PublicKey + #region PublicKey implementation public partial class PublicKey : Java.Security.IPublicKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SecureClassLoader.cs b/src/net/JNet/Generated/Java/Security/SecureClassLoader.cs index fb62604920..7cf68e388c 100644 --- a/src/net/JNet/Generated/Java/Security/SecureClassLoader.cs +++ b/src/net/JNet/Generated/Java/Security/SecureClassLoader.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region SecureClassLoader + #region SecureClassLoader declaration + /// + /// + /// + public partial class SecureClassLoader : Java.Lang.ClassLoader + { + const string _bridgeClassName = "java.security.SecureClassLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecureClassLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecureClassLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecureClassLoader implementation public partial class SecureClassLoader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SecureRandom.cs b/src/net/JNet/Generated/Java/Security/SecureRandom.cs index 7670ed4e96..3f05b7d314 100644 --- a/src/net/JNet/Generated/Java/Security/SecureRandom.cs +++ b/src/net/JNet/Generated/Java/Security/SecureRandom.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region SecureRandom + #region SecureRandom declaration + /// + /// + /// + public partial class SecureRandom : Java.Util.Random + { + const string _bridgeClassName = "java.security.SecureRandom"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecureRandom() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecureRandom(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecureRandom implementation public partial class SecureRandom { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SecureRandomParameters.cs b/src/net/JNet/Generated/Java/Security/SecureRandomParameters.cs index 2e9f4d0a72..24d50231c8 100644 --- a/src/net/JNet/Generated/Java/Security/SecureRandomParameters.cs +++ b/src/net/JNet/Generated/Java/Security/SecureRandomParameters.cs @@ -25,6 +25,53 @@ namespace Java.Security { + #region SecureRandomParameters declaration + /// + /// + /// + public partial class SecureRandomParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.SecureRandomParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecureRandomParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureRandomParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecureRandomParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureRandomParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISecureRandomParameters /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISecureRandomParameters } #endregion - #region SecureRandomParameters + #region SecureRandomParameters implementation public partial class SecureRandomParameters : Java.Security.ISecureRandomParameters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SecureRandomSpi.cs b/src/net/JNet/Generated/Java/Security/SecureRandomSpi.cs index 995657e25b..04983e3c4e 100644 --- a/src/net/JNet/Generated/Java/Security/SecureRandomSpi.cs +++ b/src/net/JNet/Generated/Java/Security/SecureRandomSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region SecureRandomSpi + #region SecureRandomSpi declaration + /// + /// + /// + public partial class SecureRandomSpi : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.SecureRandomSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecureRandomSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureRandomSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecureRandomSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecureRandomSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecureRandomSpi implementation public partial class SecureRandomSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Security.cs b/src/net/JNet/Generated/Java/Security/Security.cs index e60e3ec4f6..aabe3713b2 100644 --- a/src/net/JNet/Generated/Java/Security/Security.cs +++ b/src/net/JNet/Generated/Java/Security/Security.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region Security + #region Security declaration + /// + /// + /// + public partial class Security : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.Security"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Security() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Security(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Security implementation public partial class Security { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SecurityPermission.cs b/src/net/JNet/Generated/Java/Security/SecurityPermission.cs index 0578dbd199..6bb2004737 100644 --- a/src/net/JNet/Generated/Java/Security/SecurityPermission.cs +++ b/src/net/JNet/Generated/Java/Security/SecurityPermission.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region SecurityPermission + #region SecurityPermission declaration + /// + /// + /// + public partial class SecurityPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.security.SecurityPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecurityPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecurityPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecurityPermission implementation public partial class SecurityPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Signature.cs b/src/net/JNet/Generated/Java/Security/Signature.cs index 72d66d2afc..f1c5479277 100644 --- a/src/net/JNet/Generated/Java/Security/Signature.cs +++ b/src/net/JNet/Generated/Java/Security/Signature.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region Signature + #region Signature declaration + /// + /// + /// + public partial class Signature : Java.Security.SignatureSpi + { + const string _bridgeClassName = "java.security.Signature"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Signature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Signature() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Signature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Signature(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Signature implementation public partial class Signature { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SignatureException.cs b/src/net/JNet/Generated/Java/Security/SignatureException.cs index 06bae5eb7f..6ece5235f3 100644 --- a/src/net/JNet/Generated/Java/Security/SignatureException.cs +++ b/src/net/JNet/Generated/Java/Security/SignatureException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region SignatureException + #region SignatureException declaration + /// + /// + /// + public partial class SignatureException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.SignatureException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SignatureException implementation public partial class SignatureException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SignatureSpi.cs b/src/net/JNet/Generated/Java/Security/SignatureSpi.cs index 2e8495b235..f6820e906b 100644 --- a/src/net/JNet/Generated/Java/Security/SignatureSpi.cs +++ b/src/net/JNet/Generated/Java/Security/SignatureSpi.cs @@ -25,7 +25,54 @@ namespace Java.Security { - #region SignatureSpi + #region SignatureSpi declaration + /// + /// + /// + public partial class SignatureSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.SignatureSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignatureSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignatureSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SignatureSpi implementation public partial class SignatureSpi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/SignedObject.cs b/src/net/JNet/Generated/Java/Security/SignedObject.cs index c9c288a471..f3a70cb94f 100644 --- a/src/net/JNet/Generated/Java/Security/SignedObject.cs +++ b/src/net/JNet/Generated/Java/Security/SignedObject.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region SignedObject + #region SignedObject declaration + /// + /// + /// + public partial class SignedObject : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.SignedObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SignedObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SignedObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SignedObject implementation public partial class SignedObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/AlgorithmParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/AlgorithmParameterSpec.cs index 6b1fafcf0c..b5b8f3bce3 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/AlgorithmParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/AlgorithmParameterSpec.cs @@ -25,6 +25,53 @@ namespace Java.Security.Spec { + #region AlgorithmParameterSpec declaration + /// + /// + /// + public partial class AlgorithmParameterSpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.AlgorithmParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AlgorithmParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AlgorithmParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAlgorithmParameterSpec /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IAlgorithmParameterSpec } #endregion - #region AlgorithmParameterSpec + #region AlgorithmParameterSpec implementation public partial class AlgorithmParameterSpec : Java.Security.Spec.IAlgorithmParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Security/Spec/AllPackageClasses.cs deleted file mode 100644 index 645962e13a..0000000000 --- a/src/net/JNet/Generated/Java/Security/Spec/AllPackageClasses.cs +++ /dev/null @@ -1,1377 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Security.Spec -{ - #region AlgorithmParameterSpec - /// - /// - /// - public partial class AlgorithmParameterSpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.AlgorithmParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AlgorithmParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AlgorithmParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAGenParameterSpec - /// - /// - /// - public partial class DSAGenParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "java.security.spec.DSAGenParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DSAGenParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DSAGenParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAParameterSpec - /// - /// - /// - public partial class DSAParameterSpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.DSAParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DSAParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DSAParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAPrivateKeySpec - /// - /// - /// - public partial class DSAPrivateKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.DSAPrivateKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DSAPrivateKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DSAPrivateKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DSAPublicKeySpec - /// - /// - /// - public partial class DSAPublicKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.DSAPublicKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DSAPublicKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DSAPublicKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECField - /// - /// - /// - public partial class ECField : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.ECField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ECField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ECField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ECField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECFieldF2m - /// - /// - /// - public partial class ECFieldF2m : Java.Security.Spec.ECField - { - const string _bridgeClassName = "java.security.spec.ECFieldF2m"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECFieldF2m() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECFieldF2m(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECFieldFp - /// - /// - /// - public partial class ECFieldFp : Java.Security.Spec.ECField - { - const string _bridgeClassName = "java.security.spec.ECFieldFp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECFieldFp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECFieldFp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECGenParameterSpec - /// - /// - /// - public partial class ECGenParameterSpec : Java.Security.Spec.NamedParameterSpec - { - const string _bridgeClassName = "java.security.spec.ECGenParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECGenParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECGenParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECParameterSpec - /// - /// - /// - public partial class ECParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "java.security.spec.ECParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECPoint - /// - /// - /// - public partial class ECPoint : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.ECPoint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECPoint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECPoint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECPrivateKeySpec - /// - /// - /// - public partial class ECPrivateKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.ECPrivateKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECPrivateKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECPrivateKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ECPublicKeySpec - /// - /// - /// - public partial class ECPublicKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.ECPublicKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ECPublicKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ECPublicKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EllipticCurve - /// - /// - /// - public partial class EllipticCurve : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.EllipticCurve"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EllipticCurve() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EllipticCurve(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EncodedKeySpec - /// - /// - /// - public partial class EncodedKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.EncodedKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EncodedKeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EncodedKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EncodedKeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EncodedKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidKeySpecException - /// - /// - /// - public partial class InvalidKeySpecException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.spec.InvalidKeySpecException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidParameterSpecException - /// - /// - /// - public partial class InvalidParameterSpecException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "java.security.spec.InvalidParameterSpecException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeySpec - /// - /// - /// - public partial class KeySpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.KeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MGF1ParameterSpec - /// - /// - /// - public partial class MGF1ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "java.security.spec.MGF1ParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MGF1ParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MGF1ParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamedParameterSpec - /// - /// - /// - public partial class NamedParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "java.security.spec.NamedParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamedParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NamedParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PKCS8EncodedKeySpec - /// - /// - /// - public partial class PKCS8EncodedKeySpec : Java.Security.Spec.EncodedKeySpec - { - const string _bridgeClassName = "java.security.spec.PKCS8EncodedKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PKCS8EncodedKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PKCS8EncodedKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PSSParameterSpec - /// - /// - /// - public partial class PSSParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "java.security.spec.PSSParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PSSParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PSSParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAKeyGenParameterSpec - /// - /// - /// - public partial class RSAKeyGenParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "java.security.spec.RSAKeyGenParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RSAKeyGenParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RSAKeyGenParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAMultiPrimePrivateCrtKeySpec - /// - /// - /// - public partial class RSAMultiPrimePrivateCrtKeySpec : Java.Security.Spec.RSAPrivateKeySpec - { - const string _bridgeClassName = "java.security.spec.RSAMultiPrimePrivateCrtKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RSAMultiPrimePrivateCrtKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RSAMultiPrimePrivateCrtKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAOtherPrimeInfo - /// - /// - /// - public partial class RSAOtherPrimeInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.security.spec.RSAOtherPrimeInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RSAOtherPrimeInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RSAOtherPrimeInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAPrivateCrtKeySpec - /// - /// - /// - public partial class RSAPrivateCrtKeySpec : Java.Security.Spec.RSAPrivateKeySpec - { - const string _bridgeClassName = "java.security.spec.RSAPrivateCrtKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RSAPrivateCrtKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RSAPrivateCrtKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAPrivateKeySpec - /// - /// - /// - public partial class RSAPrivateKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.RSAPrivateKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RSAPrivateKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RSAPrivateKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RSAPublicKeySpec - /// - /// - /// - public partial class RSAPublicKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.RSAPublicKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RSAPublicKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RSAPublicKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509EncodedKeySpec - /// - /// - /// - public partial class X509EncodedKeySpec : Java.Security.Spec.EncodedKeySpec - { - const string _bridgeClassName = "java.security.spec.X509EncodedKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public X509EncodedKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public X509EncodedKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XECPrivateKeySpec - /// - /// - /// - public partial class XECPrivateKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.XECPrivateKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XECPrivateKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XECPrivateKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XECPublicKeySpec - /// - /// - /// - public partial class XECPublicKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "java.security.spec.XECPublicKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XECPublicKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XECPublicKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Security/Spec/DSAGenParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/DSAGenParameterSpec.cs index 5704a46dd9..6fe7c9a84f 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/DSAGenParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/DSAGenParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region DSAGenParameterSpec + #region DSAGenParameterSpec declaration + /// + /// + /// + public partial class DSAGenParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "java.security.spec.DSAGenParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DSAGenParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DSAGenParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DSAGenParameterSpec implementation public partial class DSAGenParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/DSAParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/DSAParameterSpec.cs index 498818eab1..9d6eda3748 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/DSAParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/DSAParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region DSAParameterSpec + #region DSAParameterSpec declaration + /// + /// + /// + public partial class DSAParameterSpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.DSAParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DSAParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DSAParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DSAParameterSpec implementation public partial class DSAParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/DSAPrivateKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/DSAPrivateKeySpec.cs index 9c59f0b6aa..3d183ac055 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/DSAPrivateKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/DSAPrivateKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region DSAPrivateKeySpec + #region DSAPrivateKeySpec declaration + /// + /// + /// + public partial class DSAPrivateKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.DSAPrivateKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DSAPrivateKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DSAPrivateKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DSAPrivateKeySpec implementation public partial class DSAPrivateKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/DSAPublicKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/DSAPublicKeySpec.cs index 2f97edffde..7c5db7259f 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/DSAPublicKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/DSAPublicKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region DSAPublicKeySpec + #region DSAPublicKeySpec declaration + /// + /// + /// + public partial class DSAPublicKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.DSAPublicKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DSAPublicKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DSAPublicKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DSAPublicKeySpec implementation public partial class DSAPublicKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECField.cs b/src/net/JNet/Generated/Java/Security/Spec/ECField.cs index f790316198..d68528ea0d 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECField.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECField.cs @@ -25,6 +25,53 @@ namespace Java.Security.Spec { + #region ECField declaration + /// + /// + /// + public partial class ECField : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.ECField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ECField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ECField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ECField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IECField /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IECField } #endregion - #region ECField + #region ECField implementation public partial class ECField : Java.Security.Spec.IECField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECFieldF2m.cs b/src/net/JNet/Generated/Java/Security/Spec/ECFieldF2m.cs index 38a0c92bbc..4abd792518 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECFieldF2m.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECFieldF2m.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECFieldF2m + #region ECFieldF2m declaration + /// + /// + /// + public partial class ECFieldF2m : Java.Security.Spec.ECField + { + const string _bridgeClassName = "java.security.spec.ECFieldF2m"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECFieldF2m() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECFieldF2m(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECFieldF2m implementation public partial class ECFieldF2m { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECFieldFp.cs b/src/net/JNet/Generated/Java/Security/Spec/ECFieldFp.cs index 86e70f9f2c..9cf681f982 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECFieldFp.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECFieldFp.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECFieldFp + #region ECFieldFp declaration + /// + /// + /// + public partial class ECFieldFp : Java.Security.Spec.ECField + { + const string _bridgeClassName = "java.security.spec.ECFieldFp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECFieldFp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECFieldFp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECFieldFp implementation public partial class ECFieldFp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECGenParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/ECGenParameterSpec.cs index f9ec1eec86..04511d9506 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECGenParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECGenParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECGenParameterSpec + #region ECGenParameterSpec declaration + /// + /// + /// + public partial class ECGenParameterSpec : Java.Security.Spec.NamedParameterSpec + { + const string _bridgeClassName = "java.security.spec.ECGenParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECGenParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECGenParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECGenParameterSpec implementation public partial class ECGenParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/ECParameterSpec.cs index 4c5b80d0fb..f129778af3 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECParameterSpec + #region ECParameterSpec declaration + /// + /// + /// + public partial class ECParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "java.security.spec.ECParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECParameterSpec implementation public partial class ECParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECPoint.cs b/src/net/JNet/Generated/Java/Security/Spec/ECPoint.cs index a7e9ae5c52..0073f07557 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECPoint.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECPoint.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECPoint + #region ECPoint declaration + /// + /// + /// + public partial class ECPoint : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.ECPoint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECPoint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECPoint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECPoint implementation public partial class ECPoint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECPrivateKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/ECPrivateKeySpec.cs index c6b934497a..676cc32f2d 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECPrivateKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECPrivateKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECPrivateKeySpec + #region ECPrivateKeySpec declaration + /// + /// + /// + public partial class ECPrivateKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.ECPrivateKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECPrivateKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECPrivateKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECPrivateKeySpec implementation public partial class ECPrivateKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/ECPublicKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/ECPublicKeySpec.cs index d3bb003ab9..7420017bc3 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/ECPublicKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/ECPublicKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region ECPublicKeySpec + #region ECPublicKeySpec declaration + /// + /// + /// + public partial class ECPublicKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.ECPublicKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ECPublicKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ECPublicKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ECPublicKeySpec implementation public partial class ECPublicKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/EllipticCurve.cs b/src/net/JNet/Generated/Java/Security/Spec/EllipticCurve.cs index 70af0dec02..cc2202eef0 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/EllipticCurve.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/EllipticCurve.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region EllipticCurve + #region EllipticCurve declaration + /// + /// + /// + public partial class EllipticCurve : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.EllipticCurve"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EllipticCurve() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EllipticCurve(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EllipticCurve implementation public partial class EllipticCurve { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/EncodedKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/EncodedKeySpec.cs index 9f9c5fc1c9..11734fb7fa 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/EncodedKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/EncodedKeySpec.cs @@ -25,7 +25,54 @@ namespace Java.Security.Spec { - #region EncodedKeySpec + #region EncodedKeySpec declaration + /// + /// + /// + public partial class EncodedKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.EncodedKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EncodedKeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EncodedKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EncodedKeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EncodedKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EncodedKeySpec implementation public partial class EncodedKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/InvalidKeySpecException.cs b/src/net/JNet/Generated/Java/Security/Spec/InvalidKeySpecException.cs index 6914b4ce08..b65cfffc96 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/InvalidKeySpecException.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/InvalidKeySpecException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Spec { - #region InvalidKeySpecException + #region InvalidKeySpecException declaration + /// + /// + /// + public partial class InvalidKeySpecException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.spec.InvalidKeySpecException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidKeySpecException implementation public partial class InvalidKeySpecException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/InvalidParameterSpecException.cs b/src/net/JNet/Generated/Java/Security/Spec/InvalidParameterSpecException.cs index 26f363bd39..be1a12f638 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/InvalidParameterSpecException.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/InvalidParameterSpecException.cs @@ -25,7 +25,24 @@ namespace Java.Security.Spec { - #region InvalidParameterSpecException + #region InvalidParameterSpecException declaration + /// + /// + /// + public partial class InvalidParameterSpecException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.spec.InvalidParameterSpecException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidParameterSpecException implementation public partial class InvalidParameterSpecException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/KeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/KeySpec.cs index 65f318ed1c..1a6534d80a 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/KeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/KeySpec.cs @@ -25,6 +25,53 @@ namespace Java.Security.Spec { + #region KeySpec declaration + /// + /// + /// + public partial class KeySpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.KeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeySpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeySpec /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IKeySpec } #endregion - #region KeySpec + #region KeySpec implementation public partial class KeySpec : Java.Security.Spec.IKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/MGF1ParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/MGF1ParameterSpec.cs index 364c119875..2da238112d 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/MGF1ParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/MGF1ParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region MGF1ParameterSpec + #region MGF1ParameterSpec declaration + /// + /// + /// + public partial class MGF1ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "java.security.spec.MGF1ParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MGF1ParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MGF1ParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MGF1ParameterSpec implementation public partial class MGF1ParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/NamedParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/NamedParameterSpec.cs index 2a0bd55076..a8caab8b8f 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/NamedParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/NamedParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region NamedParameterSpec + #region NamedParameterSpec declaration + /// + /// + /// + public partial class NamedParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "java.security.spec.NamedParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamedParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NamedParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamedParameterSpec implementation public partial class NamedParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/PKCS8EncodedKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/PKCS8EncodedKeySpec.cs index 361e9bf992..7d8ee29715 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/PKCS8EncodedKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/PKCS8EncodedKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region PKCS8EncodedKeySpec + #region PKCS8EncodedKeySpec declaration + /// + /// + /// + public partial class PKCS8EncodedKeySpec : Java.Security.Spec.EncodedKeySpec + { + const string _bridgeClassName = "java.security.spec.PKCS8EncodedKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PKCS8EncodedKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PKCS8EncodedKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PKCS8EncodedKeySpec implementation public partial class PKCS8EncodedKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/PSSParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/PSSParameterSpec.cs index 69221a3a7d..b82e2900ee 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/PSSParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/PSSParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region PSSParameterSpec + #region PSSParameterSpec declaration + /// + /// + /// + public partial class PSSParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "java.security.spec.PSSParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PSSParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PSSParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PSSParameterSpec implementation public partial class PSSParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/RSAKeyGenParameterSpec.cs b/src/net/JNet/Generated/Java/Security/Spec/RSAKeyGenParameterSpec.cs index bb0c9ff2b3..69f41b28d4 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/RSAKeyGenParameterSpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/RSAKeyGenParameterSpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region RSAKeyGenParameterSpec + #region RSAKeyGenParameterSpec declaration + /// + /// + /// + public partial class RSAKeyGenParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "java.security.spec.RSAKeyGenParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RSAKeyGenParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RSAKeyGenParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RSAKeyGenParameterSpec implementation public partial class RSAKeyGenParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/RSAMultiPrimePrivateCrtKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/RSAMultiPrimePrivateCrtKeySpec.cs index 7719c68095..9d21314b9b 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/RSAMultiPrimePrivateCrtKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/RSAMultiPrimePrivateCrtKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region RSAMultiPrimePrivateCrtKeySpec + #region RSAMultiPrimePrivateCrtKeySpec declaration + /// + /// + /// + public partial class RSAMultiPrimePrivateCrtKeySpec : Java.Security.Spec.RSAPrivateKeySpec + { + const string _bridgeClassName = "java.security.spec.RSAMultiPrimePrivateCrtKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RSAMultiPrimePrivateCrtKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RSAMultiPrimePrivateCrtKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RSAMultiPrimePrivateCrtKeySpec implementation public partial class RSAMultiPrimePrivateCrtKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/RSAOtherPrimeInfo.cs b/src/net/JNet/Generated/Java/Security/Spec/RSAOtherPrimeInfo.cs index fd511b0f20..f57601c105 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/RSAOtherPrimeInfo.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/RSAOtherPrimeInfo.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region RSAOtherPrimeInfo + #region RSAOtherPrimeInfo declaration + /// + /// + /// + public partial class RSAOtherPrimeInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.spec.RSAOtherPrimeInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RSAOtherPrimeInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RSAOtherPrimeInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RSAOtherPrimeInfo implementation public partial class RSAOtherPrimeInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateCrtKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateCrtKeySpec.cs index e55c1b8a46..5f4834ab05 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateCrtKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateCrtKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region RSAPrivateCrtKeySpec + #region RSAPrivateCrtKeySpec declaration + /// + /// + /// + public partial class RSAPrivateCrtKeySpec : Java.Security.Spec.RSAPrivateKeySpec + { + const string _bridgeClassName = "java.security.spec.RSAPrivateCrtKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RSAPrivateCrtKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RSAPrivateCrtKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RSAPrivateCrtKeySpec implementation public partial class RSAPrivateCrtKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateKeySpec.cs index b3165674d5..485efd99f2 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/RSAPrivateKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region RSAPrivateKeySpec + #region RSAPrivateKeySpec declaration + /// + /// + /// + public partial class RSAPrivateKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.RSAPrivateKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RSAPrivateKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RSAPrivateKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RSAPrivateKeySpec implementation public partial class RSAPrivateKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/RSAPublicKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/RSAPublicKeySpec.cs index 9a03e4b906..52d289318d 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/RSAPublicKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/RSAPublicKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region RSAPublicKeySpec + #region RSAPublicKeySpec declaration + /// + /// + /// + public partial class RSAPublicKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.RSAPublicKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RSAPublicKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RSAPublicKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RSAPublicKeySpec implementation public partial class RSAPublicKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/X509EncodedKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/X509EncodedKeySpec.cs index 2f772efcfd..7272be9cdc 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/X509EncodedKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/X509EncodedKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region X509EncodedKeySpec + #region X509EncodedKeySpec declaration + /// + /// + /// + public partial class X509EncodedKeySpec : Java.Security.Spec.EncodedKeySpec + { + const string _bridgeClassName = "java.security.spec.X509EncodedKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public X509EncodedKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public X509EncodedKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509EncodedKeySpec implementation public partial class X509EncodedKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/XECPrivateKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/XECPrivateKeySpec.cs index ec1f399fd6..139f6dd941 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/XECPrivateKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/XECPrivateKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region XECPrivateKeySpec + #region XECPrivateKeySpec declaration + /// + /// + /// + public partial class XECPrivateKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.XECPrivateKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XECPrivateKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XECPrivateKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XECPrivateKeySpec implementation public partial class XECPrivateKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Spec/XECPublicKeySpec.cs b/src/net/JNet/Generated/Java/Security/Spec/XECPublicKeySpec.cs index 0bd8c6e569..7e6d746e8b 100644 --- a/src/net/JNet/Generated/Java/Security/Spec/XECPublicKeySpec.cs +++ b/src/net/JNet/Generated/Java/Security/Spec/XECPublicKeySpec.cs @@ -25,7 +25,52 @@ namespace Java.Security.Spec { - #region XECPublicKeySpec + #region XECPublicKeySpec declaration + /// + /// + /// + public partial class XECPublicKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "java.security.spec.XECPublicKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XECPublicKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XECPublicKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XECPublicKeySpec implementation public partial class XECPublicKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/Timestamp.cs b/src/net/JNet/Generated/Java/Security/Timestamp.cs index 056687a3f6..d3b7005934 100644 --- a/src/net/JNet/Generated/Java/Security/Timestamp.cs +++ b/src/net/JNet/Generated/Java/Security/Timestamp.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region Timestamp + #region Timestamp declaration + /// + /// + /// + public partial class Timestamp : Java.Io.Serializable + { + const string _bridgeClassName = "java.security.Timestamp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Timestamp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Timestamp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Timestamp implementation public partial class Timestamp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/URIParameter.cs b/src/net/JNet/Generated/Java/Security/URIParameter.cs index bd1747b422..1355d265d6 100644 --- a/src/net/JNet/Generated/Java/Security/URIParameter.cs +++ b/src/net/JNet/Generated/Java/Security/URIParameter.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region URIParameter + #region URIParameter declaration + /// + /// + /// + public partial class URIParameter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.security.URIParameter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URIParameter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URIParameter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URIParameter implementation public partial class URIParameter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/UnrecoverableEntryException.cs b/src/net/JNet/Generated/Java/Security/UnrecoverableEntryException.cs index 5b8150e1f3..84ef14bf3a 100644 --- a/src/net/JNet/Generated/Java/Security/UnrecoverableEntryException.cs +++ b/src/net/JNet/Generated/Java/Security/UnrecoverableEntryException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region UnrecoverableEntryException + #region UnrecoverableEntryException declaration + /// + /// + /// + public partial class UnrecoverableEntryException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "java.security.UnrecoverableEntryException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnrecoverableEntryException implementation public partial class UnrecoverableEntryException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/UnrecoverableKeyException.cs b/src/net/JNet/Generated/Java/Security/UnrecoverableKeyException.cs index bd9df350a4..5c9f195e32 100644 --- a/src/net/JNet/Generated/Java/Security/UnrecoverableKeyException.cs +++ b/src/net/JNet/Generated/Java/Security/UnrecoverableKeyException.cs @@ -25,7 +25,24 @@ namespace Java.Security { - #region UnrecoverableKeyException + #region UnrecoverableKeyException declaration + /// + /// + /// + public partial class UnrecoverableKeyException : Java.Security.UnrecoverableEntryException + { + const string _bridgeClassName = "java.security.UnrecoverableKeyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnrecoverableKeyException implementation public partial class UnrecoverableKeyException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Security/UnresolvedPermission.cs b/src/net/JNet/Generated/Java/Security/UnresolvedPermission.cs index 6768cc8ce4..bed226e08e 100644 --- a/src/net/JNet/Generated/Java/Security/UnresolvedPermission.cs +++ b/src/net/JNet/Generated/Java/Security/UnresolvedPermission.cs @@ -25,7 +25,52 @@ namespace Java.Security { - #region UnresolvedPermission + #region UnresolvedPermission declaration + /// + /// + /// + public partial class UnresolvedPermission : Java.Security.Permission + { + const string _bridgeClassName = "java.security.UnresolvedPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnresolvedPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnresolvedPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UnresolvedPermission implementation public partial class UnresolvedPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Sql/AllPackageClasses.cs deleted file mode 100644 index 39e1491632..0000000000 --- a/src/net/JNet/Generated/Java/Sql/AllPackageClasses.cs +++ /dev/null @@ -1,2083 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Sql -{ - #region Array - /// - /// - /// - public partial class Array : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Array"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Array class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Array() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Array class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Array(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BatchUpdateException - /// - /// - /// - public partial class BatchUpdateException : Java.Sql.SQLException - { - const string _bridgeClassName = "java.sql.BatchUpdateException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Blob - /// - /// - /// - public partial class Blob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Blob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Blob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Blob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Blob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Blob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CallableStatement - /// - /// - /// - public partial class CallableStatement : Java.Sql.PreparedStatement - { - const string _bridgeClassName = "java.sql.CallableStatement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CallableStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CallableStatement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CallableStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CallableStatement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ClientInfoStatus - /// - /// - /// - public partial class ClientInfoStatus : Java.Lang.Enum - { - const string _bridgeClassName = "java.sql.ClientInfoStatus"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ClientInfoStatus() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ClientInfoStatus(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Clob - /// - /// - /// - public partial class Clob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Clob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Clob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Clob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Clob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Clob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Connection - /// - /// - /// - public partial class Connection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Connection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Connection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Connection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Connection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Connection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConnectionBuilder - /// - /// - /// - public partial class ConnectionBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.ConnectionBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConnectionBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConnectionBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DatabaseMetaData - /// - /// - /// - public partial class DatabaseMetaData : Java.Sql.Wrapper - { - const string _bridgeClassName = "java.sql.DatabaseMetaData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DatabaseMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatabaseMetaData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DatabaseMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatabaseMetaData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataTruncation - /// - /// - /// - public partial class DataTruncation : Java.Sql.SQLWarning - { - const string _bridgeClassName = "java.sql.DataTruncation"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Date - /// - /// - /// - public partial class Date : Java.Util.Date - { - const string _bridgeClassName = "java.sql.Date"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Date() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Date(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Driver - /// - /// - /// - public partial class Driver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Driver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Driver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Driver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Driver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Driver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DriverAction - /// - /// - /// - public partial class DriverAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.DriverAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DriverAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DriverAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DriverAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DriverAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DriverManager - /// - /// - /// - public partial class DriverManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.DriverManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DriverManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DriverManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DriverPropertyInfo - /// - /// - /// - public partial class DriverPropertyInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.DriverPropertyInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DriverPropertyInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DriverPropertyInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JDBCType - /// - /// - /// - public partial class JDBCType : Java.Lang.Enum - { - const string _bridgeClassName = "java.sql.JDBCType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JDBCType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JDBCType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NClob - /// - /// - /// - public partial class NClob : Java.Sql.Clob - { - const string _bridgeClassName = "java.sql.NClob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NClob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NClob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NClob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NClob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParameterMetaData - /// - /// - /// - public partial class ParameterMetaData : Java.Sql.Wrapper - { - const string _bridgeClassName = "java.sql.ParameterMetaData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ParameterMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ParameterMetaData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ParameterMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ParameterMetaData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PreparedStatement - /// - /// - /// - public partial class PreparedStatement : Java.Sql.Statement - { - const string _bridgeClassName = "java.sql.PreparedStatement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PreparedStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PreparedStatement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PreparedStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PreparedStatement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PseudoColumnUsage - /// - /// - /// - public partial class PseudoColumnUsage : Java.Lang.Enum - { - const string _bridgeClassName = "java.sql.PseudoColumnUsage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PseudoColumnUsage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PseudoColumnUsage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Ref - /// - /// - /// - public partial class Ref : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Ref"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Ref class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Ref() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Ref class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Ref(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResultSet - /// - /// - /// - public partial class ResultSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.ResultSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResultSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResultSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResultSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResultSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResultSetMetaData - /// - /// - /// - public partial class ResultSetMetaData : Java.Sql.Wrapper - { - const string _bridgeClassName = "java.sql.ResultSetMetaData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResultSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResultSetMetaData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResultSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResultSetMetaData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowId - /// - /// - /// - public partial class RowId : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.RowId"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowId() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowId(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowIdLifetime - /// - /// - /// - public partial class RowIdLifetime : Java.Lang.Enum - { - const string _bridgeClassName = "java.sql.RowIdLifetime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowIdLifetime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RowIdLifetime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Savepoint - /// - /// - /// - public partial class Savepoint : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Savepoint"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Savepoint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Savepoint() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Savepoint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Savepoint(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ShardingKey - /// - /// - /// - public partial class ShardingKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.ShardingKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ShardingKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ShardingKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ShardingKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ShardingKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ShardingKeyBuilder - /// - /// - /// - public partial class ShardingKeyBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.ShardingKeyBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ShardingKeyBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ShardingKeyBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ShardingKeyBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ShardingKeyBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLClientInfoException - /// - /// - /// - public partial class SQLClientInfoException : Java.Sql.SQLException - { - const string _bridgeClassName = "java.sql.SQLClientInfoException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLData - /// - /// - /// - public partial class SQLData : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.SQLData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SQLData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SQLData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLDataException - /// - /// - /// - public partial class SQLDataException : Java.Sql.SQLNonTransientException - { - const string _bridgeClassName = "java.sql.SQLDataException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLException - /// - /// - /// - public partial class SQLException : Java.Lang.Exception - { - const string _bridgeClassName = "java.sql.SQLException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLFeatureNotSupportedException - /// - /// - /// - public partial class SQLFeatureNotSupportedException : Java.Sql.SQLNonTransientException - { - const string _bridgeClassName = "java.sql.SQLFeatureNotSupportedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLInput - /// - /// - /// - public partial class SQLInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.SQLInput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SQLInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLInput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SQLInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLInput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLIntegrityConstraintViolationException - /// - /// - /// - public partial class SQLIntegrityConstraintViolationException : Java.Sql.SQLNonTransientException - { - const string _bridgeClassName = "java.sql.SQLIntegrityConstraintViolationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLInvalidAuthorizationSpecException - /// - /// - /// - public partial class SQLInvalidAuthorizationSpecException : Java.Sql.SQLNonTransientException - { - const string _bridgeClassName = "java.sql.SQLInvalidAuthorizationSpecException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLNonTransientConnectionException - /// - /// - /// - public partial class SQLNonTransientConnectionException : Java.Sql.SQLNonTransientException - { - const string _bridgeClassName = "java.sql.SQLNonTransientConnectionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLNonTransientException - /// - /// - /// - public partial class SQLNonTransientException : Java.Sql.SQLException - { - const string _bridgeClassName = "java.sql.SQLNonTransientException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLOutput - /// - /// - /// - public partial class SQLOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.SQLOutput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SQLOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLOutput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SQLOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLOutput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLPermission - /// - /// - /// - public partial class SQLPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.sql.SQLPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SQLPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SQLPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLRecoverableException - /// - /// - /// - public partial class SQLRecoverableException : Java.Sql.SQLException - { - const string _bridgeClassName = "java.sql.SQLRecoverableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLSyntaxErrorException - /// - /// - /// - public partial class SQLSyntaxErrorException : Java.Sql.SQLNonTransientException - { - const string _bridgeClassName = "java.sql.SQLSyntaxErrorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLTimeoutException - /// - /// - /// - public partial class SQLTimeoutException : Java.Sql.SQLTransientException - { - const string _bridgeClassName = "java.sql.SQLTimeoutException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLTransactionRollbackException - /// - /// - /// - public partial class SQLTransactionRollbackException : Java.Sql.SQLTransientException - { - const string _bridgeClassName = "java.sql.SQLTransactionRollbackException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLTransientConnectionException - /// - /// - /// - public partial class SQLTransientConnectionException : Java.Sql.SQLTransientException - { - const string _bridgeClassName = "java.sql.SQLTransientConnectionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLTransientException - /// - /// - /// - public partial class SQLTransientException : Java.Sql.SQLException - { - const string _bridgeClassName = "java.sql.SQLTransientException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLType - /// - /// - /// - public partial class SQLType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.SQLType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SQLType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SQLType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLWarning - /// - /// - /// - public partial class SQLWarning : Java.Sql.SQLException - { - const string _bridgeClassName = "java.sql.SQLWarning"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SQLXML - /// - /// - /// - public partial class SQLXML : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.SQLXML"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SQLXML class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLXML() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SQLXML class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SQLXML(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Statement - /// - /// - /// - public partial class Statement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Statement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Statement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Statement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Statement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Statement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Struct - /// - /// - /// - public partial class Struct : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Struct"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Struct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Struct() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Struct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Struct(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Time - /// - /// - /// - public partial class Time : Java.Util.Date - { - const string _bridgeClassName = "java.sql.Time"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Time() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Time(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Timestamp - /// - /// - /// - public partial class Timestamp : Java.Util.Date - { - const string _bridgeClassName = "java.sql.Timestamp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Timestamp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Timestamp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Types - /// - /// - /// - public partial class Types : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Types"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Types() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Types(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Wrapper - /// - /// - /// - public partial class Wrapper : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.sql.Wrapper"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Wrapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Wrapper() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Wrapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Wrapper(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Sql/Array.cs b/src/net/JNet/Generated/Java/Sql/Array.cs index b05e00a6d3..8fcc4a1b57 100644 --- a/src/net/JNet/Generated/Java/Sql/Array.cs +++ b/src/net/JNet/Generated/Java/Sql/Array.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Array declaration + /// + /// + /// + public partial class Array : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Array"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Array class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Array() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Array class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Array(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IArray /// /// .NET interface for TO BE DEFINED FROM USER @@ -114,7 +161,7 @@ public partial interface IArray } #endregion - #region Array + #region Array implementation public partial class Array : Java.Sql.IArray { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/BatchUpdateException.cs b/src/net/JNet/Generated/Java/Sql/BatchUpdateException.cs index 20b8c33455..5b12d1213d 100644 --- a/src/net/JNet/Generated/Java/Sql/BatchUpdateException.cs +++ b/src/net/JNet/Generated/Java/Sql/BatchUpdateException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region BatchUpdateException + #region BatchUpdateException declaration + /// + /// + /// + public partial class BatchUpdateException : Java.Sql.SQLException + { + const string _bridgeClassName = "java.sql.BatchUpdateException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BatchUpdateException implementation public partial class BatchUpdateException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Blob.cs b/src/net/JNet/Generated/Java/Sql/Blob.cs index 99761e6fa6..8056d74c66 100644 --- a/src/net/JNet/Generated/Java/Sql/Blob.cs +++ b/src/net/JNet/Generated/Java/Sql/Blob.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Blob declaration + /// + /// + /// + public partial class Blob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Blob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Blob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Blob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Blob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Blob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBlob /// /// .NET interface for TO BE DEFINED FROM USER @@ -121,7 +168,7 @@ public partial interface IBlob } #endregion - #region Blob + #region Blob implementation public partial class Blob : Java.Sql.IBlob { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/CallableStatement.cs b/src/net/JNet/Generated/Java/Sql/CallableStatement.cs index d90a0a1af9..a4e9da8e83 100644 --- a/src/net/JNet/Generated/Java/Sql/CallableStatement.cs +++ b/src/net/JNet/Generated/Java/Sql/CallableStatement.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region CallableStatement declaration + /// + /// + /// + public partial class CallableStatement : Java.Sql.PreparedStatement + { + const string _bridgeClassName = "java.sql.CallableStatement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CallableStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CallableStatement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CallableStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CallableStatement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICallableStatement /// /// .NET interface for TO BE DEFINED FROM USER @@ -922,7 +969,7 @@ public partial interface ICallableStatement : Java.Sql.IPreparedStatement } #endregion - #region CallableStatement + #region CallableStatement implementation public partial class CallableStatement : Java.Sql.ICallableStatement { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ClientInfoStatus.cs b/src/net/JNet/Generated/Java/Sql/ClientInfoStatus.cs index 536a3021c2..409208234e 100644 --- a/src/net/JNet/Generated/Java/Sql/ClientInfoStatus.cs +++ b/src/net/JNet/Generated/Java/Sql/ClientInfoStatus.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region ClientInfoStatus + #region ClientInfoStatus declaration + /// + /// + /// + public partial class ClientInfoStatus : Java.Lang.Enum + { + const string _bridgeClassName = "java.sql.ClientInfoStatus"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ClientInfoStatus() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ClientInfoStatus(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ClientInfoStatus implementation public partial class ClientInfoStatus { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Clob.cs b/src/net/JNet/Generated/Java/Sql/Clob.cs index af91b0094b..e68ed3bfda 100644 --- a/src/net/JNet/Generated/Java/Sql/Clob.cs +++ b/src/net/JNet/Generated/Java/Sql/Clob.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Clob declaration + /// + /// + /// + public partial class Clob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Clob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Clob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Clob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Clob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Clob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IClob /// /// .NET interface for TO BE DEFINED FROM USER @@ -132,7 +179,7 @@ public partial interface IClob } #endregion - #region Clob + #region Clob implementation public partial class Clob : Java.Sql.IClob { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Connection.cs b/src/net/JNet/Generated/Java/Sql/Connection.cs index a873a16b3c..c1fbd0b75a 100644 --- a/src/net/JNet/Generated/Java/Sql/Connection.cs +++ b/src/net/JNet/Generated/Java/Sql/Connection.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Connection declaration + /// + /// + /// + public partial class Connection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Connection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Connection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Connection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Connection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Connection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IConnection /// /// .NET interface for TO BE DEFINED FROM USER @@ -366,7 +413,7 @@ public partial interface IConnection } #endregion - #region Connection + #region Connection implementation public partial class Connection : Java.Sql.IConnection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ConnectionBuilder.cs b/src/net/JNet/Generated/Java/Sql/ConnectionBuilder.cs index a620c30b84..4771e5d11c 100644 --- a/src/net/JNet/Generated/Java/Sql/ConnectionBuilder.cs +++ b/src/net/JNet/Generated/Java/Sql/ConnectionBuilder.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region ConnectionBuilder declaration + /// + /// + /// + public partial class ConnectionBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.ConnectionBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConnectionBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConnectionBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IConnectionBuilder /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IConnectionBuilder } #endregion - #region ConnectionBuilder + #region ConnectionBuilder implementation public partial class ConnectionBuilder : Java.Sql.IConnectionBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/DataTruncation.cs b/src/net/JNet/Generated/Java/Sql/DataTruncation.cs index 675db391d1..704ec2f01f 100644 --- a/src/net/JNet/Generated/Java/Sql/DataTruncation.cs +++ b/src/net/JNet/Generated/Java/Sql/DataTruncation.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region DataTruncation + #region DataTruncation declaration + /// + /// + /// + public partial class DataTruncation : Java.Sql.SQLWarning + { + const string _bridgeClassName = "java.sql.DataTruncation"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DataTruncation implementation public partial class DataTruncation { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/DatabaseMetaData.cs b/src/net/JNet/Generated/Java/Sql/DatabaseMetaData.cs index 0f7f7fed12..2609349942 100644 --- a/src/net/JNet/Generated/Java/Sql/DatabaseMetaData.cs +++ b/src/net/JNet/Generated/Java/Sql/DatabaseMetaData.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region DatabaseMetaData declaration + /// + /// + /// + public partial class DatabaseMetaData : Java.Sql.Wrapper + { + const string _bridgeClassName = "java.sql.DatabaseMetaData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DatabaseMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatabaseMetaData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DatabaseMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatabaseMetaData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDatabaseMetaData /// /// .NET interface for TO BE DEFINED FROM USER @@ -1088,7 +1135,7 @@ public partial interface IDatabaseMetaData : Java.Sql.IWrapper } #endregion - #region DatabaseMetaData + #region DatabaseMetaData implementation public partial class DatabaseMetaData : Java.Sql.IDatabaseMetaData { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Date.cs b/src/net/JNet/Generated/Java/Sql/Date.cs index 066bd615d7..b897b8c45d 100644 --- a/src/net/JNet/Generated/Java/Sql/Date.cs +++ b/src/net/JNet/Generated/Java/Sql/Date.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region Date + #region Date declaration + /// + /// + /// + public partial class Date : Java.Util.Date + { + const string _bridgeClassName = "java.sql.Date"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Date() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Date(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Date implementation public partial class Date { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Driver.cs b/src/net/JNet/Generated/Java/Sql/Driver.cs index 35028463b7..08a4116e7f 100644 --- a/src/net/JNet/Generated/Java/Sql/Driver.cs +++ b/src/net/JNet/Generated/Java/Sql/Driver.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Driver declaration + /// + /// + /// + public partial class Driver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Driver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Driver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Driver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Driver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Driver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDriver /// /// .NET interface for TO BE DEFINED FROM USER @@ -83,7 +130,7 @@ public partial interface IDriver } #endregion - #region Driver + #region Driver implementation public partial class Driver : Java.Sql.IDriver { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/DriverAction.cs b/src/net/JNet/Generated/Java/Sql/DriverAction.cs index af9a39c3c7..605e300f7c 100644 --- a/src/net/JNet/Generated/Java/Sql/DriverAction.cs +++ b/src/net/JNet/Generated/Java/Sql/DriverAction.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region DriverAction declaration + /// + /// + /// + public partial class DriverAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.DriverAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DriverAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DriverAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DriverAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DriverAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDriverAction /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDriverAction } #endregion - #region DriverAction + #region DriverAction implementation public partial class DriverAction : Java.Sql.IDriverAction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/DriverManager.cs b/src/net/JNet/Generated/Java/Sql/DriverManager.cs index a0d95c457b..263481b546 100644 --- a/src/net/JNet/Generated/Java/Sql/DriverManager.cs +++ b/src/net/JNet/Generated/Java/Sql/DriverManager.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region DriverManager + #region DriverManager declaration + /// + /// + /// + public partial class DriverManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.DriverManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DriverManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DriverManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DriverManager implementation public partial class DriverManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/DriverPropertyInfo.cs b/src/net/JNet/Generated/Java/Sql/DriverPropertyInfo.cs index 846d386105..6b719c91b9 100644 --- a/src/net/JNet/Generated/Java/Sql/DriverPropertyInfo.cs +++ b/src/net/JNet/Generated/Java/Sql/DriverPropertyInfo.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region DriverPropertyInfo + #region DriverPropertyInfo declaration + /// + /// + /// + public partial class DriverPropertyInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.DriverPropertyInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DriverPropertyInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DriverPropertyInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DriverPropertyInfo implementation public partial class DriverPropertyInfo { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/JDBCType.cs b/src/net/JNet/Generated/Java/Sql/JDBCType.cs index 22bb4818dc..cad04d8400 100644 --- a/src/net/JNet/Generated/Java/Sql/JDBCType.cs +++ b/src/net/JNet/Generated/Java/Sql/JDBCType.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region JDBCType + #region JDBCType declaration + /// + /// + /// + public partial class JDBCType : Java.Lang.Enum + { + const string _bridgeClassName = "java.sql.JDBCType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JDBCType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JDBCType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JDBCType implementation public partial class JDBCType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/NClob.cs b/src/net/JNet/Generated/Java/Sql/NClob.cs index 85d8015484..4d368d6cb1 100644 --- a/src/net/JNet/Generated/Java/Sql/NClob.cs +++ b/src/net/JNet/Generated/Java/Sql/NClob.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region NClob declaration + /// + /// + /// + public partial class NClob : Java.Sql.Clob + { + const string _bridgeClassName = "java.sql.NClob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NClob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NClob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NClob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NClob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INClob /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface INClob : Java.Sql.IClob } #endregion - #region NClob + #region NClob implementation public partial class NClob : Java.Sql.INClob { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ParameterMetaData.cs b/src/net/JNet/Generated/Java/Sql/ParameterMetaData.cs index 4b775c868b..d1bcb40298 100644 --- a/src/net/JNet/Generated/Java/Sql/ParameterMetaData.cs +++ b/src/net/JNet/Generated/Java/Sql/ParameterMetaData.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region ParameterMetaData declaration + /// + /// + /// + public partial class ParameterMetaData : Java.Sql.Wrapper + { + const string _bridgeClassName = "java.sql.ParameterMetaData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ParameterMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ParameterMetaData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ParameterMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ParameterMetaData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IParameterMetaData /// /// .NET interface for TO BE DEFINED FROM USER @@ -103,7 +150,7 @@ public partial interface IParameterMetaData : Java.Sql.IWrapper } #endregion - #region ParameterMetaData + #region ParameterMetaData implementation public partial class ParameterMetaData : Java.Sql.IParameterMetaData { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/PreparedStatement.cs b/src/net/JNet/Generated/Java/Sql/PreparedStatement.cs index 23a13d53f7..68d2e9eb82 100644 --- a/src/net/JNet/Generated/Java/Sql/PreparedStatement.cs +++ b/src/net/JNet/Generated/Java/Sql/PreparedStatement.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region PreparedStatement declaration + /// + /// + /// + public partial class PreparedStatement : Java.Sql.Statement + { + const string _bridgeClassName = "java.sql.PreparedStatement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PreparedStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PreparedStatement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PreparedStatement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PreparedStatement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPreparedStatement /// /// .NET interface for TO BE DEFINED FROM USER @@ -448,7 +495,7 @@ public partial interface IPreparedStatement : Java.Sql.IStatement } #endregion - #region PreparedStatement + #region PreparedStatement implementation public partial class PreparedStatement : Java.Sql.IPreparedStatement { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/PseudoColumnUsage.cs b/src/net/JNet/Generated/Java/Sql/PseudoColumnUsage.cs index fd970eaa5d..57aff11794 100644 --- a/src/net/JNet/Generated/Java/Sql/PseudoColumnUsage.cs +++ b/src/net/JNet/Generated/Java/Sql/PseudoColumnUsage.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region PseudoColumnUsage + #region PseudoColumnUsage declaration + /// + /// + /// + public partial class PseudoColumnUsage : Java.Lang.Enum + { + const string _bridgeClassName = "java.sql.PseudoColumnUsage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PseudoColumnUsage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PseudoColumnUsage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PseudoColumnUsage implementation public partial class PseudoColumnUsage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Ref.cs b/src/net/JNet/Generated/Java/Sql/Ref.cs index 4f89385d47..686d3967cc 100644 --- a/src/net/JNet/Generated/Java/Sql/Ref.cs +++ b/src/net/JNet/Generated/Java/Sql/Ref.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Ref declaration + /// + /// + /// + public partial class Ref : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Ref"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Ref class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Ref() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Ref class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Ref(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRef /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IRef } #endregion - #region Ref + #region Ref implementation public partial class Ref : Java.Sql.IRef { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ResultSet.cs b/src/net/JNet/Generated/Java/Sql/ResultSet.cs index 3550213800..1cd4391f7d 100644 --- a/src/net/JNet/Generated/Java/Sql/ResultSet.cs +++ b/src/net/JNet/Generated/Java/Sql/ResultSet.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region ResultSet declaration + /// + /// + /// + public partial class ResultSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.ResultSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResultSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResultSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResultSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResultSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IResultSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -1325,7 +1372,7 @@ public partial interface IResultSet } #endregion - #region ResultSet + #region ResultSet implementation public partial class ResultSet : Java.Sql.IResultSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ResultSetMetaData.cs b/src/net/JNet/Generated/Java/Sql/ResultSetMetaData.cs index 9a127a8b66..68ef89f5b1 100644 --- a/src/net/JNet/Generated/Java/Sql/ResultSetMetaData.cs +++ b/src/net/JNet/Generated/Java/Sql/ResultSetMetaData.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region ResultSetMetaData declaration + /// + /// + /// + public partial class ResultSetMetaData : Java.Sql.Wrapper + { + const string _bridgeClassName = "java.sql.ResultSetMetaData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResultSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResultSetMetaData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResultSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResultSetMetaData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IResultSetMetaData /// /// .NET interface for TO BE DEFINED FROM USER @@ -187,7 +234,7 @@ public partial interface IResultSetMetaData : Java.Sql.IWrapper } #endregion - #region ResultSetMetaData + #region ResultSetMetaData implementation public partial class ResultSetMetaData : Java.Sql.IResultSetMetaData { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/RowId.cs b/src/net/JNet/Generated/Java/Sql/RowId.cs index 2035bf2f3a..3b5c33af0a 100644 --- a/src/net/JNet/Generated/Java/Sql/RowId.cs +++ b/src/net/JNet/Generated/Java/Sql/RowId.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region RowId declaration + /// + /// + /// + public partial class RowId : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.RowId"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowId() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowId(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowId /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IRowId } #endregion - #region RowId + #region RowId implementation public partial class RowId : Java.Sql.IRowId { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/RowIdLifetime.cs b/src/net/JNet/Generated/Java/Sql/RowIdLifetime.cs index df9c911709..a5a004c986 100644 --- a/src/net/JNet/Generated/Java/Sql/RowIdLifetime.cs +++ b/src/net/JNet/Generated/Java/Sql/RowIdLifetime.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region RowIdLifetime + #region RowIdLifetime declaration + /// + /// + /// + public partial class RowIdLifetime : Java.Lang.Enum + { + const string _bridgeClassName = "java.sql.RowIdLifetime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowIdLifetime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RowIdLifetime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RowIdLifetime implementation public partial class RowIdLifetime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLClientInfoException.cs b/src/net/JNet/Generated/Java/Sql/SQLClientInfoException.cs index aed612b2b7..bf6ce5cf9c 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLClientInfoException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLClientInfoException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLClientInfoException + #region SQLClientInfoException declaration + /// + /// + /// + public partial class SQLClientInfoException : Java.Sql.SQLException + { + const string _bridgeClassName = "java.sql.SQLClientInfoException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLClientInfoException implementation public partial class SQLClientInfoException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLData.cs b/src/net/JNet/Generated/Java/Sql/SQLData.cs index 8ae9f0dd7e..a125f462f1 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLData.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLData.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region SQLData declaration + /// + /// + /// + public partial class SQLData : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.SQLData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SQLData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SQLData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISQLData /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface ISQLData } #endregion - #region SQLData + #region SQLData implementation public partial class SQLData : Java.Sql.ISQLData { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLDataException.cs b/src/net/JNet/Generated/Java/Sql/SQLDataException.cs index f81d8a8333..fdb832d6c8 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLDataException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLDataException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLDataException + #region SQLDataException declaration + /// + /// + /// + public partial class SQLDataException : Java.Sql.SQLNonTransientException + { + const string _bridgeClassName = "java.sql.SQLDataException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLDataException implementation public partial class SQLDataException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLException.cs b/src/net/JNet/Generated/Java/Sql/SQLException.cs index 24db043988..f20e7ae9f1 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLException + #region SQLException declaration + /// + /// + /// + public partial class SQLException : Java.Lang.Exception + { + const string _bridgeClassName = "java.sql.SQLException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLException implementation public partial class SQLException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLFeatureNotSupportedException.cs b/src/net/JNet/Generated/Java/Sql/SQLFeatureNotSupportedException.cs index 2116b8fbab..2378adaac5 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLFeatureNotSupportedException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLFeatureNotSupportedException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLFeatureNotSupportedException + #region SQLFeatureNotSupportedException declaration + /// + /// + /// + public partial class SQLFeatureNotSupportedException : Java.Sql.SQLNonTransientException + { + const string _bridgeClassName = "java.sql.SQLFeatureNotSupportedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLFeatureNotSupportedException implementation public partial class SQLFeatureNotSupportedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLInput.cs b/src/net/JNet/Generated/Java/Sql/SQLInput.cs index 491419be62..7c25c3e36d 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLInput.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLInput.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region SQLInput declaration + /// + /// + /// + public partial class SQLInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.SQLInput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SQLInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLInput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SQLInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLInput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISQLInput /// /// .NET interface for TO BE DEFINED FROM USER @@ -213,7 +260,7 @@ public partial interface ISQLInput } #endregion - #region SQLInput + #region SQLInput implementation public partial class SQLInput : Java.Sql.ISQLInput { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLIntegrityConstraintViolationException.cs b/src/net/JNet/Generated/Java/Sql/SQLIntegrityConstraintViolationException.cs index ece19e509a..9f977075e8 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLIntegrityConstraintViolationException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLIntegrityConstraintViolationException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLIntegrityConstraintViolationException + #region SQLIntegrityConstraintViolationException declaration + /// + /// + /// + public partial class SQLIntegrityConstraintViolationException : Java.Sql.SQLNonTransientException + { + const string _bridgeClassName = "java.sql.SQLIntegrityConstraintViolationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLIntegrityConstraintViolationException implementation public partial class SQLIntegrityConstraintViolationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLInvalidAuthorizationSpecException.cs b/src/net/JNet/Generated/Java/Sql/SQLInvalidAuthorizationSpecException.cs index 9484c0d8a5..957717fa14 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLInvalidAuthorizationSpecException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLInvalidAuthorizationSpecException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLInvalidAuthorizationSpecException + #region SQLInvalidAuthorizationSpecException declaration + /// + /// + /// + public partial class SQLInvalidAuthorizationSpecException : Java.Sql.SQLNonTransientException + { + const string _bridgeClassName = "java.sql.SQLInvalidAuthorizationSpecException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLInvalidAuthorizationSpecException implementation public partial class SQLInvalidAuthorizationSpecException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLNonTransientConnectionException.cs b/src/net/JNet/Generated/Java/Sql/SQLNonTransientConnectionException.cs index da2b4064b5..6aa4e320db 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLNonTransientConnectionException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLNonTransientConnectionException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLNonTransientConnectionException + #region SQLNonTransientConnectionException declaration + /// + /// + /// + public partial class SQLNonTransientConnectionException : Java.Sql.SQLNonTransientException + { + const string _bridgeClassName = "java.sql.SQLNonTransientConnectionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLNonTransientConnectionException implementation public partial class SQLNonTransientConnectionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLNonTransientException.cs b/src/net/JNet/Generated/Java/Sql/SQLNonTransientException.cs index b94a4a53cd..e57f262d26 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLNonTransientException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLNonTransientException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLNonTransientException + #region SQLNonTransientException declaration + /// + /// + /// + public partial class SQLNonTransientException : Java.Sql.SQLException + { + const string _bridgeClassName = "java.sql.SQLNonTransientException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLNonTransientException implementation public partial class SQLNonTransientException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLOutput.cs b/src/net/JNet/Generated/Java/Sql/SQLOutput.cs index 31f2c9a88c..36dfe189aa 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLOutput.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLOutput.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region SQLOutput declaration + /// + /// + /// + public partial class SQLOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.SQLOutput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SQLOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLOutput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SQLOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLOutput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISQLOutput /// /// .NET interface for TO BE DEFINED FROM USER @@ -212,7 +259,7 @@ public partial interface ISQLOutput } #endregion - #region SQLOutput + #region SQLOutput implementation public partial class SQLOutput : Java.Sql.ISQLOutput { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLPermission.cs b/src/net/JNet/Generated/Java/Sql/SQLPermission.cs index 9c334f8b59..79b42acf05 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLPermission.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLPermission.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region SQLPermission + #region SQLPermission declaration + /// + /// + /// + public partial class SQLPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.sql.SQLPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SQLPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SQLPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SQLPermission implementation public partial class SQLPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLRecoverableException.cs b/src/net/JNet/Generated/Java/Sql/SQLRecoverableException.cs index dec7dc8470..a54d5b2c99 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLRecoverableException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLRecoverableException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLRecoverableException + #region SQLRecoverableException declaration + /// + /// + /// + public partial class SQLRecoverableException : Java.Sql.SQLException + { + const string _bridgeClassName = "java.sql.SQLRecoverableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLRecoverableException implementation public partial class SQLRecoverableException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLSyntaxErrorException.cs b/src/net/JNet/Generated/Java/Sql/SQLSyntaxErrorException.cs index 9dea0b1392..a9be210e31 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLSyntaxErrorException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLSyntaxErrorException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLSyntaxErrorException + #region SQLSyntaxErrorException declaration + /// + /// + /// + public partial class SQLSyntaxErrorException : Java.Sql.SQLNonTransientException + { + const string _bridgeClassName = "java.sql.SQLSyntaxErrorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLSyntaxErrorException implementation public partial class SQLSyntaxErrorException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLTimeoutException.cs b/src/net/JNet/Generated/Java/Sql/SQLTimeoutException.cs index 24556b98cb..72f010497a 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLTimeoutException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLTimeoutException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLTimeoutException + #region SQLTimeoutException declaration + /// + /// + /// + public partial class SQLTimeoutException : Java.Sql.SQLTransientException + { + const string _bridgeClassName = "java.sql.SQLTimeoutException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLTimeoutException implementation public partial class SQLTimeoutException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLTransactionRollbackException.cs b/src/net/JNet/Generated/Java/Sql/SQLTransactionRollbackException.cs index c50260ab13..4f898b8ebd 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLTransactionRollbackException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLTransactionRollbackException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLTransactionRollbackException + #region SQLTransactionRollbackException declaration + /// + /// + /// + public partial class SQLTransactionRollbackException : Java.Sql.SQLTransientException + { + const string _bridgeClassName = "java.sql.SQLTransactionRollbackException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLTransactionRollbackException implementation public partial class SQLTransactionRollbackException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLTransientConnectionException.cs b/src/net/JNet/Generated/Java/Sql/SQLTransientConnectionException.cs index 65155bc239..e84352de81 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLTransientConnectionException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLTransientConnectionException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLTransientConnectionException + #region SQLTransientConnectionException declaration + /// + /// + /// + public partial class SQLTransientConnectionException : Java.Sql.SQLTransientException + { + const string _bridgeClassName = "java.sql.SQLTransientConnectionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLTransientConnectionException implementation public partial class SQLTransientConnectionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLTransientException.cs b/src/net/JNet/Generated/Java/Sql/SQLTransientException.cs index 715b18b5ae..1a726db709 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLTransientException.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLTransientException.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLTransientException + #region SQLTransientException declaration + /// + /// + /// + public partial class SQLTransientException : Java.Sql.SQLException + { + const string _bridgeClassName = "java.sql.SQLTransientException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLTransientException implementation public partial class SQLTransientException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLType.cs b/src/net/JNet/Generated/Java/Sql/SQLType.cs index a1a2a0fdfd..e4e57713fe 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLType.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLType.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region SQLType declaration + /// + /// + /// + public partial class SQLType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.SQLType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SQLType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SQLType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISQLType /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ISQLType } #endregion - #region SQLType + #region SQLType implementation public partial class SQLType : Java.Sql.ISQLType { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLWarning.cs b/src/net/JNet/Generated/Java/Sql/SQLWarning.cs index 2cfba002ca..8989800001 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLWarning.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLWarning.cs @@ -25,7 +25,24 @@ namespace Java.Sql { - #region SQLWarning + #region SQLWarning declaration + /// + /// + /// + public partial class SQLWarning : Java.Sql.SQLException + { + const string _bridgeClassName = "java.sql.SQLWarning"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SQLWarning implementation public partial class SQLWarning { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/SQLXML.cs b/src/net/JNet/Generated/Java/Sql/SQLXML.cs index f3a420c77b..bb904947d1 100644 --- a/src/net/JNet/Generated/Java/Sql/SQLXML.cs +++ b/src/net/JNet/Generated/Java/Sql/SQLXML.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region SQLXML declaration + /// + /// + /// + public partial class SQLXML : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.SQLXML"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SQLXML class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLXML() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SQLXML class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SQLXML(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISQLXML /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +135,7 @@ public partial interface ISQLXML } #endregion - #region SQLXML + #region SQLXML implementation public partial class SQLXML : Java.Sql.ISQLXML { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Savepoint.cs b/src/net/JNet/Generated/Java/Sql/Savepoint.cs index aee2494192..073921a06d 100644 --- a/src/net/JNet/Generated/Java/Sql/Savepoint.cs +++ b/src/net/JNet/Generated/Java/Sql/Savepoint.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Savepoint declaration + /// + /// + /// + public partial class Savepoint : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Savepoint"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Savepoint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Savepoint() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Savepoint class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Savepoint(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISavepoint /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ISavepoint } #endregion - #region Savepoint + #region Savepoint implementation public partial class Savepoint : Java.Sql.ISavepoint { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ShardingKey.cs b/src/net/JNet/Generated/Java/Sql/ShardingKey.cs index 6f1a41b3ae..b6fd81f252 100644 --- a/src/net/JNet/Generated/Java/Sql/ShardingKey.cs +++ b/src/net/JNet/Generated/Java/Sql/ShardingKey.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region ShardingKey declaration + /// + /// + /// + public partial class ShardingKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.ShardingKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ShardingKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ShardingKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ShardingKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ShardingKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IShardingKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IShardingKey } #endregion - #region ShardingKey + #region ShardingKey implementation public partial class ShardingKey : Java.Sql.IShardingKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/ShardingKeyBuilder.cs b/src/net/JNet/Generated/Java/Sql/ShardingKeyBuilder.cs index f5f9a7cb3e..1afd2e3ca3 100644 --- a/src/net/JNet/Generated/Java/Sql/ShardingKeyBuilder.cs +++ b/src/net/JNet/Generated/Java/Sql/ShardingKeyBuilder.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region ShardingKeyBuilder declaration + /// + /// + /// + public partial class ShardingKeyBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.ShardingKeyBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ShardingKeyBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ShardingKeyBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ShardingKeyBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ShardingKeyBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IShardingKeyBuilder /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface IShardingKeyBuilder } #endregion - #region ShardingKeyBuilder + #region ShardingKeyBuilder implementation public partial class ShardingKeyBuilder : Java.Sql.IShardingKeyBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Statement.cs b/src/net/JNet/Generated/Java/Sql/Statement.cs index 3ceecc3fb7..d71d40ca0c 100644 --- a/src/net/JNet/Generated/Java/Sql/Statement.cs +++ b/src/net/JNet/Generated/Java/Sql/Statement.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Statement declaration + /// + /// + /// + public partial class Statement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Statement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Statement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Statement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Statement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Statement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStatement /// /// .NET interface for TO BE DEFINED FROM USER @@ -322,7 +369,7 @@ public partial interface IStatement } #endregion - #region Statement + #region Statement implementation public partial class Statement : Java.Sql.IStatement { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Struct.cs b/src/net/JNet/Generated/Java/Sql/Struct.cs index 74be989d9d..d0492a6228 100644 --- a/src/net/JNet/Generated/Java/Sql/Struct.cs +++ b/src/net/JNet/Generated/Java/Sql/Struct.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Struct declaration + /// + /// + /// + public partial class Struct : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Struct"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Struct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Struct() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Struct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Struct(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStruct /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IStruct } #endregion - #region Struct + #region Struct implementation public partial class Struct : Java.Sql.IStruct { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Time.cs b/src/net/JNet/Generated/Java/Sql/Time.cs index e368d82998..87d083a742 100644 --- a/src/net/JNet/Generated/Java/Sql/Time.cs +++ b/src/net/JNet/Generated/Java/Sql/Time.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region Time + #region Time declaration + /// + /// + /// + public partial class Time : Java.Util.Date + { + const string _bridgeClassName = "java.sql.Time"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Time() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Time(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Time implementation public partial class Time { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Timestamp.cs b/src/net/JNet/Generated/Java/Sql/Timestamp.cs index 1b1d200c0f..b8710b9fe0 100644 --- a/src/net/JNet/Generated/Java/Sql/Timestamp.cs +++ b/src/net/JNet/Generated/Java/Sql/Timestamp.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region Timestamp + #region Timestamp declaration + /// + /// + /// + public partial class Timestamp : Java.Util.Date + { + const string _bridgeClassName = "java.sql.Timestamp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Timestamp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Timestamp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Timestamp implementation public partial class Timestamp { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Types.cs b/src/net/JNet/Generated/Java/Sql/Types.cs index 70e144341b..85cdde5541 100644 --- a/src/net/JNet/Generated/Java/Sql/Types.cs +++ b/src/net/JNet/Generated/Java/Sql/Types.cs @@ -25,7 +25,52 @@ namespace Java.Sql { - #region Types + #region Types declaration + /// + /// + /// + public partial class Types : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Types"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Types() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Types(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Types implementation public partial class Types { #region Constructors diff --git a/src/net/JNet/Generated/Java/Sql/Wrapper.cs b/src/net/JNet/Generated/Java/Sql/Wrapper.cs index 956b0fe105..544ff651ae 100644 --- a/src/net/JNet/Generated/Java/Sql/Wrapper.cs +++ b/src/net/JNet/Generated/Java/Sql/Wrapper.cs @@ -25,6 +25,53 @@ namespace Java.Sql { + #region Wrapper declaration + /// + /// + /// + public partial class Wrapper : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.sql.Wrapper"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Wrapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Wrapper() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Wrapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Wrapper(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWrapper /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IWrapper } #endregion - #region Wrapper + #region Wrapper implementation public partial class Wrapper : Java.Sql.IWrapper { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Text/AllPackageClasses.cs deleted file mode 100644 index 3a5f9186b8..0000000000 --- a/src/net/JNet/Generated/Java/Text/AllPackageClasses.cs +++ /dev/null @@ -1,1368 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Text -{ - #region Annotation - /// - /// - /// - public partial class Annotation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.Annotation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Annotation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Annotation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributedCharacterIterator - /// - /// - /// - public partial class AttributedCharacterIterator : Java.Text.CharacterIterator - { - const string _bridgeClassName = "java.text.AttributedCharacterIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AttributedCharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributedCharacterIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AttributedCharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributedCharacterIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Attribute - /// - /// - /// - public partial class Attribute : Java.Io.Serializable - { - const string _bridgeClassName = "java.text.AttributedCharacterIterator$Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AttributedString - /// - /// - /// - public partial class AttributedString : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.AttributedString"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributedString() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributedString(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Bidi - /// - /// - /// - public partial class Bidi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.Bidi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Bidi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Bidi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BreakIterator - /// - /// - /// - public partial class BreakIterator : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.text.BreakIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BreakIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BreakIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BreakIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BreakIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharacterIterator - /// - /// - /// - public partial class CharacterIterator : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.text.CharacterIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharacterIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharacterIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChoiceFormat - /// - /// - /// - public partial class ChoiceFormat : Java.Text.NumberFormat - { - const string _bridgeClassName = "java.text.ChoiceFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChoiceFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChoiceFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CollationElementIterator - /// - /// - /// - public partial class CollationElementIterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.CollationElementIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CollationElementIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CollationElementIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CollationKey - /// - /// - /// - public partial class CollationKey : Java.Lang.Comparable - { - const string _bridgeClassName = "java.text.CollationKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CollationKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CollationKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CollationKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CollationKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Collator - /// - /// - /// - public partial class Collator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.Collator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Collator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Collator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateFormat - /// - /// - /// - public partial class DateFormat : Java.Text.Format - { - const string _bridgeClassName = "java.text.DateFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DateFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DateFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Field - /// - /// - /// - public partial class Field : Java.Text.Format.Field - { - const string _bridgeClassName = "java.text.DateFormat$Field"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Field() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Field(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DateFormatSymbols - /// - /// - /// - public partial class DateFormatSymbols : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.DateFormatSymbols"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateFormatSymbols() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateFormatSymbols(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DecimalFormat - /// - /// - /// - public partial class DecimalFormat : Java.Text.NumberFormat - { - const string _bridgeClassName = "java.text.DecimalFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DecimalFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DecimalFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DecimalFormatSymbols - /// - /// - /// - public partial class DecimalFormatSymbols : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.DecimalFormatSymbols"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DecimalFormatSymbols() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DecimalFormatSymbols(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FieldPosition - /// - /// - /// - public partial class FieldPosition : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.FieldPosition"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FieldPosition() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FieldPosition(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Format - /// - /// - /// - public partial class Format : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.Format"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Format class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Format() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Format class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Format(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Field - /// - /// - /// - public partial class Field : Java.Text.AttributedCharacterIterator.Attribute - { - const string _bridgeClassName = "java.text.Format$Field"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Field() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Field(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MessageFormat - /// - /// - /// - public partial class MessageFormat : Java.Text.Format - { - const string _bridgeClassName = "java.text.MessageFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MessageFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MessageFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Field - /// - /// - /// - public partial class Field : Java.Text.Format.Field - { - const string _bridgeClassName = "java.text.MessageFormat$Field"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Field() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Field(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Normalizer - /// - /// - /// - public partial class Normalizer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.Normalizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Normalizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Normalizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Form - /// - /// - /// - public partial class Form : Java.Lang.Enum - { - const string _bridgeClassName = "java.text.Normalizer$Form"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Form() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Form(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region NumberFormat - /// - /// - /// - public partial class NumberFormat : Java.Text.Format - { - const string _bridgeClassName = "java.text.NumberFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NumberFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NumberFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NumberFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NumberFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Field - /// - /// - /// - public partial class Field : Java.Text.Format.Field - { - const string _bridgeClassName = "java.text.NumberFormat$Field"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Field() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Field(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ParseException - /// - /// - /// - public partial class ParseException : Java.Lang.Exception - { - const string _bridgeClassName = "java.text.ParseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ParsePosition - /// - /// - /// - public partial class ParsePosition : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.text.ParsePosition"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParsePosition() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParsePosition(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RuleBasedCollator - /// - /// - /// - public partial class RuleBasedCollator : Java.Text.Collator - { - const string _bridgeClassName = "java.text.RuleBasedCollator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RuleBasedCollator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RuleBasedCollator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleDateFormat - /// - /// - /// - public partial class SimpleDateFormat : Java.Text.DateFormat - { - const string _bridgeClassName = "java.text.SimpleDateFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleDateFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleDateFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringCharacterIterator - /// - /// - /// - public partial class StringCharacterIterator : Java.Text.CharacterIterator - { - const string _bridgeClassName = "java.text.StringCharacterIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringCharacterIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringCharacterIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Text/Annotation.cs b/src/net/JNet/Generated/Java/Text/Annotation.cs index 0276570aa2..2ab7c00880 100644 --- a/src/net/JNet/Generated/Java/Text/Annotation.cs +++ b/src/net/JNet/Generated/Java/Text/Annotation.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region Annotation + #region Annotation declaration + /// + /// + /// + public partial class Annotation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.Annotation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Annotation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Annotation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Annotation implementation public partial class Annotation { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/AttributedCharacterIterator.cs b/src/net/JNet/Generated/Java/Text/AttributedCharacterIterator.cs index 31941ad6cc..079866886c 100644 --- a/src/net/JNet/Generated/Java/Text/AttributedCharacterIterator.cs +++ b/src/net/JNet/Generated/Java/Text/AttributedCharacterIterator.cs @@ -25,6 +25,98 @@ namespace Java.Text { + #region AttributedCharacterIterator declaration + /// + /// + /// + public partial class AttributedCharacterIterator : Java.Text.CharacterIterator + { + const string _bridgeClassName = "java.text.AttributedCharacterIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AttributedCharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributedCharacterIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AttributedCharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributedCharacterIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Attribute declaration + /// + /// + /// + public partial class Attribute : Java.Io.Serializable + { + const string _bridgeClassName = "java.text.AttributedCharacterIterator$Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IAttributedCharacterIterator /// /// .NET interface for TO BE DEFINED FROM USER @@ -91,7 +183,7 @@ public partial interface IAttributedCharacterIterator : Java.Text.ICharacterIter } #endregion - #region AttributedCharacterIterator + #region AttributedCharacterIterator implementation public partial class AttributedCharacterIterator : Java.Text.IAttributedCharacterIterator { #region Constructors @@ -190,7 +282,7 @@ public object GetAttribute(Java.Text.AttributedCharacterIterator.Attribute arg0) #endregion #region Nested classes - #region Attribute + #region Attribute implementation public partial class Attribute { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/AttributedString.cs b/src/net/JNet/Generated/Java/Text/AttributedString.cs index d7c58951d6..2d77b3d851 100644 --- a/src/net/JNet/Generated/Java/Text/AttributedString.cs +++ b/src/net/JNet/Generated/Java/Text/AttributedString.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region AttributedString + #region AttributedString declaration + /// + /// + /// + public partial class AttributedString : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.AttributedString"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributedString() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributedString(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributedString implementation public partial class AttributedString { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Bidi.cs b/src/net/JNet/Generated/Java/Text/Bidi.cs index 176abb9e79..6e13a36331 100644 --- a/src/net/JNet/Generated/Java/Text/Bidi.cs +++ b/src/net/JNet/Generated/Java/Text/Bidi.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region Bidi + #region Bidi declaration + /// + /// + /// + public partial class Bidi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.Bidi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Bidi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Bidi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Bidi implementation public partial class Bidi { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/BreakIterator.cs b/src/net/JNet/Generated/Java/Text/BreakIterator.cs index 0d69bec59a..55f3cfb0a1 100644 --- a/src/net/JNet/Generated/Java/Text/BreakIterator.cs +++ b/src/net/JNet/Generated/Java/Text/BreakIterator.cs @@ -25,7 +25,54 @@ namespace Java.Text { - #region BreakIterator + #region BreakIterator declaration + /// + /// + /// + public partial class BreakIterator : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.text.BreakIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BreakIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BreakIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BreakIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BreakIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BreakIterator implementation public partial class BreakIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/CharacterIterator.cs b/src/net/JNet/Generated/Java/Text/CharacterIterator.cs index d1ff6a2ff2..955af4ee16 100644 --- a/src/net/JNet/Generated/Java/Text/CharacterIterator.cs +++ b/src/net/JNet/Generated/Java/Text/CharacterIterator.cs @@ -25,6 +25,53 @@ namespace Java.Text { + #region CharacterIterator declaration + /// + /// + /// + public partial class CharacterIterator : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.text.CharacterIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharacterIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharacterIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharacterIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICharacterIterator /// /// .NET interface for TO BE DEFINED FROM USER @@ -86,7 +133,7 @@ public partial interface ICharacterIterator : Java.Lang.ICloneable } #endregion - #region CharacterIterator + #region CharacterIterator implementation public partial class CharacterIterator : Java.Text.ICharacterIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/ChoiceFormat.cs b/src/net/JNet/Generated/Java/Text/ChoiceFormat.cs index f8001e226e..bbc94e7317 100644 --- a/src/net/JNet/Generated/Java/Text/ChoiceFormat.cs +++ b/src/net/JNet/Generated/Java/Text/ChoiceFormat.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region ChoiceFormat + #region ChoiceFormat declaration + /// + /// + /// + public partial class ChoiceFormat : Java.Text.NumberFormat + { + const string _bridgeClassName = "java.text.ChoiceFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChoiceFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChoiceFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChoiceFormat implementation public partial class ChoiceFormat { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/CollationElementIterator.cs b/src/net/JNet/Generated/Java/Text/CollationElementIterator.cs index 9f0eb2cbf4..12dcbd769f 100644 --- a/src/net/JNet/Generated/Java/Text/CollationElementIterator.cs +++ b/src/net/JNet/Generated/Java/Text/CollationElementIterator.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region CollationElementIterator + #region CollationElementIterator declaration + /// + /// + /// + public partial class CollationElementIterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.CollationElementIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CollationElementIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CollationElementIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CollationElementIterator implementation public partial class CollationElementIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/CollationKey.cs b/src/net/JNet/Generated/Java/Text/CollationKey.cs index b8e061b2f7..59ac5fbac2 100644 --- a/src/net/JNet/Generated/Java/Text/CollationKey.cs +++ b/src/net/JNet/Generated/Java/Text/CollationKey.cs @@ -25,7 +25,54 @@ namespace Java.Text { - #region CollationKey + #region CollationKey declaration + /// + /// + /// + public partial class CollationKey : Java.Lang.Comparable + { + const string _bridgeClassName = "java.text.CollationKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CollationKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CollationKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CollationKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CollationKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CollationKey implementation public partial class CollationKey { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Collator.cs b/src/net/JNet/Generated/Java/Text/Collator.cs index 77f9bd4a5a..db748399fd 100644 --- a/src/net/JNet/Generated/Java/Text/Collator.cs +++ b/src/net/JNet/Generated/Java/Text/Collator.cs @@ -25,7 +25,54 @@ namespace Java.Text { - #region Collator + #region Collator declaration + /// + /// + /// + public partial class Collator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.Collator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Collator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Collator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Collator implementation public partial class Collator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/DateFormat.cs b/src/net/JNet/Generated/Java/Text/DateFormat.cs index a5d5440515..d16e2724ff 100644 --- a/src/net/JNet/Generated/Java/Text/DateFormat.cs +++ b/src/net/JNet/Generated/Java/Text/DateFormat.cs @@ -25,7 +25,99 @@ namespace Java.Text { - #region DateFormat + #region DateFormat declaration + /// + /// + /// + public partial class DateFormat : Java.Text.Format + { + const string _bridgeClassName = "java.text.DateFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DateFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DateFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Field declaration + /// + /// + /// + public partial class Field : Java.Text.Format.Field + { + const string _bridgeClassName = "java.text.DateFormat$Field"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Field() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Field(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DateFormat implementation public partial class DateFormat { #region Constructors @@ -358,7 +450,7 @@ public void SetLenient(bool arg0) #endregion #region Nested classes - #region Field + #region Field implementation public partial class Field { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/DateFormatSymbols.cs b/src/net/JNet/Generated/Java/Text/DateFormatSymbols.cs index 9581101174..8367ef0509 100644 --- a/src/net/JNet/Generated/Java/Text/DateFormatSymbols.cs +++ b/src/net/JNet/Generated/Java/Text/DateFormatSymbols.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region DateFormatSymbols + #region DateFormatSymbols declaration + /// + /// + /// + public partial class DateFormatSymbols : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.DateFormatSymbols"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateFormatSymbols() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateFormatSymbols(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateFormatSymbols implementation public partial class DateFormatSymbols { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/DecimalFormat.cs b/src/net/JNet/Generated/Java/Text/DecimalFormat.cs index c41d6e8a03..4c1d6ef3c2 100644 --- a/src/net/JNet/Generated/Java/Text/DecimalFormat.cs +++ b/src/net/JNet/Generated/Java/Text/DecimalFormat.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region DecimalFormat + #region DecimalFormat declaration + /// + /// + /// + public partial class DecimalFormat : Java.Text.NumberFormat + { + const string _bridgeClassName = "java.text.DecimalFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DecimalFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DecimalFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DecimalFormat implementation public partial class DecimalFormat { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/DecimalFormatSymbols.cs b/src/net/JNet/Generated/Java/Text/DecimalFormatSymbols.cs index 030e99ba22..327775e5f8 100644 --- a/src/net/JNet/Generated/Java/Text/DecimalFormatSymbols.cs +++ b/src/net/JNet/Generated/Java/Text/DecimalFormatSymbols.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region DecimalFormatSymbols + #region DecimalFormatSymbols declaration + /// + /// + /// + public partial class DecimalFormatSymbols : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.DecimalFormatSymbols"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DecimalFormatSymbols() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DecimalFormatSymbols(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DecimalFormatSymbols implementation public partial class DecimalFormatSymbols { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/FieldPosition.cs b/src/net/JNet/Generated/Java/Text/FieldPosition.cs index 6bb7441f4d..44979130fc 100644 --- a/src/net/JNet/Generated/Java/Text/FieldPosition.cs +++ b/src/net/JNet/Generated/Java/Text/FieldPosition.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region FieldPosition + #region FieldPosition declaration + /// + /// + /// + public partial class FieldPosition : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.FieldPosition"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FieldPosition() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FieldPosition(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FieldPosition implementation public partial class FieldPosition { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Format.cs b/src/net/JNet/Generated/Java/Text/Format.cs index 8ca8ce713f..a3fc32ce96 100644 --- a/src/net/JNet/Generated/Java/Text/Format.cs +++ b/src/net/JNet/Generated/Java/Text/Format.cs @@ -25,7 +25,99 @@ namespace Java.Text { - #region Format + #region Format declaration + /// + /// + /// + public partial class Format : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.Format"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Format class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Format() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Format class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Format(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Field declaration + /// + /// + /// + public partial class Field : Java.Text.AttributedCharacterIterator.Attribute + { + const string _bridgeClassName = "java.text.Format$Field"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Field() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Field(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Format implementation public partial class Format { #region Constructors @@ -106,7 +198,7 @@ public Java.Text.AttributedCharacterIterator FormatToCharacterIterator(object ar #endregion #region Nested classes - #region Field + #region Field implementation public partial class Field { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/MessageFormat.cs b/src/net/JNet/Generated/Java/Text/MessageFormat.cs index 64309dc664..69a51fb3d3 100644 --- a/src/net/JNet/Generated/Java/Text/MessageFormat.cs +++ b/src/net/JNet/Generated/Java/Text/MessageFormat.cs @@ -25,7 +25,97 @@ namespace Java.Text { - #region MessageFormat + #region MessageFormat declaration + /// + /// + /// + public partial class MessageFormat : Java.Text.Format + { + const string _bridgeClassName = "java.text.MessageFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MessageFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MessageFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Field declaration + /// + /// + /// + public partial class Field : Java.Text.Format.Field + { + const string _bridgeClassName = "java.text.MessageFormat$Field"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Field() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Field(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MessageFormat implementation public partial class MessageFormat { #region Constructors @@ -162,7 +252,7 @@ public void SetFormatByArgumentIndex(int arg0, Java.Text.Format arg1) #endregion #region Nested classes - #region Field + #region Field implementation public partial class Field { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Normalizer.cs b/src/net/JNet/Generated/Java/Text/Normalizer.cs index d9aea4a826..6599438539 100644 --- a/src/net/JNet/Generated/Java/Text/Normalizer.cs +++ b/src/net/JNet/Generated/Java/Text/Normalizer.cs @@ -25,7 +25,97 @@ namespace Java.Text { - #region Normalizer + #region Normalizer declaration + /// + /// + /// + public partial class Normalizer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.Normalizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Normalizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Normalizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Form declaration + /// + /// + /// + public partial class Form : Java.Lang.Enum + { + const string _bridgeClassName = "java.text.Normalizer$Form"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Form() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Form(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Normalizer implementation public partial class Normalizer { #region Constructors @@ -69,7 +159,7 @@ public static Java.Lang.String Normalize(Java.Lang.CharSequence arg0, Java.Text. #endregion #region Nested classes - #region Form + #region Form implementation public partial class Form { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/NumberFormat.cs b/src/net/JNet/Generated/Java/Text/NumberFormat.cs index 3fb06e0613..bc00992b89 100644 --- a/src/net/JNet/Generated/Java/Text/NumberFormat.cs +++ b/src/net/JNet/Generated/Java/Text/NumberFormat.cs @@ -25,7 +25,99 @@ namespace Java.Text { - #region NumberFormat + #region NumberFormat declaration + /// + /// + /// + public partial class NumberFormat : Java.Text.Format + { + const string _bridgeClassName = "java.text.NumberFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NumberFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NumberFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NumberFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NumberFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Field declaration + /// + /// + /// + public partial class Field : Java.Text.Format.Field + { + const string _bridgeClassName = "java.text.NumberFormat$Field"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Field() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Field(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region NumberFormat implementation public partial class NumberFormat { #region Constructors @@ -282,7 +374,7 @@ public void SetParseIntegerOnly(bool arg0) #endregion #region Nested classes - #region Field + #region Field implementation public partial class Field { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/ParseException.cs b/src/net/JNet/Generated/Java/Text/ParseException.cs index 1fbf9d1558..96e1e0cc8e 100644 --- a/src/net/JNet/Generated/Java/Text/ParseException.cs +++ b/src/net/JNet/Generated/Java/Text/ParseException.cs @@ -25,7 +25,24 @@ namespace Java.Text { - #region ParseException + #region ParseException declaration + /// + /// + /// + public partial class ParseException : Java.Lang.Exception + { + const string _bridgeClassName = "java.text.ParseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ParseException implementation public partial class ParseException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/ParsePosition.cs b/src/net/JNet/Generated/Java/Text/ParsePosition.cs index a426831d9e..b1aa9999df 100644 --- a/src/net/JNet/Generated/Java/Text/ParsePosition.cs +++ b/src/net/JNet/Generated/Java/Text/ParsePosition.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region ParsePosition + #region ParsePosition declaration + /// + /// + /// + public partial class ParsePosition : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.text.ParsePosition"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParsePosition() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParsePosition(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParsePosition implementation public partial class ParsePosition { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/RuleBasedCollator.cs b/src/net/JNet/Generated/Java/Text/RuleBasedCollator.cs index f83d0a7102..ed812c0875 100644 --- a/src/net/JNet/Generated/Java/Text/RuleBasedCollator.cs +++ b/src/net/JNet/Generated/Java/Text/RuleBasedCollator.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region RuleBasedCollator + #region RuleBasedCollator declaration + /// + /// + /// + public partial class RuleBasedCollator : Java.Text.Collator + { + const string _bridgeClassName = "java.text.RuleBasedCollator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RuleBasedCollator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RuleBasedCollator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RuleBasedCollator implementation public partial class RuleBasedCollator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/SimpleDateFormat.cs b/src/net/JNet/Generated/Java/Text/SimpleDateFormat.cs index cce1d2f82d..8c18f913c6 100644 --- a/src/net/JNet/Generated/Java/Text/SimpleDateFormat.cs +++ b/src/net/JNet/Generated/Java/Text/SimpleDateFormat.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region SimpleDateFormat + #region SimpleDateFormat declaration + /// + /// + /// + public partial class SimpleDateFormat : Java.Text.DateFormat + { + const string _bridgeClassName = "java.text.SimpleDateFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleDateFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleDateFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleDateFormat implementation public partial class SimpleDateFormat { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Text/Spi/AllPackageClasses.cs deleted file mode 100644 index 4f5a85314b..0000000000 --- a/src/net/JNet/Generated/Java/Text/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,312 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Text.Spi -{ - #region BreakIteratorProvider - /// - /// - /// - public partial class BreakIteratorProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.text.spi.BreakIteratorProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BreakIteratorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BreakIteratorProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BreakIteratorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BreakIteratorProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CollatorProvider - /// - /// - /// - public partial class CollatorProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.text.spi.CollatorProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CollatorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CollatorProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CollatorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CollatorProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateFormatProvider - /// - /// - /// - public partial class DateFormatProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.text.spi.DateFormatProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DateFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateFormatProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DateFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateFormatProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateFormatSymbolsProvider - /// - /// - /// - public partial class DateFormatSymbolsProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.text.spi.DateFormatSymbolsProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DateFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateFormatSymbolsProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DateFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateFormatSymbolsProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DecimalFormatSymbolsProvider - /// - /// - /// - public partial class DecimalFormatSymbolsProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.text.spi.DecimalFormatSymbolsProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DecimalFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DecimalFormatSymbolsProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DecimalFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DecimalFormatSymbolsProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumberFormatProvider - /// - /// - /// - public partial class NumberFormatProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.text.spi.NumberFormatProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NumberFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NumberFormatProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NumberFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NumberFormatProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Text/Spi/BreakIteratorProvider.cs b/src/net/JNet/Generated/Java/Text/Spi/BreakIteratorProvider.cs index cc8cc30a1e..31f607b46c 100644 --- a/src/net/JNet/Generated/Java/Text/Spi/BreakIteratorProvider.cs +++ b/src/net/JNet/Generated/Java/Text/Spi/BreakIteratorProvider.cs @@ -25,7 +25,54 @@ namespace Java.Text.Spi { - #region BreakIteratorProvider + #region BreakIteratorProvider declaration + /// + /// + /// + public partial class BreakIteratorProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.text.spi.BreakIteratorProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BreakIteratorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BreakIteratorProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BreakIteratorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BreakIteratorProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BreakIteratorProvider implementation public partial class BreakIteratorProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Spi/CollatorProvider.cs b/src/net/JNet/Generated/Java/Text/Spi/CollatorProvider.cs index 50b5ec122b..c2b2bd27ed 100644 --- a/src/net/JNet/Generated/Java/Text/Spi/CollatorProvider.cs +++ b/src/net/JNet/Generated/Java/Text/Spi/CollatorProvider.cs @@ -25,7 +25,54 @@ namespace Java.Text.Spi { - #region CollatorProvider + #region CollatorProvider declaration + /// + /// + /// + public partial class CollatorProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.text.spi.CollatorProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CollatorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CollatorProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CollatorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CollatorProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CollatorProvider implementation public partial class CollatorProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Spi/DateFormatProvider.cs b/src/net/JNet/Generated/Java/Text/Spi/DateFormatProvider.cs index 5ce6269fa7..f534bec1b2 100644 --- a/src/net/JNet/Generated/Java/Text/Spi/DateFormatProvider.cs +++ b/src/net/JNet/Generated/Java/Text/Spi/DateFormatProvider.cs @@ -25,7 +25,54 @@ namespace Java.Text.Spi { - #region DateFormatProvider + #region DateFormatProvider declaration + /// + /// + /// + public partial class DateFormatProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.text.spi.DateFormatProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DateFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateFormatProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DateFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateFormatProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateFormatProvider implementation public partial class DateFormatProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Spi/DateFormatSymbolsProvider.cs b/src/net/JNet/Generated/Java/Text/Spi/DateFormatSymbolsProvider.cs index dc046a5495..e23684f986 100644 --- a/src/net/JNet/Generated/Java/Text/Spi/DateFormatSymbolsProvider.cs +++ b/src/net/JNet/Generated/Java/Text/Spi/DateFormatSymbolsProvider.cs @@ -25,7 +25,54 @@ namespace Java.Text.Spi { - #region DateFormatSymbolsProvider + #region DateFormatSymbolsProvider declaration + /// + /// + /// + public partial class DateFormatSymbolsProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.text.spi.DateFormatSymbolsProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DateFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateFormatSymbolsProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DateFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateFormatSymbolsProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateFormatSymbolsProvider implementation public partial class DateFormatSymbolsProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Spi/DecimalFormatSymbolsProvider.cs b/src/net/JNet/Generated/Java/Text/Spi/DecimalFormatSymbolsProvider.cs index 721bcff46f..2cc0009e37 100644 --- a/src/net/JNet/Generated/Java/Text/Spi/DecimalFormatSymbolsProvider.cs +++ b/src/net/JNet/Generated/Java/Text/Spi/DecimalFormatSymbolsProvider.cs @@ -25,7 +25,54 @@ namespace Java.Text.Spi { - #region DecimalFormatSymbolsProvider + #region DecimalFormatSymbolsProvider declaration + /// + /// + /// + public partial class DecimalFormatSymbolsProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.text.spi.DecimalFormatSymbolsProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DecimalFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DecimalFormatSymbolsProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DecimalFormatSymbolsProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DecimalFormatSymbolsProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DecimalFormatSymbolsProvider implementation public partial class DecimalFormatSymbolsProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/Spi/NumberFormatProvider.cs b/src/net/JNet/Generated/Java/Text/Spi/NumberFormatProvider.cs index bf1f82ac4d..81c4f251e2 100644 --- a/src/net/JNet/Generated/Java/Text/Spi/NumberFormatProvider.cs +++ b/src/net/JNet/Generated/Java/Text/Spi/NumberFormatProvider.cs @@ -25,7 +25,54 @@ namespace Java.Text.Spi { - #region NumberFormatProvider + #region NumberFormatProvider declaration + /// + /// + /// + public partial class NumberFormatProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.text.spi.NumberFormatProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NumberFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NumberFormatProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NumberFormatProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NumberFormatProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NumberFormatProvider implementation public partial class NumberFormatProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Text/StringCharacterIterator.cs b/src/net/JNet/Generated/Java/Text/StringCharacterIterator.cs index 72236687b4..5c402185fc 100644 --- a/src/net/JNet/Generated/Java/Text/StringCharacterIterator.cs +++ b/src/net/JNet/Generated/Java/Text/StringCharacterIterator.cs @@ -25,7 +25,52 @@ namespace Java.Text { - #region StringCharacterIterator + #region StringCharacterIterator declaration + /// + /// + /// + public partial class StringCharacterIterator : Java.Text.CharacterIterator + { + const string _bridgeClassName = "java.text.StringCharacterIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringCharacterIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringCharacterIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringCharacterIterator implementation public partial class StringCharacterIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Time/AllPackageClasses.cs deleted file mode 100644 index e2a0ced0c5..0000000000 --- a/src/net/JNet/Generated/Java/Time/AllPackageClasses.cs +++ /dev/null @@ -1,816 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Time -{ - #region Clock - /// - /// - /// - public partial class Clock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.Clock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Clock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Clock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Clock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Clock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeException - /// - /// - /// - public partial class DateTimeException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.time.DateTimeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DayOfWeek - /// - /// - /// - public partial class DayOfWeek : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.DayOfWeek"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DayOfWeek() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DayOfWeek(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Duration - /// - /// - /// - public partial class Duration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.Duration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Duration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Duration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Instant - /// - /// - /// - public partial class Instant : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.Instant"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Instant() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Instant(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LocalDate - /// - /// - /// - public partial class LocalDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.LocalDate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LocalDate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LocalDate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LocalDateTime - /// - /// - /// - public partial class LocalDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.LocalDateTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LocalDateTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LocalDateTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LocalTime - /// - /// - /// - public partial class LocalTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.LocalTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LocalTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LocalTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Month - /// - /// - /// - public partial class Month : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.Month"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Month() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Month(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MonthDay - /// - /// - /// - public partial class MonthDay : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.MonthDay"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MonthDay() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MonthDay(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OffsetDateTime - /// - /// - /// - public partial class OffsetDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.OffsetDateTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OffsetDateTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OffsetDateTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OffsetTime - /// - /// - /// - public partial class OffsetTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.OffsetTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OffsetTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OffsetTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Period - /// - /// - /// - public partial class Period : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.Period"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Period() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Period(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Year - /// - /// - /// - public partial class Year : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.Year"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Year() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Year(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region YearMonth - /// - /// - /// - public partial class YearMonth : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.YearMonth"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public YearMonth() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public YearMonth(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZonedDateTime - /// - /// - /// - public partial class ZonedDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.ZonedDateTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZonedDateTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZonedDateTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZoneId - /// - /// - /// - public partial class ZoneId : Java.Io.Serializable - { - const string _bridgeClassName = "java.time.ZoneId"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ZoneId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ZoneId() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ZoneId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ZoneId(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZoneOffset - /// - /// - /// - public partial class ZoneOffset : Java.Time.ZoneId - { - const string _bridgeClassName = "java.time.ZoneOffset"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZoneOffset() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZoneOffset(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Time/Chrono/AbstractChronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/AbstractChronology.cs index 10e87c268a..5acc89c433 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/AbstractChronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/AbstractChronology.cs @@ -25,7 +25,54 @@ namespace Java.Time.Chrono { - #region AbstractChronology + #region AbstractChronology declaration + /// + /// + /// + public partial class AbstractChronology : Java.Time.Chrono.Chronology + { + const string _bridgeClassName = "java.time.chrono.AbstractChronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractChronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractChronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractChronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractChronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractChronology implementation public partial class AbstractChronology { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Time/Chrono/AllPackageClasses.cs deleted file mode 100644 index 9ceada333c..0000000000 --- a/src/net/JNet/Generated/Java/Time/Chrono/AllPackageClasses.cs +++ /dev/null @@ -1,989 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Time.Chrono -{ - #region AbstractChronology - /// - /// - /// - public partial class AbstractChronology : Java.Time.Chrono.Chronology - { - const string _bridgeClassName = "java.time.chrono.AbstractChronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractChronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractChronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractChronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractChronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChronoLocalDate - /// - /// - /// - public partial class ChronoLocalDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.ChronoLocalDate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ChronoLocalDate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoLocalDate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ChronoLocalDate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoLocalDate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChronoLocalDateTime - /// - /// - /// - public partial class ChronoLocalDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.ChronoLocalDateTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ChronoLocalDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoLocalDateTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ChronoLocalDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoLocalDateTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Chronology - /// - /// - /// - public partial class Chronology : Java.Lang.Comparable - { - const string _bridgeClassName = "java.time.chrono.Chronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Chronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Chronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Chronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Chronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChronoPeriod - /// - /// - /// - public partial class ChronoPeriod : Java.Time.Temporal.TemporalAmount - { - const string _bridgeClassName = "java.time.chrono.ChronoPeriod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ChronoPeriod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoPeriod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ChronoPeriod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoPeriod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChronoZonedDateTime - /// - /// - /// - public partial class ChronoZonedDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.ChronoZonedDateTime"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ChronoZonedDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoZonedDateTime() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ChronoZonedDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ChronoZonedDateTime(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Era - /// - /// - /// - public partial class Era : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.Era"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Era class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Era() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Era class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Era(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HijrahChronology - /// - /// - /// - public partial class HijrahChronology : Java.Time.Chrono.AbstractChronology - { - const string _bridgeClassName = "java.time.chrono.HijrahChronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HijrahChronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HijrahChronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HijrahDate - /// - /// - /// - public partial class HijrahDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.HijrahDate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HijrahDate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HijrahDate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HijrahEra - /// - /// - /// - public partial class HijrahEra : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.chrono.HijrahEra"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HijrahEra() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HijrahEra(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IsoChronology - /// - /// - /// - public partial class IsoChronology : Java.Time.Chrono.AbstractChronology - { - const string _bridgeClassName = "java.time.chrono.IsoChronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IsoChronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IsoChronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IsoEra - /// - /// - /// - public partial class IsoEra : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.chrono.IsoEra"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IsoEra() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IsoEra(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JapaneseChronology - /// - /// - /// - public partial class JapaneseChronology : Java.Time.Chrono.AbstractChronology - { - const string _bridgeClassName = "java.time.chrono.JapaneseChronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JapaneseChronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JapaneseChronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JapaneseDate - /// - /// - /// - public partial class JapaneseDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.JapaneseDate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JapaneseDate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JapaneseDate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JapaneseEra - /// - /// - /// - public partial class JapaneseEra : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.JapaneseEra"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JapaneseEra() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JapaneseEra(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MinguoChronology - /// - /// - /// - public partial class MinguoChronology : Java.Time.Chrono.AbstractChronology - { - const string _bridgeClassName = "java.time.chrono.MinguoChronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MinguoChronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MinguoChronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MinguoDate - /// - /// - /// - public partial class MinguoDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.MinguoDate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MinguoDate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MinguoDate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MinguoEra - /// - /// - /// - public partial class MinguoEra : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.chrono.MinguoEra"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MinguoEra() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MinguoEra(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThaiBuddhistChronology - /// - /// - /// - public partial class ThaiBuddhistChronology : Java.Time.Chrono.AbstractChronology - { - const string _bridgeClassName = "java.time.chrono.ThaiBuddhistChronology"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThaiBuddhistChronology() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThaiBuddhistChronology(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThaiBuddhistDate - /// - /// - /// - public partial class ThaiBuddhistDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.chrono.ThaiBuddhistDate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThaiBuddhistDate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThaiBuddhistDate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThaiBuddhistEra - /// - /// - /// - public partial class ThaiBuddhistEra : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.chrono.ThaiBuddhistEra"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThaiBuddhistEra() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThaiBuddhistEra(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDate.cs b/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDate.cs index 6b9b47ca3b..ede18e0f73 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDate.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDate.cs @@ -25,6 +25,53 @@ namespace Java.Time.Chrono { + #region ChronoLocalDate declaration + /// + /// + /// + public partial class ChronoLocalDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.ChronoLocalDate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ChronoLocalDate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoLocalDate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ChronoLocalDate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoLocalDate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IChronoLocalDate /// /// .NET interface for TO BE DEFINED FROM USER @@ -190,7 +237,7 @@ public partial interface IChronoLocalDate } #endregion - #region ChronoLocalDate + #region ChronoLocalDate implementation public partial class ChronoLocalDate : Java.Time.Chrono.IChronoLocalDate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDateTime.cs b/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDateTime.cs index d966e4334c..35ad3958ab 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDateTime.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ChronoLocalDateTime.cs @@ -25,7 +25,54 @@ namespace Java.Time.Chrono { - #region ChronoLocalDateTime + #region ChronoLocalDateTime declaration + /// + /// + /// + public partial class ChronoLocalDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.ChronoLocalDateTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ChronoLocalDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoLocalDateTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ChronoLocalDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoLocalDateTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChronoLocalDateTime implementation public partial class ChronoLocalDateTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ChronoPeriod.cs b/src/net/JNet/Generated/Java/Time/Chrono/ChronoPeriod.cs index 0001268905..e3931b146b 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ChronoPeriod.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ChronoPeriod.cs @@ -25,6 +25,53 @@ namespace Java.Time.Chrono { + #region ChronoPeriod declaration + /// + /// + /// + public partial class ChronoPeriod : Java.Time.Temporal.TemporalAmount + { + const string _bridgeClassName = "java.time.chrono.ChronoPeriod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ChronoPeriod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoPeriod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ChronoPeriod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoPeriod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IChronoPeriod /// /// .NET interface for TO BE DEFINED FROM USER @@ -107,7 +154,7 @@ public partial interface IChronoPeriod : Java.Time.Temporal.ITemporalAmount } #endregion - #region ChronoPeriod + #region ChronoPeriod implementation public partial class ChronoPeriod : Java.Time.Chrono.IChronoPeriod { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ChronoZonedDateTime.cs b/src/net/JNet/Generated/Java/Time/Chrono/ChronoZonedDateTime.cs index 2faefa3d7b..1ab753852a 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ChronoZonedDateTime.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ChronoZonedDateTime.cs @@ -25,7 +25,54 @@ namespace Java.Time.Chrono { - #region ChronoZonedDateTime + #region ChronoZonedDateTime declaration + /// + /// + /// + public partial class ChronoZonedDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.ChronoZonedDateTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ChronoZonedDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoZonedDateTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ChronoZonedDateTime class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ChronoZonedDateTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChronoZonedDateTime implementation public partial class ChronoZonedDateTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/Chronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/Chronology.cs index df12661f7c..70e72808e7 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/Chronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/Chronology.cs @@ -25,6 +25,53 @@ namespace Java.Time.Chrono { + #region Chronology declaration + /// + /// + /// + public partial class Chronology : Java.Lang.Comparable + { + const string _bridgeClassName = "java.time.chrono.Chronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Chronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Chronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Chronology class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Chronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IChronology /// /// .NET interface for TO BE DEFINED FROM USER @@ -220,7 +267,7 @@ public partial interface IChronology : Java.Lang.IComparable + /// + /// + public partial class Era : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.Era"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Era class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Era() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Era class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Era(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEra /// /// .NET interface for TO BE DEFINED FROM USER @@ -91,7 +138,7 @@ public partial interface IEra } #endregion - #region Era + #region Era implementation public partial class Era : Java.Time.Chrono.IEra { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/HijrahChronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/HijrahChronology.cs index a620108ae7..b3040d2f10 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/HijrahChronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/HijrahChronology.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region HijrahChronology + #region HijrahChronology declaration + /// + /// + /// + public partial class HijrahChronology : Java.Time.Chrono.AbstractChronology + { + const string _bridgeClassName = "java.time.chrono.HijrahChronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HijrahChronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HijrahChronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HijrahChronology implementation public partial class HijrahChronology { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/HijrahDate.cs b/src/net/JNet/Generated/Java/Time/Chrono/HijrahDate.cs index 2c7e481c70..c867ee2bb8 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/HijrahDate.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/HijrahDate.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region HijrahDate + #region HijrahDate declaration + /// + /// + /// + public partial class HijrahDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.HijrahDate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HijrahDate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HijrahDate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HijrahDate implementation public partial class HijrahDate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/HijrahEra.cs b/src/net/JNet/Generated/Java/Time/Chrono/HijrahEra.cs index 0b9e4baf37..386df31890 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/HijrahEra.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/HijrahEra.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region HijrahEra + #region HijrahEra declaration + /// + /// + /// + public partial class HijrahEra : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.chrono.HijrahEra"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HijrahEra() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HijrahEra(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HijrahEra implementation public partial class HijrahEra { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/IsoChronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/IsoChronology.cs index 291dabad86..241fdad66e 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/IsoChronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/IsoChronology.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region IsoChronology + #region IsoChronology declaration + /// + /// + /// + public partial class IsoChronology : Java.Time.Chrono.AbstractChronology + { + const string _bridgeClassName = "java.time.chrono.IsoChronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IsoChronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IsoChronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IsoChronology implementation public partial class IsoChronology { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/IsoEra.cs b/src/net/JNet/Generated/Java/Time/Chrono/IsoEra.cs index a5247d00bc..54221ae9a4 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/IsoEra.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/IsoEra.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region IsoEra + #region IsoEra declaration + /// + /// + /// + public partial class IsoEra : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.chrono.IsoEra"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IsoEra() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IsoEra(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IsoEra implementation public partial class IsoEra { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/JapaneseChronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/JapaneseChronology.cs index d2d6a7fef7..1f4e57efa5 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/JapaneseChronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/JapaneseChronology.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region JapaneseChronology + #region JapaneseChronology declaration + /// + /// + /// + public partial class JapaneseChronology : Java.Time.Chrono.AbstractChronology + { + const string _bridgeClassName = "java.time.chrono.JapaneseChronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JapaneseChronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JapaneseChronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JapaneseChronology implementation public partial class JapaneseChronology { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/JapaneseDate.cs b/src/net/JNet/Generated/Java/Time/Chrono/JapaneseDate.cs index c6c3f3ae05..cca60eff3b 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/JapaneseDate.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/JapaneseDate.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region JapaneseDate + #region JapaneseDate declaration + /// + /// + /// + public partial class JapaneseDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.JapaneseDate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JapaneseDate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JapaneseDate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JapaneseDate implementation public partial class JapaneseDate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/JapaneseEra.cs b/src/net/JNet/Generated/Java/Time/Chrono/JapaneseEra.cs index 74e144d8c8..65d6dbb376 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/JapaneseEra.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/JapaneseEra.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region JapaneseEra + #region JapaneseEra declaration + /// + /// + /// + public partial class JapaneseEra : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.JapaneseEra"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JapaneseEra() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JapaneseEra(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JapaneseEra implementation public partial class JapaneseEra { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/MinguoChronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/MinguoChronology.cs index c31eef5d1d..eabac78912 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/MinguoChronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/MinguoChronology.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region MinguoChronology + #region MinguoChronology declaration + /// + /// + /// + public partial class MinguoChronology : Java.Time.Chrono.AbstractChronology + { + const string _bridgeClassName = "java.time.chrono.MinguoChronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MinguoChronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MinguoChronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MinguoChronology implementation public partial class MinguoChronology { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/MinguoDate.cs b/src/net/JNet/Generated/Java/Time/Chrono/MinguoDate.cs index abcc227497..4fb66ce76a 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/MinguoDate.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/MinguoDate.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region MinguoDate + #region MinguoDate declaration + /// + /// + /// + public partial class MinguoDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.MinguoDate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MinguoDate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MinguoDate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MinguoDate implementation public partial class MinguoDate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/MinguoEra.cs b/src/net/JNet/Generated/Java/Time/Chrono/MinguoEra.cs index a911dd7571..7e9b710135 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/MinguoEra.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/MinguoEra.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region MinguoEra + #region MinguoEra declaration + /// + /// + /// + public partial class MinguoEra : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.chrono.MinguoEra"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MinguoEra() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MinguoEra(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MinguoEra implementation public partial class MinguoEra { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistChronology.cs b/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistChronology.cs index 55fe110ccd..815b163489 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistChronology.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistChronology.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region ThaiBuddhistChronology + #region ThaiBuddhistChronology declaration + /// + /// + /// + public partial class ThaiBuddhistChronology : Java.Time.Chrono.AbstractChronology + { + const string _bridgeClassName = "java.time.chrono.ThaiBuddhistChronology"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThaiBuddhistChronology() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThaiBuddhistChronology(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThaiBuddhistChronology implementation public partial class ThaiBuddhistChronology { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistDate.cs b/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistDate.cs index 8ae3da1d21..f4e0d7fe6d 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistDate.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistDate.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region ThaiBuddhistDate + #region ThaiBuddhistDate declaration + /// + /// + /// + public partial class ThaiBuddhistDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.chrono.ThaiBuddhistDate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThaiBuddhistDate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThaiBuddhistDate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThaiBuddhistDate implementation public partial class ThaiBuddhistDate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistEra.cs b/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistEra.cs index 33b7c53dd7..f526c0335a 100644 --- a/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistEra.cs +++ b/src/net/JNet/Generated/Java/Time/Chrono/ThaiBuddhistEra.cs @@ -25,7 +25,52 @@ namespace Java.Time.Chrono { - #region ThaiBuddhistEra + #region ThaiBuddhistEra declaration + /// + /// + /// + public partial class ThaiBuddhistEra : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.chrono.ThaiBuddhistEra"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThaiBuddhistEra() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThaiBuddhistEra(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThaiBuddhistEra implementation public partial class ThaiBuddhistEra { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Clock.cs b/src/net/JNet/Generated/Java/Time/Clock.cs index 5f97c05ee5..3c3b7acb2b 100644 --- a/src/net/JNet/Generated/Java/Time/Clock.cs +++ b/src/net/JNet/Generated/Java/Time/Clock.cs @@ -25,7 +25,54 @@ namespace Java.Time { - #region Clock + #region Clock declaration + /// + /// + /// + public partial class Clock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.Clock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Clock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Clock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Clock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Clock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Clock implementation public partial class Clock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/DateTimeException.cs b/src/net/JNet/Generated/Java/Time/DateTimeException.cs index db6305103e..c8aca66cb2 100644 --- a/src/net/JNet/Generated/Java/Time/DateTimeException.cs +++ b/src/net/JNet/Generated/Java/Time/DateTimeException.cs @@ -25,7 +25,24 @@ namespace Java.Time { - #region DateTimeException + #region DateTimeException declaration + /// + /// + /// + public partial class DateTimeException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.time.DateTimeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DateTimeException implementation public partial class DateTimeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/DayOfWeek.cs b/src/net/JNet/Generated/Java/Time/DayOfWeek.cs index 461318e1f6..e520c89bbc 100644 --- a/src/net/JNet/Generated/Java/Time/DayOfWeek.cs +++ b/src/net/JNet/Generated/Java/Time/DayOfWeek.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region DayOfWeek + #region DayOfWeek declaration + /// + /// + /// + public partial class DayOfWeek : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.DayOfWeek"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DayOfWeek() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DayOfWeek(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DayOfWeek implementation public partial class DayOfWeek { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Duration.cs b/src/net/JNet/Generated/Java/Time/Duration.cs index 86f55d9754..528fb2985f 100644 --- a/src/net/JNet/Generated/Java/Time/Duration.cs +++ b/src/net/JNet/Generated/Java/Time/Duration.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region Duration + #region Duration declaration + /// + /// + /// + public partial class Duration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.Duration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Duration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Duration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Duration implementation public partial class Duration { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Time/Format/AllPackageClasses.cs deleted file mode 100644 index 342fb5cc5f..0000000000 --- a/src/net/JNet/Generated/Java/Time/Format/AllPackageClasses.cs +++ /dev/null @@ -1,362 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Time.Format -{ - #region DateTimeFormatter - /// - /// - /// - public partial class DateTimeFormatter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.format.DateTimeFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateTimeFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateTimeFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeFormatterBuilder - /// - /// - /// - public partial class DateTimeFormatterBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.format.DateTimeFormatterBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateTimeFormatterBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateTimeFormatterBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeParseException - /// - /// - /// - public partial class DateTimeParseException : Java.Time.DateTimeException - { - const string _bridgeClassName = "java.time.format.DateTimeParseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DecimalStyle - /// - /// - /// - public partial class DecimalStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.format.DecimalStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DecimalStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DecimalStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FormatStyle - /// - /// - /// - public partial class FormatStyle : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.format.FormatStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FormatStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FormatStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResolverStyle - /// - /// - /// - public partial class ResolverStyle : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.format.ResolverStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ResolverStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ResolverStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignStyle - /// - /// - /// - public partial class SignStyle : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.format.SignStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SignStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SignStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextStyle - /// - /// - /// - public partial class TextStyle : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.format.TextStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatter.cs b/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatter.cs index 9b673046b6..92316c1b93 100644 --- a/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatter.cs +++ b/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatter.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region DateTimeFormatter + #region DateTimeFormatter declaration + /// + /// + /// + public partial class DateTimeFormatter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.format.DateTimeFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateTimeFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateTimeFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateTimeFormatter implementation public partial class DateTimeFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatterBuilder.cs b/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatterBuilder.cs index 6d0904d313..6cf1733bff 100644 --- a/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatterBuilder.cs +++ b/src/net/JNet/Generated/Java/Time/Format/DateTimeFormatterBuilder.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region DateTimeFormatterBuilder + #region DateTimeFormatterBuilder declaration + /// + /// + /// + public partial class DateTimeFormatterBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.format.DateTimeFormatterBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateTimeFormatterBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateTimeFormatterBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateTimeFormatterBuilder implementation public partial class DateTimeFormatterBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/DateTimeParseException.cs b/src/net/JNet/Generated/Java/Time/Format/DateTimeParseException.cs index bc38fad1d4..3bd8be43db 100644 --- a/src/net/JNet/Generated/Java/Time/Format/DateTimeParseException.cs +++ b/src/net/JNet/Generated/Java/Time/Format/DateTimeParseException.cs @@ -25,7 +25,24 @@ namespace Java.Time.Format { - #region DateTimeParseException + #region DateTimeParseException declaration + /// + /// + /// + public partial class DateTimeParseException : Java.Time.DateTimeException + { + const string _bridgeClassName = "java.time.format.DateTimeParseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DateTimeParseException implementation public partial class DateTimeParseException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/DecimalStyle.cs b/src/net/JNet/Generated/Java/Time/Format/DecimalStyle.cs index 41554af6e8..1f5846a5ab 100644 --- a/src/net/JNet/Generated/Java/Time/Format/DecimalStyle.cs +++ b/src/net/JNet/Generated/Java/Time/Format/DecimalStyle.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region DecimalStyle + #region DecimalStyle declaration + /// + /// + /// + public partial class DecimalStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.format.DecimalStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DecimalStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DecimalStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DecimalStyle implementation public partial class DecimalStyle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/FormatStyle.cs b/src/net/JNet/Generated/Java/Time/Format/FormatStyle.cs index 700ed0b1ee..b160ea1ce4 100644 --- a/src/net/JNet/Generated/Java/Time/Format/FormatStyle.cs +++ b/src/net/JNet/Generated/Java/Time/Format/FormatStyle.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region FormatStyle + #region FormatStyle declaration + /// + /// + /// + public partial class FormatStyle : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.format.FormatStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FormatStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FormatStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FormatStyle implementation public partial class FormatStyle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/ResolverStyle.cs b/src/net/JNet/Generated/Java/Time/Format/ResolverStyle.cs index 5ddc732520..31116191a7 100644 --- a/src/net/JNet/Generated/Java/Time/Format/ResolverStyle.cs +++ b/src/net/JNet/Generated/Java/Time/Format/ResolverStyle.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region ResolverStyle + #region ResolverStyle declaration + /// + /// + /// + public partial class ResolverStyle : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.format.ResolverStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ResolverStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ResolverStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ResolverStyle implementation public partial class ResolverStyle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/SignStyle.cs b/src/net/JNet/Generated/Java/Time/Format/SignStyle.cs index bec56a875e..494bb45395 100644 --- a/src/net/JNet/Generated/Java/Time/Format/SignStyle.cs +++ b/src/net/JNet/Generated/Java/Time/Format/SignStyle.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region SignStyle + #region SignStyle declaration + /// + /// + /// + public partial class SignStyle : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.format.SignStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SignStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SignStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SignStyle implementation public partial class SignStyle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Format/TextStyle.cs b/src/net/JNet/Generated/Java/Time/Format/TextStyle.cs index dc212d3429..2c2ebc66c2 100644 --- a/src/net/JNet/Generated/Java/Time/Format/TextStyle.cs +++ b/src/net/JNet/Generated/Java/Time/Format/TextStyle.cs @@ -25,7 +25,52 @@ namespace Java.Time.Format { - #region TextStyle + #region TextStyle declaration + /// + /// + /// + public partial class TextStyle : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.format.TextStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextStyle implementation public partial class TextStyle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Instant.cs b/src/net/JNet/Generated/Java/Time/Instant.cs index 9b379fb2a9..b8bc6dcc76 100644 --- a/src/net/JNet/Generated/Java/Time/Instant.cs +++ b/src/net/JNet/Generated/Java/Time/Instant.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region Instant + #region Instant declaration + /// + /// + /// + public partial class Instant : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.Instant"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Instant() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Instant(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Instant implementation public partial class Instant { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/LocalDate.cs b/src/net/JNet/Generated/Java/Time/LocalDate.cs index 4dc57fc180..2b14f351b0 100644 --- a/src/net/JNet/Generated/Java/Time/LocalDate.cs +++ b/src/net/JNet/Generated/Java/Time/LocalDate.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region LocalDate + #region LocalDate declaration + /// + /// + /// + public partial class LocalDate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.LocalDate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LocalDate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LocalDate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocalDate implementation public partial class LocalDate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/LocalDateTime.cs b/src/net/JNet/Generated/Java/Time/LocalDateTime.cs index 43e3d5fe19..4a8db36ff9 100644 --- a/src/net/JNet/Generated/Java/Time/LocalDateTime.cs +++ b/src/net/JNet/Generated/Java/Time/LocalDateTime.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region LocalDateTime + #region LocalDateTime declaration + /// + /// + /// + public partial class LocalDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.LocalDateTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LocalDateTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LocalDateTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocalDateTime implementation public partial class LocalDateTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/LocalTime.cs b/src/net/JNet/Generated/Java/Time/LocalTime.cs index 1baf186ad5..620ac538d5 100644 --- a/src/net/JNet/Generated/Java/Time/LocalTime.cs +++ b/src/net/JNet/Generated/Java/Time/LocalTime.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region LocalTime + #region LocalTime declaration + /// + /// + /// + public partial class LocalTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.LocalTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LocalTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LocalTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocalTime implementation public partial class LocalTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Month.cs b/src/net/JNet/Generated/Java/Time/Month.cs index e89b93f4a2..9f801b05cf 100644 --- a/src/net/JNet/Generated/Java/Time/Month.cs +++ b/src/net/JNet/Generated/Java/Time/Month.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region Month + #region Month declaration + /// + /// + /// + public partial class Month : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.Month"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Month() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Month(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Month implementation public partial class Month { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/MonthDay.cs b/src/net/JNet/Generated/Java/Time/MonthDay.cs index 834599438d..fb2849eb20 100644 --- a/src/net/JNet/Generated/Java/Time/MonthDay.cs +++ b/src/net/JNet/Generated/Java/Time/MonthDay.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region MonthDay + #region MonthDay declaration + /// + /// + /// + public partial class MonthDay : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.MonthDay"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MonthDay() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MonthDay(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MonthDay implementation public partial class MonthDay { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/OffsetDateTime.cs b/src/net/JNet/Generated/Java/Time/OffsetDateTime.cs index 4eaed842ab..17788a78e1 100644 --- a/src/net/JNet/Generated/Java/Time/OffsetDateTime.cs +++ b/src/net/JNet/Generated/Java/Time/OffsetDateTime.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region OffsetDateTime + #region OffsetDateTime declaration + /// + /// + /// + public partial class OffsetDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.OffsetDateTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OffsetDateTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OffsetDateTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OffsetDateTime implementation public partial class OffsetDateTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/OffsetTime.cs b/src/net/JNet/Generated/Java/Time/OffsetTime.cs index 6b14e77e93..8bff099f82 100644 --- a/src/net/JNet/Generated/Java/Time/OffsetTime.cs +++ b/src/net/JNet/Generated/Java/Time/OffsetTime.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region OffsetTime + #region OffsetTime declaration + /// + /// + /// + public partial class OffsetTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.OffsetTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OffsetTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OffsetTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OffsetTime implementation public partial class OffsetTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Period.cs b/src/net/JNet/Generated/Java/Time/Period.cs index 2a61c64638..b9279b99bc 100644 --- a/src/net/JNet/Generated/Java/Time/Period.cs +++ b/src/net/JNet/Generated/Java/Time/Period.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region Period + #region Period declaration + /// + /// + /// + public partial class Period : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.Period"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Period() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Period(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Period implementation public partial class Period { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Time/Temporal/AllPackageClasses.cs deleted file mode 100644 index 540008daf0..0000000000 --- a/src/net/JNet/Generated/Java/Time/Temporal/AllPackageClasses.cs +++ /dev/null @@ -1,784 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Time.Temporal -{ - #region ChronoField - /// - /// - /// - public partial class ChronoField : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.temporal.ChronoField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChronoField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChronoField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChronoUnit - /// - /// - /// - public partial class ChronoUnit : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.temporal.ChronoUnit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChronoUnit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChronoUnit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IsoFields - /// - /// - /// - public partial class IsoFields : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.IsoFields"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IsoFields() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IsoFields(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JulianFields - /// - /// - /// - public partial class JulianFields : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.JulianFields"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JulianFields() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JulianFields(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Temporal - /// - /// - /// - public partial class Temporal : Java.Time.Temporal.TemporalAccessor - { - const string _bridgeClassName = "java.time.temporal.Temporal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Temporal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Temporal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Temporal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Temporal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalAccessor - /// - /// - /// - public partial class TemporalAccessor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalAccessor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalAccessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalAccessor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalAccessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalAccessor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalAdjuster - /// - /// - /// - public partial class TemporalAdjuster : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalAdjuster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalAdjuster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalAdjuster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalAdjuster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalAdjuster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalAdjusters - /// - /// - /// - public partial class TemporalAdjusters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalAdjusters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TemporalAdjusters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TemporalAdjusters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalAmount - /// - /// - /// - public partial class TemporalAmount : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalAmount"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalAmount class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalAmount() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalAmount class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalAmount(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalField - /// - /// - /// - public partial class TemporalField : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalQueries - /// - /// - /// - public partial class TemporalQueries : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalQueries"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TemporalQueries() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TemporalQueries(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalQuery - /// - /// - /// - public partial class TemporalQuery : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalQuery"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalQuery() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalQuery(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalQuery - /// - /// - /// - /// - public partial class TemporalQuery : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.time.temporal.TemporalQuery"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalQuery() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalQuery(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemporalUnit - /// - /// - /// - public partial class TemporalUnit : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.temporal.TemporalUnit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemporalUnit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalUnit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemporalUnit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemporalUnit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedTemporalTypeException - /// - /// - /// - public partial class UnsupportedTemporalTypeException : Java.Time.DateTimeException - { - const string _bridgeClassName = "java.time.temporal.UnsupportedTemporalTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ValueRange - /// - /// - /// - public partial class ValueRange : Java.Io.Serializable - { - const string _bridgeClassName = "java.time.temporal.ValueRange"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ValueRange() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ValueRange(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WeekFields - /// - /// - /// - public partial class WeekFields : Java.Io.Serializable - { - const string _bridgeClassName = "java.time.temporal.WeekFields"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WeekFields() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WeekFields(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Time/Temporal/ChronoField.cs b/src/net/JNet/Generated/Java/Time/Temporal/ChronoField.cs index 32ee58dc09..900d391caa 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/ChronoField.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/ChronoField.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region ChronoField + #region ChronoField declaration + /// + /// + /// + public partial class ChronoField : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.temporal.ChronoField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChronoField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChronoField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChronoField implementation public partial class ChronoField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/ChronoUnit.cs b/src/net/JNet/Generated/Java/Time/Temporal/ChronoUnit.cs index a1f0e7802f..a40d2e87fa 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/ChronoUnit.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/ChronoUnit.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region ChronoUnit + #region ChronoUnit declaration + /// + /// + /// + public partial class ChronoUnit : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.temporal.ChronoUnit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChronoUnit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChronoUnit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChronoUnit implementation public partial class ChronoUnit { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/IsoFields.cs b/src/net/JNet/Generated/Java/Time/Temporal/IsoFields.cs index 6302382c5e..b026f52798 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/IsoFields.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/IsoFields.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region IsoFields + #region IsoFields declaration + /// + /// + /// + public partial class IsoFields : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.IsoFields"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IsoFields() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IsoFields(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IsoFields implementation public partial class IsoFields { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/JulianFields.cs b/src/net/JNet/Generated/Java/Time/Temporal/JulianFields.cs index 37eb3d96af..fc54019423 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/JulianFields.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/JulianFields.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region JulianFields + #region JulianFields declaration + /// + /// + /// + public partial class JulianFields : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.JulianFields"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JulianFields() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JulianFields(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JulianFields implementation public partial class JulianFields { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/Temporal.cs b/src/net/JNet/Generated/Java/Time/Temporal/Temporal.cs index bfab0943de..0a96f8ce64 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/Temporal.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/Temporal.cs @@ -25,6 +25,53 @@ namespace Java.Time.Temporal { + #region Temporal declaration + /// + /// + /// + public partial class Temporal : Java.Time.Temporal.TemporalAccessor + { + const string _bridgeClassName = "java.time.temporal.Temporal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Temporal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Temporal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Temporal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Temporal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemporal /// /// .NET interface for TO BE DEFINED FROM USER @@ -95,7 +142,7 @@ public partial interface ITemporal : Java.Time.Temporal.ITemporalAccessor } #endregion - #region Temporal + #region Temporal implementation public partial class Temporal : Java.Time.Temporal.ITemporal { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAccessor.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAccessor.cs index 82562e1a6c..e97c588302 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAccessor.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAccessor.cs @@ -25,6 +25,53 @@ namespace Java.Time.Temporal { + #region TemporalAccessor declaration + /// + /// + /// + public partial class TemporalAccessor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalAccessor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalAccessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalAccessor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalAccessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalAccessor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemporalAccessor /// /// .NET interface for TO BE DEFINED FROM USER @@ -74,7 +121,7 @@ public partial interface ITemporalAccessor } #endregion - #region TemporalAccessor + #region TemporalAccessor implementation public partial class TemporalAccessor : Java.Time.Temporal.ITemporalAccessor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjuster.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjuster.cs index 5884c3fe04..9a51641932 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjuster.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjuster.cs @@ -25,6 +25,53 @@ namespace Java.Time.Temporal { + #region TemporalAdjuster declaration + /// + /// + /// + public partial class TemporalAdjuster : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalAdjuster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalAdjuster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalAdjuster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalAdjuster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalAdjuster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemporalAdjuster /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface ITemporalAdjuster } #endregion - #region TemporalAdjuster + #region TemporalAdjuster implementation public partial class TemporalAdjuster : Java.Time.Temporal.ITemporalAdjuster { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjusters.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjusters.cs index ca352a7f90..2bae6ff9d6 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjusters.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAdjusters.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region TemporalAdjusters + #region TemporalAdjusters declaration + /// + /// + /// + public partial class TemporalAdjusters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalAdjusters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TemporalAdjusters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TemporalAdjusters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TemporalAdjusters implementation public partial class TemporalAdjusters { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAmount.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAmount.cs index 6359b6da8a..3cd1b4c5bd 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalAmount.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalAmount.cs @@ -25,6 +25,53 @@ namespace Java.Time.Temporal { + #region TemporalAmount declaration + /// + /// + /// + public partial class TemporalAmount : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalAmount"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalAmount class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalAmount() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalAmount class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalAmount(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemporalAmount /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface ITemporalAmount } #endregion - #region TemporalAmount + #region TemporalAmount implementation public partial class TemporalAmount : Java.Time.Temporal.ITemporalAmount { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalField.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalField.cs index 81e51f7878..c19b0c011b 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalField.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalField.cs @@ -25,6 +25,53 @@ namespace Java.Time.Temporal { + #region TemporalField declaration + /// + /// + /// + public partial class TemporalField : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalField class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemporalField /// /// .NET interface for TO BE DEFINED FROM USER @@ -106,7 +153,7 @@ public partial interface ITemporalField } #endregion - #region TemporalField + #region TemporalField implementation public partial class TemporalField : Java.Time.Temporal.ITemporalField { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalQueries.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalQueries.cs index ede7d2ae57..b78c99f68d 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalQueries.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalQueries.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region TemporalQueries + #region TemporalQueries declaration + /// + /// + /// + public partial class TemporalQueries : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalQueries"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TemporalQueries() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TemporalQueries(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TemporalQueries implementation public partial class TemporalQueries { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalQuery.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalQuery.cs index 1631f242f7..63bbae3aea 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalQuery.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalQuery.cs @@ -25,7 +25,102 @@ namespace Java.Time.Temporal { - #region TemporalQuery + #region TemporalQuery declaration + /// + /// + /// + public partial class TemporalQuery : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalQuery"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalQuery() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalQuery(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TemporalQuery declaration + /// + /// + /// + /// + public partial class TemporalQuery : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.time.temporal.TemporalQuery"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalQuery() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalQuery class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalQuery(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TemporalQuery implementation public partial class TemporalQuery { #region Constructors @@ -89,7 +184,7 @@ public partial interface ITemporalQuery } #endregion - #region TemporalQuery + #region TemporalQuery implementation public partial class TemporalQuery : Java.Time.Temporal.ITemporalQuery { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/TemporalUnit.cs b/src/net/JNet/Generated/Java/Time/Temporal/TemporalUnit.cs index 2a1841eb9c..4f9ed43579 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/TemporalUnit.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/TemporalUnit.cs @@ -25,6 +25,53 @@ namespace Java.Time.Temporal { + #region TemporalUnit declaration + /// + /// + /// + public partial class TemporalUnit : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.temporal.TemporalUnit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemporalUnit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalUnit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemporalUnit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemporalUnit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemporalUnit /// /// .NET interface for TO BE DEFINED FROM USER @@ -83,7 +130,7 @@ public partial interface ITemporalUnit } #endregion - #region TemporalUnit + #region TemporalUnit implementation public partial class TemporalUnit : Java.Time.Temporal.ITemporalUnit { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/UnsupportedTemporalTypeException.cs b/src/net/JNet/Generated/Java/Time/Temporal/UnsupportedTemporalTypeException.cs index c5d5e2ce8e..72a0b9ce02 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/UnsupportedTemporalTypeException.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/UnsupportedTemporalTypeException.cs @@ -25,7 +25,24 @@ namespace Java.Time.Temporal { - #region UnsupportedTemporalTypeException + #region UnsupportedTemporalTypeException declaration + /// + /// + /// + public partial class UnsupportedTemporalTypeException : Java.Time.DateTimeException + { + const string _bridgeClassName = "java.time.temporal.UnsupportedTemporalTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedTemporalTypeException implementation public partial class UnsupportedTemporalTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/ValueRange.cs b/src/net/JNet/Generated/Java/Time/Temporal/ValueRange.cs index aecef03882..b0e0b9023f 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/ValueRange.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/ValueRange.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region ValueRange + #region ValueRange declaration + /// + /// + /// + public partial class ValueRange : Java.Io.Serializable + { + const string _bridgeClassName = "java.time.temporal.ValueRange"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ValueRange() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ValueRange(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ValueRange implementation public partial class ValueRange { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Temporal/WeekFields.cs b/src/net/JNet/Generated/Java/Time/Temporal/WeekFields.cs index 1fb209eca7..ffbebd56f2 100644 --- a/src/net/JNet/Generated/Java/Time/Temporal/WeekFields.cs +++ b/src/net/JNet/Generated/Java/Time/Temporal/WeekFields.cs @@ -25,7 +25,52 @@ namespace Java.Time.Temporal { - #region WeekFields + #region WeekFields declaration + /// + /// + /// + public partial class WeekFields : Java.Io.Serializable + { + const string _bridgeClassName = "java.time.temporal.WeekFields"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WeekFields() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WeekFields(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WeekFields implementation public partial class WeekFields { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Year.cs b/src/net/JNet/Generated/Java/Time/Year.cs index a335811aec..804e22b58f 100644 --- a/src/net/JNet/Generated/Java/Time/Year.cs +++ b/src/net/JNet/Generated/Java/Time/Year.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region Year + #region Year declaration + /// + /// + /// + public partial class Year : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.Year"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Year() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Year(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Year implementation public partial class Year { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/YearMonth.cs b/src/net/JNet/Generated/Java/Time/YearMonth.cs index 2eaaca68fb..9d4281f531 100644 --- a/src/net/JNet/Generated/Java/Time/YearMonth.cs +++ b/src/net/JNet/Generated/Java/Time/YearMonth.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region YearMonth + #region YearMonth declaration + /// + /// + /// + public partial class YearMonth : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.YearMonth"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public YearMonth() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public YearMonth(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region YearMonth implementation public partial class YearMonth { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Zone/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Time/Zone/AllPackageClasses.cs deleted file mode 100644 index a305bd2e7d..0000000000 --- a/src/net/JNet/Generated/Java/Time/Zone/AllPackageClasses.cs +++ /dev/null @@ -1,274 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Time.Zone -{ - #region ZoneOffsetTransition - /// - /// - /// - public partial class ZoneOffsetTransition : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.zone.ZoneOffsetTransition"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZoneOffsetTransition() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZoneOffsetTransition(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZoneOffsetTransitionRule - /// - /// - /// - public partial class ZoneOffsetTransitionRule : Java.Io.Serializable - { - const string _bridgeClassName = "java.time.zone.ZoneOffsetTransitionRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZoneOffsetTransitionRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZoneOffsetTransitionRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region TimeDefinition - /// - /// - /// - public partial class TimeDefinition : Java.Lang.Enum - { - const string _bridgeClassName = "java.time.zone.ZoneOffsetTransitionRule$TimeDefinition"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TimeDefinition() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TimeDefinition(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ZoneRules - /// - /// - /// - public partial class ZoneRules : Java.Io.Serializable - { - const string _bridgeClassName = "java.time.zone.ZoneRules"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZoneRules() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZoneRules(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZoneRulesException - /// - /// - /// - public partial class ZoneRulesException : Java.Time.DateTimeException - { - const string _bridgeClassName = "java.time.zone.ZoneRulesException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ZoneRulesProvider - /// - /// - /// - public partial class ZoneRulesProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.time.zone.ZoneRulesProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ZoneRulesProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ZoneRulesProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ZoneRulesProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ZoneRulesProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransition.cs b/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransition.cs index 5c095f8170..97dbcfaaa5 100644 --- a/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransition.cs +++ b/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransition.cs @@ -25,7 +25,52 @@ namespace Java.Time.Zone { - #region ZoneOffsetTransition + #region ZoneOffsetTransition declaration + /// + /// + /// + public partial class ZoneOffsetTransition : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.zone.ZoneOffsetTransition"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZoneOffsetTransition() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZoneOffsetTransition(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZoneOffsetTransition implementation public partial class ZoneOffsetTransition { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransitionRule.cs b/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransitionRule.cs index 26a0824810..c262e12419 100644 --- a/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransitionRule.cs +++ b/src/net/JNet/Generated/Java/Time/Zone/ZoneOffsetTransitionRule.cs @@ -25,7 +25,97 @@ namespace Java.Time.Zone { - #region ZoneOffsetTransitionRule + #region ZoneOffsetTransitionRule declaration + /// + /// + /// + public partial class ZoneOffsetTransitionRule : Java.Io.Serializable + { + const string _bridgeClassName = "java.time.zone.ZoneOffsetTransitionRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZoneOffsetTransitionRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZoneOffsetTransitionRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region TimeDefinition declaration + /// + /// + /// + public partial class TimeDefinition : Java.Lang.Enum + { + const string _bridgeClassName = "java.time.zone.ZoneOffsetTransitionRule$TimeDefinition"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TimeDefinition() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TimeDefinition(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ZoneOffsetTransitionRule implementation public partial class ZoneOffsetTransitionRule { #region Constructors @@ -139,7 +229,7 @@ public Java.Time.Zone.ZoneOffsetTransition CreateTransition(int arg0) #endregion #region Nested classes - #region TimeDefinition + #region TimeDefinition implementation public partial class TimeDefinition { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Zone/ZoneRules.cs b/src/net/JNet/Generated/Java/Time/Zone/ZoneRules.cs index 64e0bd4b71..5a3361e8db 100644 --- a/src/net/JNet/Generated/Java/Time/Zone/ZoneRules.cs +++ b/src/net/JNet/Generated/Java/Time/Zone/ZoneRules.cs @@ -25,7 +25,52 @@ namespace Java.Time.Zone { - #region ZoneRules + #region ZoneRules declaration + /// + /// + /// + public partial class ZoneRules : Java.Io.Serializable + { + const string _bridgeClassName = "java.time.zone.ZoneRules"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZoneRules() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZoneRules(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZoneRules implementation public partial class ZoneRules { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesException.cs b/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesException.cs index 59eeed437e..3a3db1187f 100644 --- a/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesException.cs +++ b/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesException.cs @@ -25,7 +25,24 @@ namespace Java.Time.Zone { - #region ZoneRulesException + #region ZoneRulesException declaration + /// + /// + /// + public partial class ZoneRulesException : Java.Time.DateTimeException + { + const string _bridgeClassName = "java.time.zone.ZoneRulesException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ZoneRulesException implementation public partial class ZoneRulesException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesProvider.cs b/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesProvider.cs index 8e9e669f16..12a4d4a53d 100644 --- a/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesProvider.cs +++ b/src/net/JNet/Generated/Java/Time/Zone/ZoneRulesProvider.cs @@ -25,7 +25,54 @@ namespace Java.Time.Zone { - #region ZoneRulesProvider + #region ZoneRulesProvider declaration + /// + /// + /// + public partial class ZoneRulesProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.zone.ZoneRulesProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ZoneRulesProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ZoneRulesProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ZoneRulesProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ZoneRulesProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZoneRulesProvider implementation public partial class ZoneRulesProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/ZoneId.cs b/src/net/JNet/Generated/Java/Time/ZoneId.cs index 23d2054aa4..ed0dc3dd41 100644 --- a/src/net/JNet/Generated/Java/Time/ZoneId.cs +++ b/src/net/JNet/Generated/Java/Time/ZoneId.cs @@ -25,7 +25,54 @@ namespace Java.Time { - #region ZoneId + #region ZoneId declaration + /// + /// + /// + public partial class ZoneId : Java.Io.Serializable + { + const string _bridgeClassName = "java.time.ZoneId"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ZoneId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ZoneId() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ZoneId class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ZoneId(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZoneId implementation public partial class ZoneId { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/ZoneOffset.cs b/src/net/JNet/Generated/Java/Time/ZoneOffset.cs index 83f1f56457..7705f603b6 100644 --- a/src/net/JNet/Generated/Java/Time/ZoneOffset.cs +++ b/src/net/JNet/Generated/Java/Time/ZoneOffset.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region ZoneOffset + #region ZoneOffset declaration + /// + /// + /// + public partial class ZoneOffset : Java.Time.ZoneId + { + const string _bridgeClassName = "java.time.ZoneOffset"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZoneOffset() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZoneOffset(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZoneOffset implementation public partial class ZoneOffset { #region Constructors diff --git a/src/net/JNet/Generated/Java/Time/ZonedDateTime.cs b/src/net/JNet/Generated/Java/Time/ZonedDateTime.cs index f63bf44a32..7f41608f01 100644 --- a/src/net/JNet/Generated/Java/Time/ZonedDateTime.cs +++ b/src/net/JNet/Generated/Java/Time/ZonedDateTime.cs @@ -25,7 +25,52 @@ namespace Java.Time { - #region ZonedDateTime + #region ZonedDateTime declaration + /// + /// + /// + public partial class ZonedDateTime : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.time.ZonedDateTime"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZonedDateTime() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZonedDateTime(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZonedDateTime implementation public partial class ZonedDateTime { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AbstractCollection.cs b/src/net/JNet/Generated/Java/Util/AbstractCollection.cs index 19171152f2..f56d1aea73 100644 --- a/src/net/JNet/Generated/Java/Util/AbstractCollection.cs +++ b/src/net/JNet/Generated/Java/Util/AbstractCollection.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region AbstractCollection + #region AbstractCollection declaration + /// + /// + /// + public partial class AbstractCollection : Java.Util.Collection + { + const string _bridgeClassName = "java.util.AbstractCollection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractCollection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractCollection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractCollection declaration + /// + /// + /// + /// + public partial class AbstractCollection : Java.Util.Collection + { + const string _bridgeClassName = "java.util.AbstractCollection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractCollection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractCollection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractCollection implementation public partial class AbstractCollection { #region Constructors @@ -167,7 +262,7 @@ public void Clear() } #endregion - #region AbstractCollection + #region AbstractCollection implementation public partial class AbstractCollection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AbstractList.cs b/src/net/JNet/Generated/Java/Util/AbstractList.cs index 59706a633f..e63d2e3eaf 100644 --- a/src/net/JNet/Generated/Java/Util/AbstractList.cs +++ b/src/net/JNet/Generated/Java/Util/AbstractList.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region AbstractList + #region AbstractList declaration + /// + /// + /// + public partial class AbstractList : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.AbstractList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractList declaration + /// + /// + /// + /// + public partial class AbstractList : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.AbstractList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractList implementation public partial class AbstractList { #region Constructors @@ -152,7 +247,7 @@ public void Add(int arg0, object arg1) } #endregion - #region AbstractList + #region AbstractList implementation public partial class AbstractList { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AbstractMap.cs b/src/net/JNet/Generated/Java/Util/AbstractMap.cs index 0e57315f35..0dbeb26133 100644 --- a/src/net/JNet/Generated/Java/Util/AbstractMap.cs +++ b/src/net/JNet/Generated/Java/Util/AbstractMap.cs @@ -25,7 +25,287 @@ namespace Java.Util { - #region AbstractMap + #region AbstractMap declaration + /// + /// + /// + public partial class AbstractMap : Java.Util.Map + { + const string _bridgeClassName = "java.util.AbstractMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region SimpleEntry declaration + /// + /// + /// + public partial class SimpleEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.AbstractMap$SimpleEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SimpleEntry declaration + /// + /// + /// + /// + /// + public partial class SimpleEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.AbstractMap$SimpleEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SimpleImmutableEntry declaration + /// + /// + /// + public partial class SimpleImmutableEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.AbstractMap$SimpleImmutableEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleImmutableEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleImmutableEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SimpleImmutableEntry declaration + /// + /// + /// + /// + /// + public partial class SimpleImmutableEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.AbstractMap$SimpleImmutableEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleImmutableEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleImmutableEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AbstractMap declaration + /// + /// + /// + /// + /// + public partial class AbstractMap : Java.Util.Map + { + const string _bridgeClassName = "java.util.AbstractMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractMap implementation public partial class AbstractMap { #region Constructors @@ -150,7 +430,7 @@ public void PutAll(Java.Util.Map arg0) #endregion #region Nested classes - #region SimpleEntry + #region SimpleEntry implementation public partial class SimpleEntry { #region Constructors @@ -225,7 +505,7 @@ public object SetValue(object arg0) } #endregion - #region SimpleEntry + #region SimpleEntry implementation public partial class SimpleEntry { #region Constructors @@ -304,7 +584,7 @@ public V SetValue(V arg0) } #endregion - #region SimpleImmutableEntry + #region SimpleImmutableEntry implementation public partial class SimpleImmutableEntry { #region Constructors @@ -379,7 +659,7 @@ public object SetValue(object arg0) } #endregion - #region SimpleImmutableEntry + #region SimpleImmutableEntry implementation public partial class SimpleImmutableEntry { #region Constructors @@ -465,7 +745,7 @@ public V SetValue(V arg0) } #endregion - #region AbstractMap + #region AbstractMap implementation public partial class AbstractMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AbstractQueue.cs b/src/net/JNet/Generated/Java/Util/AbstractQueue.cs index e354dc9e3f..a5d170fcbb 100644 --- a/src/net/JNet/Generated/Java/Util/AbstractQueue.cs +++ b/src/net/JNet/Generated/Java/Util/AbstractQueue.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region AbstractQueue + #region AbstractQueue declaration + /// + /// + /// + public partial class AbstractQueue : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.AbstractQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractQueue declaration + /// + /// + /// + /// + public partial class AbstractQueue : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.AbstractQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractQueue implementation public partial class AbstractQueue { #region Constructors @@ -76,7 +171,7 @@ public object Remove() } #endregion - #region AbstractQueue + #region AbstractQueue implementation public partial class AbstractQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AbstractSequentialList.cs b/src/net/JNet/Generated/Java/Util/AbstractSequentialList.cs index d4bf0ebc7e..c2ccd5b24d 100644 --- a/src/net/JNet/Generated/Java/Util/AbstractSequentialList.cs +++ b/src/net/JNet/Generated/Java/Util/AbstractSequentialList.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region AbstractSequentialList + #region AbstractSequentialList declaration + /// + /// + /// + public partial class AbstractSequentialList : Java.Util.AbstractList + { + const string _bridgeClassName = "java.util.AbstractSequentialList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSequentialList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSequentialList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSequentialList declaration + /// + /// + /// + /// + public partial class AbstractSequentialList : Java.Util.AbstractList + { + const string _bridgeClassName = "java.util.AbstractSequentialList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSequentialList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSequentialList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSequentialList implementation public partial class AbstractSequentialList { #region Constructors @@ -56,7 +151,7 @@ public partial class AbstractSequentialList } #endregion - #region AbstractSequentialList + #region AbstractSequentialList implementation public partial class AbstractSequentialList { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AbstractSet.cs b/src/net/JNet/Generated/Java/Util/AbstractSet.cs index 22f402886c..98a733dac0 100644 --- a/src/net/JNet/Generated/Java/Util/AbstractSet.cs +++ b/src/net/JNet/Generated/Java/Util/AbstractSet.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region AbstractSet + #region AbstractSet declaration + /// + /// + /// + public partial class AbstractSet : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.AbstractSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSet declaration + /// + /// + /// + /// + public partial class AbstractSet : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.AbstractSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSet implementation public partial class AbstractSet { #region Constructors @@ -60,7 +155,7 @@ public partial class AbstractSet } #endregion - #region AbstractSet + #region AbstractSet implementation public partial class AbstractSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/AllPackageClasses.cs deleted file mode 100644 index 4724a2d248..0000000000 --- a/src/net/JNet/Generated/Java/Util/AllPackageClasses.cs +++ /dev/null @@ -1,7274 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util -{ - #region AbstractCollection - /// - /// - /// - public partial class AbstractCollection : Java.Util.Collection - { - const string _bridgeClassName = "java.util.AbstractCollection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractCollection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractCollection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractCollection - /// - /// - /// - /// - public partial class AbstractCollection : Java.Util.Collection - { - const string _bridgeClassName = "java.util.AbstractCollection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractCollection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractCollection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractList - /// - /// - /// - public partial class AbstractList : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.AbstractList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractList - /// - /// - /// - /// - public partial class AbstractList : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.AbstractList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractMap - /// - /// - /// - public partial class AbstractMap : Java.Util.Map - { - const string _bridgeClassName = "java.util.AbstractMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region SimpleEntry - /// - /// - /// - public partial class SimpleEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.AbstractMap$SimpleEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SimpleEntry - /// - /// - /// - /// - /// - public partial class SimpleEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.AbstractMap$SimpleEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SimpleImmutableEntry - /// - /// - /// - public partial class SimpleImmutableEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.AbstractMap$SimpleImmutableEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleImmutableEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleImmutableEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SimpleImmutableEntry - /// - /// - /// - /// - /// - public partial class SimpleImmutableEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.AbstractMap$SimpleImmutableEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleImmutableEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleImmutableEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AbstractMap - /// - /// - /// - /// - /// - public partial class AbstractMap : Java.Util.Map - { - const string _bridgeClassName = "java.util.AbstractMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractQueue - /// - /// - /// - public partial class AbstractQueue : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.AbstractQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractQueue - /// - /// - /// - /// - public partial class AbstractQueue : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.AbstractQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSequentialList - /// - /// - /// - public partial class AbstractSequentialList : Java.Util.AbstractList - { - const string _bridgeClassName = "java.util.AbstractSequentialList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSequentialList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSequentialList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSequentialList - /// - /// - /// - /// - public partial class AbstractSequentialList : Java.Util.AbstractList - { - const string _bridgeClassName = "java.util.AbstractSequentialList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSequentialList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSequentialList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSequentialList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSet - /// - /// - /// - public partial class AbstractSet : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.AbstractSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSet - /// - /// - /// - /// - public partial class AbstractSet : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.AbstractSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayDeque - /// - /// - /// - public partial class ArrayDeque : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.ArrayDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayDeque - /// - /// - /// - /// - public partial class ArrayDeque : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.ArrayDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayList - /// - /// - /// - public partial class ArrayList : Java.Util.AbstractList - { - const string _bridgeClassName = "java.util.ArrayList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayList - /// - /// - /// - /// - public partial class ArrayList : Java.Util.AbstractList - { - const string _bridgeClassName = "java.util.ArrayList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Arrays - /// - /// - /// - public partial class Arrays : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Arrays"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Arrays() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Arrays(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Base64 - /// - /// - /// - public partial class Base64 : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Base64"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Base64() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Base64(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Decoder - /// - /// - /// - public partial class Decoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Base64$Decoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Decoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Decoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Encoder - /// - /// - /// - public partial class Encoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Base64$Encoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Encoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Encoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BitSet - /// - /// - /// - public partial class BitSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.BitSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BitSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BitSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Calendar - /// - /// - /// - public partial class Calendar : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Calendar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Calendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Calendar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Calendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Calendar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Calendar$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Collection - /// - /// - /// - public partial class Collection : Java.Lang.Iterable - { - const string _bridgeClassName = "java.util.Collection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Collection - /// - /// - /// - /// - public partial class Collection : Java.Lang.Iterable - { - const string _bridgeClassName = "java.util.Collection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Collections - /// - /// - /// - public partial class Collections : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Collections"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Collections() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Collections(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - - - - #region ConcurrentModificationException - /// - /// - /// - public partial class ConcurrentModificationException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.ConcurrentModificationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Currency - /// - /// - /// - public partial class Currency : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.Currency"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Currency() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Currency(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Date - /// - /// - /// - public partial class Date : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Date"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Date() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Date(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Deque - /// - /// - /// - public partial class Deque : Java.Util.Queue - { - const string _bridgeClassName = "java.util.Deque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Deque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Deque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Deque - /// - /// - /// - /// - public partial class Deque : Java.Util.Queue - { - const string _bridgeClassName = "java.util.Deque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Deque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Deque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Dictionary - /// - /// - /// - public partial class Dictionary : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Dictionary"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Dictionary() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Dictionary(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Dictionary - /// - /// - /// - /// - /// - public partial class Dictionary : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.Dictionary"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Dictionary() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Dictionary(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DoubleSummaryStatistics - /// - /// - /// - public partial class DoubleSummaryStatistics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.DoubleSummaryStatistics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleSummaryStatistics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DoubleSummaryStatistics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DuplicateFormatFlagsException - /// - /// - /// - public partial class DuplicateFormatFlagsException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.DuplicateFormatFlagsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region EmptyStackException - /// - /// - /// - public partial class EmptyStackException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.EmptyStackException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Enumeration - /// - /// - /// - public partial class Enumeration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Enumeration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enumeration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enumeration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Enumeration - /// - /// - /// - /// - public partial class Enumeration : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.Enumeration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enumeration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Enumeration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EnumMap - /// - /// - /// - public partial class EnumMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.EnumMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EnumMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EnumMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EnumMap - /// - /// - /// - /// - /// - public partial class EnumMap : Java.Util.AbstractMap where K : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.EnumMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EnumMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EnumMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EnumSet - /// - /// - /// - public partial class EnumSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.EnumSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EnumSet - /// - /// - /// - /// - public partial class EnumSet : Java.Util.AbstractSet where E : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.EnumSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventListenerProxy - /// - /// - /// - public partial class EventListenerProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.EventListenerProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventListenerProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventListenerProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventListenerProxy - /// - /// - /// - /// - public partial class EventListenerProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where T : Java.Util.IEventListener, new() - { - const string _bridgeClassName = "java.util.EventListenerProxy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventListenerProxy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventListenerProxy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventObject - /// - /// - /// - public partial class EventObject : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.EventObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FormatFlagsConversionMismatchException - /// - /// - /// - public partial class FormatFlagsConversionMismatchException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.FormatFlagsConversionMismatchException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Formattable - /// - /// - /// - public partial class Formattable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Formattable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Formattable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Formattable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Formattable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Formattable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FormattableFlags - /// - /// - /// - public partial class FormattableFlags : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.FormattableFlags"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FormattableFlags() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FormattableFlags(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Formatter - /// - /// - /// - public partial class Formatter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Formatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Formatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Formatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BigDecimalLayoutForm - /// - /// - /// - public partial class BigDecimalLayoutForm : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.Formatter$BigDecimalLayoutForm"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BigDecimalLayoutForm() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BigDecimalLayoutForm(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FormatterClosedException - /// - /// - /// - public partial class FormatterClosedException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.util.FormatterClosedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region GregorianCalendar - /// - /// - /// - public partial class GregorianCalendar : Java.Util.Calendar - { - const string _bridgeClassName = "java.util.GregorianCalendar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GregorianCalendar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GregorianCalendar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashMap - /// - /// - /// - public partial class HashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.HashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashMap - /// - /// - /// - /// - /// - public partial class HashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.HashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashSet - /// - /// - /// - public partial class HashSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.HashSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashSet - /// - /// - /// - /// - public partial class HashSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.HashSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Hashtable - /// - /// - /// - public partial class Hashtable : Java.Util.Dictionary - { - const string _bridgeClassName = "java.util.Hashtable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Hashtable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Hashtable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Hashtable - /// - /// - /// - /// - /// - public partial class Hashtable : Java.Util.Dictionary - { - const string _bridgeClassName = "java.util.Hashtable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Hashtable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Hashtable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IdentityHashMap - /// - /// - /// - public partial class IdentityHashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.IdentityHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IdentityHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IdentityHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IdentityHashMap - /// - /// - /// - /// - /// - public partial class IdentityHashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.IdentityHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IdentityHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IdentityHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalFormatCodePointException - /// - /// - /// - public partial class IllegalFormatCodePointException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.IllegalFormatCodePointException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalFormatConversionException - /// - /// - /// - public partial class IllegalFormatConversionException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.IllegalFormatConversionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalFormatException - /// - /// - /// - public partial class IllegalFormatException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.util.IllegalFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalFormatFlagsException - /// - /// - /// - public partial class IllegalFormatFlagsException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.IllegalFormatFlagsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalFormatPrecisionException - /// - /// - /// - public partial class IllegalFormatPrecisionException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.IllegalFormatPrecisionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllegalFormatWidthException - /// - /// - /// - public partial class IllegalFormatWidthException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.IllegalFormatWidthException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IllformedLocaleException - /// - /// - /// - public partial class IllformedLocaleException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.IllformedLocaleException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InputMismatchException - /// - /// - /// - public partial class InputMismatchException : Java.Util.NoSuchElementException - { - const string _bridgeClassName = "java.util.InputMismatchException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IntSummaryStatistics - /// - /// - /// - public partial class IntSummaryStatistics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.IntSummaryStatistics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntSummaryStatistics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IntSummaryStatistics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidPropertiesFormatException - /// - /// - /// - public partial class InvalidPropertiesFormatException : Java.Io.IOException - { - const string _bridgeClassName = "java.util.InvalidPropertiesFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - - - - - #region LinkedHashMap - /// - /// - /// - public partial class LinkedHashMap : Java.Util.HashMap - { - const string _bridgeClassName = "java.util.LinkedHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedHashMap - /// - /// - /// - /// - /// - public partial class LinkedHashMap : Java.Util.HashMap - { - const string _bridgeClassName = "java.util.LinkedHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedHashSet - /// - /// - /// - public partial class LinkedHashSet : Java.Util.HashSet - { - const string _bridgeClassName = "java.util.LinkedHashSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedHashSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedHashSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedHashSet - /// - /// - /// - /// - public partial class LinkedHashSet : Java.Util.HashSet - { - const string _bridgeClassName = "java.util.LinkedHashSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedHashSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedHashSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedList - /// - /// - /// - public partial class LinkedList : Java.Util.AbstractSequentialList - { - const string _bridgeClassName = "java.util.LinkedList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedList - /// - /// - /// - /// - public partial class LinkedList : Java.Util.AbstractSequentialList - { - const string _bridgeClassName = "java.util.LinkedList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region List - /// - /// - /// - public partial class List : Java.Util.Collection - { - const string _bridgeClassName = "java.util.List"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public List() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public List(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region List - /// - /// - /// - /// - public partial class List : Java.Util.Collection - { - const string _bridgeClassName = "java.util.List"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public List() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public List(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListIterator - /// - /// - /// - public partial class ListIterator : Java.Util.Iterator - { - const string _bridgeClassName = "java.util.ListIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListIterator - /// - /// - /// - /// - public partial class ListIterator : Java.Util.Iterator - { - const string _bridgeClassName = "java.util.ListIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListResourceBundle - /// - /// - /// - public partial class ListResourceBundle : Java.Util.ResourceBundle - { - const string _bridgeClassName = "java.util.ListResourceBundle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListResourceBundle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListResourceBundle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Locale - /// - /// - /// - public partial class Locale : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Locale"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Locale() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Locale(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Locale$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Category - /// - /// - /// - public partial class Category : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.Locale$Category"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Category() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Category(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FilteringMode - /// - /// - /// - public partial class FilteringMode : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.Locale$FilteringMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilteringMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilteringMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region IsoCountryCode - /// - /// - /// - public partial class IsoCountryCode : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.Locale$IsoCountryCode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IsoCountryCode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IsoCountryCode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IsoCountryCode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IsoCountryCode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region LanguageRange - /// - /// - /// - public partial class LanguageRange : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Locale$LanguageRange"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LanguageRange() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LanguageRange(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region LongSummaryStatistics - /// - /// - /// - public partial class LongSummaryStatistics : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.LongSummaryStatistics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongSummaryStatistics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LongSummaryStatistics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Map - /// - /// - /// - public partial class Map : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Map"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Map() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Map(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Entry - /// - /// - /// - public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Map$Entry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Entry - /// - /// - /// - /// - /// - public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.Map$Entry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Map - /// - /// - /// - /// - /// - public partial class Map : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.Map"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Map() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Map(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MissingFormatArgumentException - /// - /// - /// - public partial class MissingFormatArgumentException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.MissingFormatArgumentException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MissingFormatWidthException - /// - /// - /// - public partial class MissingFormatWidthException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.MissingFormatWidthException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MissingResourceException - /// - /// - /// - public partial class MissingResourceException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.MissingResourceException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NavigableMap - /// - /// - /// - public partial class NavigableMap : Java.Util.SortedMap - { - const string _bridgeClassName = "java.util.NavigableMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NavigableMap - /// - /// - /// - /// - /// - public partial class NavigableMap : Java.Util.SortedMap - { - const string _bridgeClassName = "java.util.NavigableMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NavigableSet - /// - /// - /// - public partial class NavigableSet : Java.Util.SortedSet - { - const string _bridgeClassName = "java.util.NavigableSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NavigableSet - /// - /// - /// - /// - public partial class NavigableSet : Java.Util.SortedSet - { - const string _bridgeClassName = "java.util.NavigableSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NavigableSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchElementException - /// - /// - /// - public partial class NoSuchElementException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.NoSuchElementException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Objects - /// - /// - /// - public partial class Objects : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Objects"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Objects() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Objects(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Optional - /// - /// - /// - public partial class Optional : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Optional"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Optional() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Optional(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Optional - /// - /// - /// - /// - public partial class Optional : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.Optional"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Optional() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Optional(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OptionalDouble - /// - /// - /// - public partial class OptionalDouble : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.OptionalDouble"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OptionalDouble() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OptionalDouble(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OptionalInt - /// - /// - /// - public partial class OptionalInt : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.OptionalInt"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OptionalInt() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OptionalInt(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OptionalLong - /// - /// - /// - public partial class OptionalLong : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.OptionalLong"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OptionalLong() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OptionalLong(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrimitiveIterator - /// - /// - /// - public partial class PrimitiveIterator : Java.Util.Iterator - { - const string _bridgeClassName = "java.util.PrimitiveIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrimitiveIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrimitiveIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region OfDouble - /// - /// - /// - public partial class OfDouble : Java.Util.PrimitiveIterator - { - const string _bridgeClassName = "java.util.PrimitiveIterator$OfDouble"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfDouble() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfDouble(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OfInt - /// - /// - /// - public partial class OfInt : Java.Util.PrimitiveIterator - { - const string _bridgeClassName = "java.util.PrimitiveIterator$OfInt"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfInt() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfInt(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OfLong - /// - /// - /// - public partial class OfLong : Java.Util.PrimitiveIterator - { - const string _bridgeClassName = "java.util.PrimitiveIterator$OfLong"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfLong() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfLong(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region PrimitiveIterator - /// - /// - /// - /// - /// - public partial class PrimitiveIterator : Java.Util.Iterator - { - const string _bridgeClassName = "java.util.PrimitiveIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrimitiveIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrimitiveIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PriorityQueue - /// - /// - /// - public partial class PriorityQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.PriorityQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PriorityQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PriorityQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PriorityQueue - /// - /// - /// - /// - public partial class PriorityQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.PriorityQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PriorityQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PriorityQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Properties - /// - /// - /// - public partial class Properties : Java.Util.Hashtable - { - const string _bridgeClassName = "java.util.Properties"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Properties() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Properties(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyPermission - /// - /// - /// - public partial class PropertyPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.util.PropertyPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyResourceBundle - /// - /// - /// - public partial class PropertyResourceBundle : Java.Util.ResourceBundle - { - const string _bridgeClassName = "java.util.PropertyResourceBundle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyResourceBundle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyResourceBundle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Queue - /// - /// - /// - public partial class Queue : Java.Util.Collection - { - const string _bridgeClassName = "java.util.Queue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Queue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Queue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Queue - /// - /// - /// - /// - public partial class Queue : Java.Util.Collection - { - const string _bridgeClassName = "java.util.Queue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Queue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Queue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Random - /// - /// - /// - public partial class Random : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.Random"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Random() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Random(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RandomAccess - /// - /// - /// - public partial class RandomAccess : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.RandomAccess"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RandomAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RandomAccess() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RandomAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RandomAccess(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResourceBundle - /// - /// - /// - public partial class ResourceBundle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.ResourceBundle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResourceBundle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResourceBundle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Control - /// - /// - /// - public partial class Control : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.ResourceBundle$Control"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Control() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Control(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Scanner - /// - /// - /// - public partial class Scanner : Java.Util.Iterator - { - const string _bridgeClassName = "java.util.Scanner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Scanner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Scanner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServiceConfigurationError - /// - /// - /// - public partial class ServiceConfigurationError : Java.Lang.Error - { - const string _bridgeClassName = "java.util.ServiceConfigurationError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ServiceLoader - /// - /// - /// - public partial class ServiceLoader : Java.Lang.Iterable - { - const string _bridgeClassName = "java.util.ServiceLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ServiceLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ServiceLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServiceLoader - /// - /// - /// - /// - public partial class ServiceLoader : Java.Lang.Iterable - { - const string _bridgeClassName = "java.util.ServiceLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ServiceLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ServiceLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Set - /// - /// - /// - public partial class Set : Java.Util.Collection - { - const string _bridgeClassName = "java.util.Set"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Set() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Set(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Set - /// - /// - /// - /// - public partial class Set : Java.Util.Collection - { - const string _bridgeClassName = "java.util.Set"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Set() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Set(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTimeZone - /// - /// - /// - public partial class SimpleTimeZone : Java.Util.TimeZone - { - const string _bridgeClassName = "java.util.SimpleTimeZone"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTimeZone() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTimeZone(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortedMap - /// - /// - /// - public partial class SortedMap : Java.Util.Map - { - const string _bridgeClassName = "java.util.SortedMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortedMap - /// - /// - /// - /// - /// - public partial class SortedMap : Java.Util.Map - { - const string _bridgeClassName = "java.util.SortedMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortedSet - /// - /// - /// - public partial class SortedSet : Java.Util.Set - { - const string _bridgeClassName = "java.util.SortedSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortedSet - /// - /// - /// - /// - public partial class SortedSet : Java.Util.Set - { - const string _bridgeClassName = "java.util.SortedSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SortedSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Spliterator - /// - /// - /// - public partial class Spliterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Spliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Spliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Spliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region OfDouble - /// - /// - /// - public partial class OfDouble : Java.Util.Spliterator.OfPrimitive - { - const string _bridgeClassName = "java.util.Spliterator$OfDouble"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfDouble() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfDouble(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OfInt - /// - /// - /// - public partial class OfInt : Java.Util.Spliterator.OfPrimitive - { - const string _bridgeClassName = "java.util.Spliterator$OfInt"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfInt() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfInt(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OfLong - /// - /// - /// - public partial class OfLong : Java.Util.Spliterator.OfPrimitive - { - const string _bridgeClassName = "java.util.Spliterator$OfLong"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfLong() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfLong(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OfPrimitive - /// - /// - /// - public partial class OfPrimitive : Java.Util.Spliterator - { - const string _bridgeClassName = "java.util.Spliterator$OfPrimitive"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfPrimitive() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfPrimitive(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OfPrimitive - /// - /// - /// - /// - /// - /// - public partial class OfPrimitive : Java.Util.Spliterator where T_SPLITR : Java.Util.Spliterator.OfPrimitive - { - const string _bridgeClassName = "java.util.Spliterator$OfPrimitive"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfPrimitive() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OfPrimitive(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Spliterator - /// - /// - /// - /// - public partial class Spliterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.Spliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Spliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Spliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Spliterators - /// - /// - /// - public partial class Spliterators : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Spliterators"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Spliterators() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Spliterators(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AbstractDoubleSpliterator - /// - /// - /// - public partial class AbstractDoubleSpliterator : Java.Util.Spliterator.OfDouble - { - const string _bridgeClassName = "java.util.Spliterators$AbstractDoubleSpliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractDoubleSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractDoubleSpliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractDoubleSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractDoubleSpliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region AbstractIntSpliterator - /// - /// - /// - public partial class AbstractIntSpliterator : Java.Util.Spliterator.OfInt - { - const string _bridgeClassName = "java.util.Spliterators$AbstractIntSpliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractIntSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractIntSpliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractIntSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractIntSpliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region AbstractLongSpliterator - /// - /// - /// - public partial class AbstractLongSpliterator : Java.Util.Spliterator.OfLong - { - const string _bridgeClassName = "java.util.Spliterators$AbstractLongSpliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractLongSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractLongSpliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractLongSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractLongSpliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region AbstractSpliterator - /// - /// - /// - public partial class AbstractSpliterator : Java.Util.Spliterator - { - const string _bridgeClassName = "java.util.Spliterators$AbstractSpliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSpliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSpliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region AbstractSpliterator - /// - /// - /// - /// - public partial class AbstractSpliterator : Java.Util.Spliterator - { - const string _bridgeClassName = "java.util.Spliterators$AbstractSpliterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSpliterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSpliterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region SplittableRandom - /// - /// - /// - public partial class SplittableRandom : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.SplittableRandom"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SplittableRandom() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SplittableRandom(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Stack - /// - /// - /// - public partial class Stack : Java.Util.Vector - { - const string _bridgeClassName = "java.util.Stack"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Stack() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Stack(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Stack - /// - /// - /// - /// - public partial class Stack : Java.Util.Vector - { - const string _bridgeClassName = "java.util.Stack"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Stack() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Stack(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringJoiner - /// - /// - /// - public partial class StringJoiner : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.StringJoiner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringJoiner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringJoiner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringTokenizer - /// - /// - /// - public partial class StringTokenizer : Java.Util.Enumeration - { - const string _bridgeClassName = "java.util.StringTokenizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringTokenizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringTokenizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Timer - /// - /// - /// - public partial class Timer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.Timer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Timer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Timer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TimerTask - /// - /// - /// - public partial class TimerTask : Java.Lang.Runnable - { - const string _bridgeClassName = "java.util.TimerTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TimerTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimerTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TimerTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimerTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TimeZone - /// - /// - /// - public partial class TimeZone : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.TimeZone"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TimeZone class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimeZone() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TimeZone class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimeZone(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TooManyListenersException - /// - /// - /// - public partial class TooManyListenersException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.TooManyListenersException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region TreeMap - /// - /// - /// - public partial class TreeMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.TreeMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeMap - /// - /// - /// - /// - /// - public partial class TreeMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.TreeMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeSet - /// - /// - /// - public partial class TreeSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.TreeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeSet - /// - /// - /// - /// - public partial class TreeSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.TreeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnknownFormatConversionException - /// - /// - /// - public partial class UnknownFormatConversionException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.UnknownFormatConversionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownFormatFlagsException - /// - /// - /// - public partial class UnknownFormatFlagsException : Java.Util.IllegalFormatException - { - const string _bridgeClassName = "java.util.UnknownFormatFlagsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UUID - /// - /// - /// - public partial class UUID : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.UUID"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UUID() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UUID(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Vector - /// - /// - /// - public partial class Vector : Java.Util.AbstractList - { - const string _bridgeClassName = "java.util.Vector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Vector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Vector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Vector - /// - /// - /// - /// - public partial class Vector : Java.Util.AbstractList - { - const string _bridgeClassName = "java.util.Vector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Vector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Vector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WeakHashMap - /// - /// - /// - public partial class WeakHashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.WeakHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WeakHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WeakHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WeakHashMap - /// - /// - /// - /// - /// - public partial class WeakHashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.WeakHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WeakHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WeakHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/ArrayDeque.cs b/src/net/JNet/Generated/Java/Util/ArrayDeque.cs index 8a8a4e2b70..1d36a2e073 100644 --- a/src/net/JNet/Generated/Java/Util/ArrayDeque.cs +++ b/src/net/JNet/Generated/Java/Util/ArrayDeque.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region ArrayDeque + #region ArrayDeque declaration + /// + /// + /// + public partial class ArrayDeque : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.ArrayDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayDeque declaration + /// + /// + /// + /// + public partial class ArrayDeque : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.ArrayDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayDeque implementation public partial class ArrayDeque { #region Constructors @@ -271,7 +362,7 @@ public void Push(object arg0) } #endregion - #region ArrayDeque + #region ArrayDeque implementation public partial class ArrayDeque { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ArrayList.cs b/src/net/JNet/Generated/Java/Util/ArrayList.cs index fc4766ffa8..1ac2cc9de6 100644 --- a/src/net/JNet/Generated/Java/Util/ArrayList.cs +++ b/src/net/JNet/Generated/Java/Util/ArrayList.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region ArrayList + #region ArrayList declaration + /// + /// + /// + public partial class ArrayList : Java.Util.AbstractList + { + const string _bridgeClassName = "java.util.ArrayList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayList declaration + /// + /// + /// + /// + public partial class ArrayList : Java.Util.AbstractList + { + const string _bridgeClassName = "java.util.ArrayList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayList implementation public partial class ArrayList { #region Constructors @@ -99,7 +190,7 @@ public void TrimToSize() } #endregion - #region ArrayList + #region ArrayList implementation public partial class ArrayList { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Arrays.cs b/src/net/JNet/Generated/Java/Util/Arrays.cs index a97d292a48..5d10ae9b28 100644 --- a/src/net/JNet/Generated/Java/Util/Arrays.cs +++ b/src/net/JNet/Generated/Java/Util/Arrays.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Arrays + #region Arrays declaration + /// + /// + /// + public partial class Arrays : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Arrays"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Arrays() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Arrays(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Arrays implementation public partial class Arrays { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Base64.cs b/src/net/JNet/Generated/Java/Util/Base64.cs index 4d3ed364d5..7623262132 100644 --- a/src/net/JNet/Generated/Java/Util/Base64.cs +++ b/src/net/JNet/Generated/Java/Util/Base64.cs @@ -25,7 +25,142 @@ namespace Java.Util { - #region Base64 + #region Base64 declaration + /// + /// + /// + public partial class Base64 : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Base64"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Base64() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Base64(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Decoder declaration + /// + /// + /// + public partial class Decoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Base64$Decoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Decoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Decoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Encoder declaration + /// + /// + /// + public partial class Encoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Base64$Encoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Encoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Encoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Base64 implementation public partial class Base64 { #region Constructors @@ -101,7 +236,7 @@ public static Java.Util.Base64.Encoder GetMimeEncoder(int arg0, byte[] arg1) #endregion #region Nested classes - #region Decoder + #region Decoder implementation public partial class Decoder { #region Constructors @@ -178,7 +313,7 @@ public Java.Nio.ByteBuffer Decode(Java.Nio.ByteBuffer arg0) } #endregion - #region Encoder + #region Encoder implementation public partial class Encoder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/BitSet.cs b/src/net/JNet/Generated/Java/Util/BitSet.cs index 7c9b657039..46c11467db 100644 --- a/src/net/JNet/Generated/Java/Util/BitSet.cs +++ b/src/net/JNet/Generated/Java/Util/BitSet.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region BitSet + #region BitSet declaration + /// + /// + /// + public partial class BitSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.BitSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BitSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BitSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BitSet implementation public partial class BitSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Calendar.cs b/src/net/JNet/Generated/Java/Util/Calendar.cs index 83b7b65876..7257ea9ea2 100644 --- a/src/net/JNet/Generated/Java/Util/Calendar.cs +++ b/src/net/JNet/Generated/Java/Util/Calendar.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region Calendar + #region Calendar declaration + /// + /// + /// + public partial class Calendar : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Calendar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Calendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Calendar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Calendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Calendar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Calendar$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Calendar implementation public partial class Calendar { #region Constructors @@ -724,7 +816,7 @@ public void SetWeekDate(int arg0, int arg1, int arg2) #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Collection.cs b/src/net/JNet/Generated/Java/Util/Collection.cs index 88fbe96a0c..ae1d0aaa4b 100644 --- a/src/net/JNet/Generated/Java/Util/Collection.cs +++ b/src/net/JNet/Generated/Java/Util/Collection.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region Collection + #region Collection declaration + /// + /// + /// + public partial class Collection : Java.Lang.Iterable + { + const string _bridgeClassName = "java.util.Collection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Collection declaration + /// + /// + /// + /// + public partial class Collection : Java.Lang.Iterable + { + const string _bridgeClassName = "java.util.Collection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Collection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Collection implementation public partial class Collection { #region Constructors @@ -330,7 +425,7 @@ public partial interface ICollection } #endregion - #region Collection + #region Collection implementation public partial class Collection : Java.Util.ICollection { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Collections.cs b/src/net/JNet/Generated/Java/Util/Collections.cs index 23d5de841b..57a58df05d 100644 --- a/src/net/JNet/Generated/Java/Util/Collections.cs +++ b/src/net/JNet/Generated/Java/Util/Collections.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Collections + #region Collections declaration + /// + /// + /// + public partial class Collections : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Collections"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Collections() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Collections(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Collections implementation public partial class Collections { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/AbstractExecutorService.cs b/src/net/JNet/Generated/Java/Util/Concurrent/AbstractExecutorService.cs index c7c374ad91..867c016172 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/AbstractExecutorService.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/AbstractExecutorService.cs @@ -25,7 +25,54 @@ namespace Java.Util.Concurrent { - #region AbstractExecutorService + #region AbstractExecutorService declaration + /// + /// + /// + public partial class AbstractExecutorService : Java.Util.Concurrent.ExecutorService + { + const string _bridgeClassName = "java.util.concurrent.AbstractExecutorService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractExecutorService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractExecutorService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractExecutorService implementation public partial class AbstractExecutorService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Concurrent/AllPackageClasses.cs deleted file mode 100644 index 87200bbd68..0000000000 --- a/src/net/JNet/Generated/Java/Util/Concurrent/AllPackageClasses.cs +++ /dev/null @@ -1,4952 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Concurrent -{ - #region AbstractExecutorService - /// - /// - /// - public partial class AbstractExecutorService : Java.Util.Concurrent.ExecutorService - { - const string _bridgeClassName = "java.util.concurrent.AbstractExecutorService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractExecutorService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractExecutorService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayBlockingQueue - /// - /// - /// - public partial class ArrayBlockingQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.ArrayBlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayBlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayBlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayBlockingQueue - /// - /// - /// - /// - public partial class ArrayBlockingQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.ArrayBlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayBlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayBlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BlockingDeque - /// - /// - /// - public partial class BlockingDeque : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.BlockingDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BlockingDeque - /// - /// - /// - /// - public partial class BlockingDeque : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.BlockingDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BlockingQueue - /// - /// - /// - public partial class BlockingQueue : Java.Util.Queue - { - const string _bridgeClassName = "java.util.concurrent.BlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BlockingQueue - /// - /// - /// - /// - public partial class BlockingQueue : Java.Util.Queue - { - const string _bridgeClassName = "java.util.concurrent.BlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BrokenBarrierException - /// - /// - /// - public partial class BrokenBarrierException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.concurrent.BrokenBarrierException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Callable - /// - /// - /// - public partial class Callable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Callable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Callable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Callable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Callable - /// - /// - /// - /// - public partial class Callable : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.Callable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Callable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Callable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CancellationException - /// - /// - /// - public partial class CancellationException : Java.Lang.IllegalStateException - { - const string _bridgeClassName = "java.util.concurrent.CancellationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CompletableFuture - /// - /// - /// - public partial class CompletableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CompletableFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompletableFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompletableFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AsynchronousCompletionTask - /// - /// - /// - public partial class AsynchronousCompletionTask : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CompletableFuture$AsynchronousCompletionTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AsynchronousCompletionTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousCompletionTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AsynchronousCompletionTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AsynchronousCompletionTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region CompletableFuture - /// - /// - /// - /// - public partial class CompletableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.CompletableFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompletableFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompletableFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompletionException - /// - /// - /// - public partial class CompletionException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.concurrent.CompletionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CompletionService - /// - /// - /// - public partial class CompletionService : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CompletionService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompletionService - /// - /// - /// - /// - public partial class CompletionService : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.CompletionService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompletionStage - /// - /// - /// - public partial class CompletionStage : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CompletionStage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionStage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionStage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompletionStage - /// - /// - /// - /// - public partial class CompletionStage : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.CompletionStage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionStage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompletionStage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentHashMap - /// - /// - /// - public partial class ConcurrentHashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region KeySetView - /// - /// - /// - public partial class KeySetView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap$KeySetView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeySetView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeySetView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region KeySetView - /// - /// - /// - /// - /// - public partial class KeySetView : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap$KeySetView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeySetView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeySetView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ConcurrentHashMap - /// - /// - /// - /// - /// - public partial class ConcurrentHashMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentHashMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentHashMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentLinkedDeque - /// - /// - /// - public partial class ConcurrentLinkedDeque : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentLinkedDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentLinkedDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentLinkedDeque - /// - /// - /// - /// - public partial class ConcurrentLinkedDeque : Java.Util.AbstractCollection - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentLinkedDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentLinkedDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentLinkedQueue - /// - /// - /// - public partial class ConcurrentLinkedQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentLinkedQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentLinkedQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentLinkedQueue - /// - /// - /// - /// - public partial class ConcurrentLinkedQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentLinkedQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentLinkedQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentMap - /// - /// - /// - public partial class ConcurrentMap : Java.Util.Map - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentMap - /// - /// - /// - /// - /// - public partial class ConcurrentMap : Java.Util.Map - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentNavigableMap - /// - /// - /// - public partial class ConcurrentNavigableMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentNavigableMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentNavigableMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentNavigableMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentNavigableMap - /// - /// - /// - /// - /// - public partial class ConcurrentNavigableMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentNavigableMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentNavigableMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConcurrentNavigableMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentSkipListMap - /// - /// - /// - public partial class ConcurrentSkipListMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentSkipListMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentSkipListMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentSkipListMap - /// - /// - /// - /// - /// - public partial class ConcurrentSkipListMap : Java.Util.AbstractMap - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentSkipListMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentSkipListMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentSkipListSet - /// - /// - /// - public partial class ConcurrentSkipListSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentSkipListSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentSkipListSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConcurrentSkipListSet - /// - /// - /// - /// - public partial class ConcurrentSkipListSet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConcurrentSkipListSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConcurrentSkipListSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CopyOnWriteArrayList - /// - /// - /// - public partial class CopyOnWriteArrayList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArrayList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CopyOnWriteArrayList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CopyOnWriteArrayList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CopyOnWriteArrayList - /// - /// - /// - /// - public partial class CopyOnWriteArrayList : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArrayList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CopyOnWriteArrayList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CopyOnWriteArrayList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CopyOnWriteArraySet - /// - /// - /// - public partial class CopyOnWriteArraySet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArraySet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CopyOnWriteArraySet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CopyOnWriteArraySet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CopyOnWriteArraySet - /// - /// - /// - /// - public partial class CopyOnWriteArraySet : Java.Util.AbstractSet - { - const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArraySet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CopyOnWriteArraySet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CopyOnWriteArraySet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CountDownLatch - /// - /// - /// - public partial class CountDownLatch : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CountDownLatch"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CountDownLatch() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CountDownLatch(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CountedCompleter - /// - /// - /// - public partial class CountedCompleter : Java.Util.Concurrent.ForkJoinTask - { - const string _bridgeClassName = "java.util.concurrent.CountedCompleter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CountedCompleter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CountedCompleter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CountedCompleter - /// - /// - /// - /// - public partial class CountedCompleter : Java.Util.Concurrent.ForkJoinTask - { - const string _bridgeClassName = "java.util.concurrent.CountedCompleter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CountedCompleter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CountedCompleter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CyclicBarrier - /// - /// - /// - public partial class CyclicBarrier : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.CyclicBarrier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CyclicBarrier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CyclicBarrier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Delayed - /// - /// - /// - public partial class Delayed : Java.Lang.Comparable - { - const string _bridgeClassName = "java.util.concurrent.Delayed"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Delayed class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Delayed() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Delayed class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Delayed(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DelayQueue - /// - /// - /// - public partial class DelayQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.DelayQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DelayQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DelayQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DelayQueue - /// - /// - /// - /// - public partial class DelayQueue : Java.Util.AbstractQueue where E : Java.Util.Concurrent.IDelayed, new() - { - const string _bridgeClassName = "java.util.concurrent.DelayQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DelayQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DelayQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Exchanger - /// - /// - /// - public partial class Exchanger : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Exchanger"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Exchanger() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Exchanger(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Exchanger - /// - /// - /// - /// - public partial class Exchanger : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.Exchanger"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Exchanger() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Exchanger(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExecutionException - /// - /// - /// - public partial class ExecutionException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.concurrent.ExecutionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Executor - /// - /// - /// - public partial class Executor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Executor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Executor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Executor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Executor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Executor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExecutorCompletionService - /// - /// - /// - public partial class ExecutorCompletionService : Java.Util.Concurrent.CompletionService - { - const string _bridgeClassName = "java.util.concurrent.ExecutorCompletionService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExecutorCompletionService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExecutorCompletionService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExecutorCompletionService - /// - /// - /// - /// - public partial class ExecutorCompletionService : Java.Util.Concurrent.CompletionService - { - const string _bridgeClassName = "java.util.concurrent.ExecutorCompletionService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExecutorCompletionService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExecutorCompletionService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Executors - /// - /// - /// - public partial class Executors : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Executors"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Executors() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Executors(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExecutorService - /// - /// - /// - public partial class ExecutorService : Java.Util.Concurrent.Executor - { - const string _bridgeClassName = "java.util.concurrent.ExecutorService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExecutorService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExecutorService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Flow - /// - /// - /// - public partial class Flow : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Flow"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Flow() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Flow(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Processor - /// - /// - /// - public partial class Processor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Flow$Processor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Processor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Processor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Processor - /// - /// - /// - /// - /// - public partial class Processor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.Flow$Processor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Processor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Processor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Publisher - /// - /// - /// - public partial class Publisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Flow$Publisher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Publisher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Publisher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Publisher - /// - /// - /// - /// - public partial class Publisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.Flow$Publisher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Publisher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Publisher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Subscriber - /// - /// - /// - public partial class Subscriber : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Flow$Subscriber"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Subscriber() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Subscriber(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Subscriber - /// - /// - /// - /// - public partial class Subscriber : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.Flow$Subscriber"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Subscriber() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Subscriber(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Subscription - /// - /// - /// - public partial class Subscription : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Flow$Subscription"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Subscription class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Subscription() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Subscription class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Subscription(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ForkJoinPool - /// - /// - /// - public partial class ForkJoinPool : Java.Util.Concurrent.AbstractExecutorService - { - const string _bridgeClassName = "java.util.concurrent.ForkJoinPool"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForkJoinPool() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForkJoinPool(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ForkJoinWorkerThreadFactory - /// - /// - /// - public partial class ForkJoinWorkerThreadFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ForkJoinPool$ForkJoinWorkerThreadFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ForkJoinWorkerThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ForkJoinWorkerThreadFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ForkJoinWorkerThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ForkJoinWorkerThreadFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ManagedBlocker - /// - /// - /// - public partial class ManagedBlocker : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ForkJoinPool$ManagedBlocker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ManagedBlocker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ManagedBlocker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ManagedBlocker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ManagedBlocker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ForkJoinTask - /// - /// - /// - public partial class ForkJoinTask : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ForkJoinTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ForkJoinTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ForkJoinTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForkJoinTask - /// - /// - /// - /// - public partial class ForkJoinTask : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.ForkJoinTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ForkJoinTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ForkJoinTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForkJoinWorkerThread - /// - /// - /// - public partial class ForkJoinWorkerThread : Java.Lang.Thread - { - const string _bridgeClassName = "java.util.concurrent.ForkJoinWorkerThread"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForkJoinWorkerThread() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForkJoinWorkerThread(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Future - /// - /// - /// - public partial class Future : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Future"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Future() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Future(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Future - /// - /// - /// - /// - public partial class Future : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.Future"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Future() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Future(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FutureTask - /// - /// - /// - public partial class FutureTask : Java.Util.Concurrent.RunnableFuture - { - const string _bridgeClassName = "java.util.concurrent.FutureTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FutureTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FutureTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FutureTask - /// - /// - /// - /// - public partial class FutureTask : Java.Util.Concurrent.RunnableFuture - { - const string _bridgeClassName = "java.util.concurrent.FutureTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FutureTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FutureTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedBlockingDeque - /// - /// - /// - public partial class LinkedBlockingDeque : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.LinkedBlockingDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedBlockingDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedBlockingDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedBlockingDeque - /// - /// - /// - /// - public partial class LinkedBlockingDeque : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.LinkedBlockingDeque"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedBlockingDeque() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedBlockingDeque(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedBlockingQueue - /// - /// - /// - public partial class LinkedBlockingQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.LinkedBlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedBlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedBlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedBlockingQueue - /// - /// - /// - /// - public partial class LinkedBlockingQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.LinkedBlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedBlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedBlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedTransferQueue - /// - /// - /// - public partial class LinkedTransferQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.LinkedTransferQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedTransferQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedTransferQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkedTransferQueue - /// - /// - /// - /// - public partial class LinkedTransferQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.LinkedTransferQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkedTransferQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkedTransferQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Phaser - /// - /// - /// - public partial class Phaser : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.Phaser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Phaser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Phaser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PriorityBlockingQueue - /// - /// - /// - public partial class PriorityBlockingQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.PriorityBlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PriorityBlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PriorityBlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PriorityBlockingQueue - /// - /// - /// - /// - public partial class PriorityBlockingQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.PriorityBlockingQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PriorityBlockingQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PriorityBlockingQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RecursiveAction - /// - /// - /// - public partial class RecursiveAction : Java.Util.Concurrent.ForkJoinTask - { - const string _bridgeClassName = "java.util.concurrent.RecursiveAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RecursiveAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RecursiveAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RecursiveAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RecursiveAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RecursiveTask - /// - /// - /// - public partial class RecursiveTask : Java.Util.Concurrent.ForkJoinTask - { - const string _bridgeClassName = "java.util.concurrent.RecursiveTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RecursiveTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RecursiveTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RecursiveTask - /// - /// - /// - /// - public partial class RecursiveTask : Java.Util.Concurrent.ForkJoinTask - { - const string _bridgeClassName = "java.util.concurrent.RecursiveTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RecursiveTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RecursiveTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RejectedExecutionException - /// - /// - /// - public partial class RejectedExecutionException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "java.util.concurrent.RejectedExecutionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RejectedExecutionHandler - /// - /// - /// - public partial class RejectedExecutionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.RejectedExecutionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RejectedExecutionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RejectedExecutionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RejectedExecutionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RejectedExecutionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RunnableFuture - /// - /// - /// - public partial class RunnableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.RunnableFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RunnableFuture - /// - /// - /// - /// - public partial class RunnableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.RunnableFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RunnableScheduledFuture - /// - /// - /// - public partial class RunnableScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.RunnableScheduledFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableScheduledFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableScheduledFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RunnableScheduledFuture - /// - /// - /// - /// - public partial class RunnableScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.RunnableScheduledFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableScheduledFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RunnableScheduledFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScheduledExecutorService - /// - /// - /// - public partial class ScheduledExecutorService : Java.Util.Concurrent.ExecutorService - { - const string _bridgeClassName = "java.util.concurrent.ScheduledExecutorService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScheduledExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScheduledExecutorService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScheduledExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScheduledExecutorService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScheduledFuture - /// - /// - /// - public partial class ScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ScheduledFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScheduledFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScheduledFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScheduledFuture - /// - /// - /// - /// - public partial class ScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.ScheduledFuture"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScheduledFuture() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScheduledFuture(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScheduledThreadPoolExecutor - /// - /// - /// - public partial class ScheduledThreadPoolExecutor : Java.Util.Concurrent.ThreadPoolExecutor - { - const string _bridgeClassName = "java.util.concurrent.ScheduledThreadPoolExecutor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScheduledThreadPoolExecutor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScheduledThreadPoolExecutor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Semaphore - /// - /// - /// - public partial class Semaphore : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.Semaphore"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Semaphore() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Semaphore(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SubmissionPublisher - /// - /// - /// - public partial class SubmissionPublisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.SubmissionPublisher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SubmissionPublisher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SubmissionPublisher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SubmissionPublisher - /// - /// - /// - /// - public partial class SubmissionPublisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.SubmissionPublisher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SubmissionPublisher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SubmissionPublisher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynchronousQueue - /// - /// - /// - public partial class SynchronousQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.SynchronousQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynchronousQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynchronousQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynchronousQueue - /// - /// - /// - /// - public partial class SynchronousQueue : Java.Util.AbstractQueue - { - const string _bridgeClassName = "java.util.concurrent.SynchronousQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynchronousQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynchronousQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadFactory - /// - /// - /// - public partial class ThreadFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.ThreadFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ThreadFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ThreadFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadLocalRandom - /// - /// - /// - public partial class ThreadLocalRandom : Java.Util.Random - { - const string _bridgeClassName = "java.util.concurrent.ThreadLocalRandom"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThreadLocalRandom() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThreadLocalRandom(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ThreadPoolExecutor - /// - /// - /// - public partial class ThreadPoolExecutor : Java.Util.Concurrent.AbstractExecutorService - { - const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ThreadPoolExecutor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ThreadPoolExecutor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AbortPolicy - /// - /// - /// - public partial class AbortPolicy : Java.Util.Concurrent.RejectedExecutionHandler - { - const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$AbortPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AbortPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AbortPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CallerRunsPolicy - /// - /// - /// - public partial class CallerRunsPolicy : Java.Util.Concurrent.RejectedExecutionHandler - { - const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CallerRunsPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CallerRunsPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DiscardOldestPolicy - /// - /// - /// - public partial class DiscardOldestPolicy : Java.Util.Concurrent.RejectedExecutionHandler - { - const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$DiscardOldestPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DiscardOldestPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DiscardOldestPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DiscardPolicy - /// - /// - /// - public partial class DiscardPolicy : Java.Util.Concurrent.RejectedExecutionHandler - { - const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$DiscardPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DiscardPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DiscardPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region TimeoutException - /// - /// - /// - public partial class TimeoutException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.concurrent.TimeoutException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region TimeUnit - /// - /// - /// - public partial class TimeUnit : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.concurrent.TimeUnit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TimeUnit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TimeUnit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransferQueue - /// - /// - /// - public partial class TransferQueue : Java.Util.Concurrent.BlockingQueue - { - const string _bridgeClassName = "java.util.concurrent.TransferQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransferQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransferQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransferQueue - /// - /// - /// - /// - public partial class TransferQueue : Java.Util.Concurrent.BlockingQueue - { - const string _bridgeClassName = "java.util.concurrent.TransferQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransferQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransferQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ArrayBlockingQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ArrayBlockingQueue.cs index 3f021c9a51..cc11d73017 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ArrayBlockingQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ArrayBlockingQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region ArrayBlockingQueue + #region ArrayBlockingQueue declaration + /// + /// + /// + public partial class ArrayBlockingQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.ArrayBlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayBlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayBlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayBlockingQueue declaration + /// + /// + /// + /// + public partial class ArrayBlockingQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.ArrayBlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayBlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayBlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayBlockingQueue implementation public partial class ArrayBlockingQueue { #region Constructors @@ -159,7 +250,7 @@ public void Put(object arg0) } #endregion - #region ArrayBlockingQueue + #region ArrayBlockingQueue implementation public partial class ArrayBlockingQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AllPackageClasses.cs deleted file mode 100644 index 7017dd0f7c..0000000000 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AllPackageClasses.cs +++ /dev/null @@ -1,1085 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Concurrent.Atomic -{ - #region AtomicBoolean - /// - /// - /// - public partial class AtomicBoolean : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicBoolean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicBoolean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicBoolean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicInteger - /// - /// - /// - public partial class AtomicInteger : Java.Lang.Number - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicInteger"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicInteger() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicInteger(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicIntegerArray - /// - /// - /// - public partial class AtomicIntegerArray : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicIntegerArray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicIntegerArray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicIntegerArray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicIntegerFieldUpdater - /// - /// - /// - public partial class AtomicIntegerFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicIntegerFieldUpdater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicIntegerFieldUpdater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicIntegerFieldUpdater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicIntegerFieldUpdater - /// - /// - /// - /// - public partial class AtomicIntegerFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicIntegerFieldUpdater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicIntegerFieldUpdater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicIntegerFieldUpdater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicLong - /// - /// - /// - public partial class AtomicLong : Java.Lang.Number - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLong"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicLong() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicLong(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicLongArray - /// - /// - /// - public partial class AtomicLongArray : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLongArray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicLongArray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicLongArray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicLongFieldUpdater - /// - /// - /// - public partial class AtomicLongFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLongFieldUpdater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicLongFieldUpdater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicLongFieldUpdater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicLongFieldUpdater - /// - /// - /// - /// - public partial class AtomicLongFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLongFieldUpdater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicLongFieldUpdater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicLongFieldUpdater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicMarkableReference - /// - /// - /// - public partial class AtomicMarkableReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicMarkableReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicMarkableReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicMarkableReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicMarkableReference - /// - /// - /// - /// - public partial class AtomicMarkableReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicMarkableReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicMarkableReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicMarkableReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicReference - /// - /// - /// - public partial class AtomicReference : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicReference - /// - /// - /// - /// - public partial class AtomicReference : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicReferenceArray - /// - /// - /// - public partial class AtomicReferenceArray : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceArray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicReferenceArray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicReferenceArray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicReferenceArray - /// - /// - /// - /// - public partial class AtomicReferenceArray : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceArray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicReferenceArray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicReferenceArray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicReferenceFieldUpdater - /// - /// - /// - public partial class AtomicReferenceFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceFieldUpdater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicReferenceFieldUpdater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicReferenceFieldUpdater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicReferenceFieldUpdater - /// - /// - /// - /// - /// - public partial class AtomicReferenceFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceFieldUpdater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicReferenceFieldUpdater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AtomicReferenceFieldUpdater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicStampedReference - /// - /// - /// - public partial class AtomicStampedReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicStampedReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicStampedReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicStampedReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AtomicStampedReference - /// - /// - /// - /// - public partial class AtomicStampedReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.concurrent.atomic.AtomicStampedReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AtomicStampedReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AtomicStampedReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DoubleAccumulator - /// - /// - /// - public partial class DoubleAccumulator : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.DoubleAccumulator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleAccumulator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DoubleAccumulator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DoubleAdder - /// - /// - /// - public partial class DoubleAdder : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.DoubleAdder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleAdder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DoubleAdder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LongAccumulator - /// - /// - /// - public partial class LongAccumulator : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.LongAccumulator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongAccumulator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LongAccumulator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LongAdder - /// - /// - /// - public partial class LongAdder : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.atomic.LongAdder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongAdder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LongAdder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicBoolean.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicBoolean.cs index 339b7f5515..de1b52c960 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicBoolean.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicBoolean.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicBoolean + #region AtomicBoolean declaration + /// + /// + /// + public partial class AtomicBoolean : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicBoolean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicBoolean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicBoolean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicBoolean implementation public partial class AtomicBoolean { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicInteger.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicInteger.cs index b7a000c0e2..59bd3ffcb3 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicInteger.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicInteger.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicInteger + #region AtomicInteger declaration + /// + /// + /// + public partial class AtomicInteger : Java.Lang.Number + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicInteger"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicInteger() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicInteger(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicInteger implementation public partial class AtomicInteger { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerArray.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerArray.cs index ee329c06d7..83f481125c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerArray.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerArray.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicIntegerArray + #region AtomicIntegerArray declaration + /// + /// + /// + public partial class AtomicIntegerArray : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicIntegerArray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicIntegerArray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicIntegerArray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicIntegerArray implementation public partial class AtomicIntegerArray { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerFieldUpdater.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerFieldUpdater.cs index aade2ed60b..078e34d68e 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerFieldUpdater.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicIntegerFieldUpdater.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicIntegerFieldUpdater + #region AtomicIntegerFieldUpdater declaration + /// + /// + /// + public partial class AtomicIntegerFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicIntegerFieldUpdater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicIntegerFieldUpdater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicIntegerFieldUpdater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicIntegerFieldUpdater declaration + /// + /// + /// + /// + public partial class AtomicIntegerFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicIntegerFieldUpdater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicIntegerFieldUpdater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AtomicIntegerFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicIntegerFieldUpdater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicIntegerFieldUpdater implementation public partial class AtomicIntegerFieldUpdater { #region Constructors @@ -223,7 +318,7 @@ public int IncrementAndGet(object arg0) } #endregion - #region AtomicIntegerFieldUpdater + #region AtomicIntegerFieldUpdater implementation public partial class AtomicIntegerFieldUpdater { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLong.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLong.cs index 551d25ac40..810f402ee7 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLong.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLong.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicLong + #region AtomicLong declaration + /// + /// + /// + public partial class AtomicLong : Java.Lang.Number + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLong"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicLong() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicLong(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicLong implementation public partial class AtomicLong { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongArray.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongArray.cs index d76d093c83..86aeb86091 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongArray.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongArray.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicLongArray + #region AtomicLongArray declaration + /// + /// + /// + public partial class AtomicLongArray : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLongArray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicLongArray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicLongArray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicLongArray implementation public partial class AtomicLongArray { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongFieldUpdater.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongFieldUpdater.cs index c27703d7f6..818d79a2aa 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongFieldUpdater.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicLongFieldUpdater.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicLongFieldUpdater + #region AtomicLongFieldUpdater declaration + /// + /// + /// + public partial class AtomicLongFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLongFieldUpdater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicLongFieldUpdater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicLongFieldUpdater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicLongFieldUpdater declaration + /// + /// + /// + /// + public partial class AtomicLongFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicLongFieldUpdater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicLongFieldUpdater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AtomicLongFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicLongFieldUpdater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicLongFieldUpdater implementation public partial class AtomicLongFieldUpdater { #region Constructors @@ -223,7 +318,7 @@ public long IncrementAndGet(object arg0) } #endregion - #region AtomicLongFieldUpdater + #region AtomicLongFieldUpdater implementation public partial class AtomicLongFieldUpdater { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicMarkableReference.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicMarkableReference.cs index 01a2f2b255..e85afbca6f 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicMarkableReference.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicMarkableReference.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicMarkableReference + #region AtomicMarkableReference declaration + /// + /// + /// + public partial class AtomicMarkableReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicMarkableReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicMarkableReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicMarkableReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicMarkableReference declaration + /// + /// + /// + /// + public partial class AtomicMarkableReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicMarkableReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicMarkableReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicMarkableReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicMarkableReference implementation public partial class AtomicMarkableReference { #region Constructors @@ -132,7 +223,7 @@ public void Set(object arg0, bool arg1) } #endregion - #region AtomicMarkableReference + #region AtomicMarkableReference implementation public partial class AtomicMarkableReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReference.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReference.cs index a804a7268a..7bf4a1305b 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReference.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReference.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicReference + #region AtomicReference declaration + /// + /// + /// + public partial class AtomicReference : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicReference declaration + /// + /// + /// + /// + public partial class AtomicReference : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicReference implementation public partial class AtomicReference { #region Constructors @@ -244,7 +335,7 @@ public void SetRelease(object arg0) } #endregion - #region AtomicReference + #region AtomicReference implementation public partial class AtomicReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceArray.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceArray.cs index ab7fb6aa4f..559fed5e23 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceArray.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceArray.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicReferenceArray + #region AtomicReferenceArray declaration + /// + /// + /// + public partial class AtomicReferenceArray : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceArray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicReferenceArray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicReferenceArray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicReferenceArray declaration + /// + /// + /// + /// + public partial class AtomicReferenceArray : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceArray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicReferenceArray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicReferenceArray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicReferenceArray implementation public partial class AtomicReferenceArray { #region Constructors @@ -293,7 +384,7 @@ public void SetRelease(int arg0, object arg1) } #endregion - #region AtomicReferenceArray + #region AtomicReferenceArray implementation public partial class AtomicReferenceArray { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceFieldUpdater.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceFieldUpdater.cs index e622ec1e6c..b50cabe77e 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceFieldUpdater.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicReferenceFieldUpdater.cs @@ -25,7 +25,103 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicReferenceFieldUpdater + #region AtomicReferenceFieldUpdater declaration + /// + /// + /// + public partial class AtomicReferenceFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceFieldUpdater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicReferenceFieldUpdater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicReferenceFieldUpdater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicReferenceFieldUpdater declaration + /// + /// + /// + /// + /// + public partial class AtomicReferenceFieldUpdater : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicReferenceFieldUpdater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicReferenceFieldUpdater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AtomicReferenceFieldUpdater class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AtomicReferenceFieldUpdater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicReferenceFieldUpdater implementation public partial class AtomicReferenceFieldUpdater { #region Constructors @@ -168,7 +264,7 @@ public object GetAndSet(object arg0, object arg1) } #endregion - #region AtomicReferenceFieldUpdater + #region AtomicReferenceFieldUpdater implementation public partial class AtomicReferenceFieldUpdater { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicStampedReference.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicStampedReference.cs index e3aad36bd7..d43a06f886 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicStampedReference.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/AtomicStampedReference.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent.Atomic { - #region AtomicStampedReference + #region AtomicStampedReference declaration + /// + /// + /// + public partial class AtomicStampedReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicStampedReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicStampedReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicStampedReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicStampedReference declaration + /// + /// + /// + /// + public partial class AtomicStampedReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.atomic.AtomicStampedReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AtomicStampedReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AtomicStampedReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AtomicStampedReference implementation public partial class AtomicStampedReference { #region Constructors @@ -131,7 +222,7 @@ public void Set(object arg0, int arg1) } #endregion - #region AtomicStampedReference + #region AtomicStampedReference implementation public partial class AtomicStampedReference { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAccumulator.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAccumulator.cs index 31ef59499e..9c3f6bf021 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAccumulator.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAccumulator.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region DoubleAccumulator + #region DoubleAccumulator declaration + /// + /// + /// + public partial class DoubleAccumulator : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.DoubleAccumulator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleAccumulator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DoubleAccumulator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DoubleAccumulator implementation public partial class DoubleAccumulator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAdder.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAdder.cs index 104e08d330..d1cbbb0278 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAdder.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/DoubleAdder.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region DoubleAdder + #region DoubleAdder declaration + /// + /// + /// + public partial class DoubleAdder : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.DoubleAdder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleAdder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DoubleAdder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DoubleAdder implementation public partial class DoubleAdder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAccumulator.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAccumulator.cs index 7d798fdeaa..35a5ef9bcd 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAccumulator.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAccumulator.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region LongAccumulator + #region LongAccumulator declaration + /// + /// + /// + public partial class LongAccumulator : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.LongAccumulator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongAccumulator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LongAccumulator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LongAccumulator implementation public partial class LongAccumulator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAdder.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAdder.cs index fd85cae983..918c51ee58 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAdder.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Atomic/LongAdder.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Atomic { - #region LongAdder + #region LongAdder declaration + /// + /// + /// + public partial class LongAdder : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.atomic.LongAdder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongAdder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LongAdder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LongAdder implementation public partial class LongAdder { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/BlockingDeque.cs b/src/net/JNet/Generated/Java/Util/Concurrent/BlockingDeque.cs index cf2246c6c5..f0ce90ed2c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/BlockingDeque.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/BlockingDeque.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region BlockingDeque + #region BlockingDeque declaration + /// + /// + /// + public partial class BlockingDeque : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.BlockingDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BlockingDeque declaration + /// + /// + /// + /// + public partial class BlockingDeque : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.BlockingDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BlockingDeque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BlockingDeque implementation public partial class BlockingDeque { #region Constructors @@ -529,7 +624,7 @@ public partial interface IBlockingDeque } #endregion - #region BlockingDeque + #region BlockingDeque implementation public partial class BlockingDeque : Java.Util.Concurrent.IBlockingDeque { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/BlockingQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/BlockingQueue.cs index 3c9a551b7f..ee0ad74430 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/BlockingQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/BlockingQueue.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region BlockingQueue + #region BlockingQueue declaration + /// + /// + /// + public partial class BlockingQueue : Java.Util.Queue + { + const string _bridgeClassName = "java.util.concurrent.BlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BlockingQueue declaration + /// + /// + /// + /// + public partial class BlockingQueue : Java.Util.Queue + { + const string _bridgeClassName = "java.util.concurrent.BlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BlockingQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BlockingQueue implementation public partial class BlockingQueue { #region Constructors @@ -251,7 +346,7 @@ public partial interface IBlockingQueue : Java.Util.IQueue } #endregion - #region BlockingQueue + #region BlockingQueue implementation public partial class BlockingQueue : Java.Util.Concurrent.IBlockingQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/BrokenBarrierException.cs b/src/net/JNet/Generated/Java/Util/Concurrent/BrokenBarrierException.cs index cf4039a0b5..330aa19f80 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/BrokenBarrierException.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/BrokenBarrierException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Concurrent { - #region BrokenBarrierException + #region BrokenBarrierException declaration + /// + /// + /// + public partial class BrokenBarrierException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.concurrent.BrokenBarrierException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BrokenBarrierException implementation public partial class BrokenBarrierException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Callable.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Callable.cs index 8d91499196..89d946cf3e 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Callable.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Callable.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region Callable + #region Callable declaration + /// + /// + /// + public partial class Callable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Callable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Callable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Callable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Callable declaration + /// + /// + /// + /// + public partial class Callable : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.Callable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Callable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Callable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Callable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Callable implementation public partial class Callable { #region Constructors @@ -89,7 +184,7 @@ public partial interface ICallable } #endregion - #region Callable + #region Callable implementation public partial class Callable : Java.Util.Concurrent.ICallable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CancellationException.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CancellationException.cs index 109c734872..7850573ed1 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CancellationException.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CancellationException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Concurrent { - #region CancellationException + #region CancellationException declaration + /// + /// + /// + public partial class CancellationException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.util.concurrent.CancellationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CancellationException implementation public partial class CancellationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CompletableFuture.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CompletableFuture.cs index 7453b39ac6..83e32b6f23 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CompletableFuture.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CompletableFuture.cs @@ -25,7 +25,145 @@ namespace Java.Util.Concurrent { - #region CompletableFuture + #region CompletableFuture declaration + /// + /// + /// + public partial class CompletableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CompletableFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompletableFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompletableFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AsynchronousCompletionTask declaration + /// + /// + /// + public partial class AsynchronousCompletionTask : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CompletableFuture$AsynchronousCompletionTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AsynchronousCompletionTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousCompletionTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AsynchronousCompletionTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AsynchronousCompletionTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CompletableFuture declaration + /// + /// + /// + /// + public partial class CompletableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.CompletableFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompletableFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompletableFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletableFuture implementation public partial class CompletableFuture { #region Constructors @@ -727,7 +865,7 @@ public void ObtrudeValue(object arg0) #endregion #region Nested classes - #region AsynchronousCompletionTask + #region AsynchronousCompletionTask implementation public partial class AsynchronousCompletionTask { #region Constructors @@ -765,7 +903,7 @@ public partial class AsynchronousCompletionTask } #endregion - #region CompletableFuture + #region CompletableFuture implementation public partial class CompletableFuture { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CompletionException.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CompletionException.cs index d047164d81..ab7e1f8e62 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CompletionException.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CompletionException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Concurrent { - #region CompletionException + #region CompletionException declaration + /// + /// + /// + public partial class CompletionException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.concurrent.CompletionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CompletionException implementation public partial class CompletionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CompletionService.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CompletionService.cs index 4fac5f2c5c..03249efebe 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CompletionService.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CompletionService.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region CompletionService + #region CompletionService declaration + /// + /// + /// + public partial class CompletionService : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CompletionService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletionService declaration + /// + /// + /// + /// + public partial class CompletionService : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.CompletionService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompletionService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletionService implementation public partial class CompletionService { #region Constructors @@ -153,7 +248,7 @@ public partial interface ICompletionService } #endregion - #region CompletionService + #region CompletionService implementation public partial class CompletionService : Java.Util.Concurrent.ICompletionService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CompletionStage.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CompletionStage.cs index 4169cf2f3a..d4ce1ab618 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CompletionStage.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CompletionStage.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region CompletionStage + #region CompletionStage declaration + /// + /// + /// + public partial class CompletionStage : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CompletionStage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionStage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionStage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletionStage declaration + /// + /// + /// + /// + public partial class CompletionStage : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.CompletionStage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionStage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompletionStage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompletionStage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompletionStage implementation public partial class CompletionStage { #region Constructors @@ -784,7 +879,7 @@ public partial interface ICompletionStage } #endregion - #region CompletionStage + #region CompletionStage implementation public partial class CompletionStage : Java.Util.Concurrent.ICompletionStage { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentHashMap.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentHashMap.cs index 45f101d9b5..292a0bd675 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentHashMap.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentHashMap.cs @@ -25,7 +25,191 @@ namespace Java.Util.Concurrent { - #region ConcurrentHashMap + #region ConcurrentHashMap declaration + /// + /// + /// + public partial class ConcurrentHashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region KeySetView declaration + /// + /// + /// + public partial class KeySetView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap$KeySetView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeySetView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeySetView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region KeySetView declaration + /// + /// + /// + /// + /// + public partial class KeySetView : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap$KeySetView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeySetView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeySetView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ConcurrentHashMap declaration + /// + /// + /// + /// + /// + public partial class ConcurrentHashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentHashMap implementation public partial class ConcurrentHashMap { #region Constructors @@ -485,7 +669,7 @@ public void ForEachValue(long arg0, Java.Util.Function.Consumer arg1) #endregion #region Nested classes - #region KeySetView + #region KeySetView implementation public partial class KeySetView { #region Constructors @@ -531,7 +715,7 @@ public object MappedValue } #endregion - #region KeySetView + #region KeySetView implementation public partial class KeySetView { #region Constructors @@ -588,7 +772,7 @@ public V MappedValue } #endregion - #region ConcurrentHashMap + #region ConcurrentHashMap implementation public partial class ConcurrentHashMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedDeque.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedDeque.cs index d1e882920e..876f3ba544 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedDeque.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedDeque.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region ConcurrentLinkedDeque + #region ConcurrentLinkedDeque declaration + /// + /// + /// + public partial class ConcurrentLinkedDeque : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentLinkedDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentLinkedDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentLinkedDeque declaration + /// + /// + /// + /// + public partial class ConcurrentLinkedDeque : Java.Util.AbstractCollection + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentLinkedDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentLinkedDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentLinkedDeque implementation public partial class ConcurrentLinkedDeque { #region Constructors @@ -251,7 +342,7 @@ public void Push(object arg0) } #endregion - #region ConcurrentLinkedDeque + #region ConcurrentLinkedDeque implementation public partial class ConcurrentLinkedDeque { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedQueue.cs index 89b2f6e446..50d6e0f649 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentLinkedQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region ConcurrentLinkedQueue + #region ConcurrentLinkedQueue declaration + /// + /// + /// + public partial class ConcurrentLinkedQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentLinkedQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentLinkedQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentLinkedQueue declaration + /// + /// + /// + /// + public partial class ConcurrentLinkedQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentLinkedQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentLinkedQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentLinkedQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentLinkedQueue implementation public partial class ConcurrentLinkedQueue { #region Constructors @@ -68,7 +159,7 @@ public ConcurrentLinkedQueue(Java.Util.Collection arg0) } #endregion - #region ConcurrentLinkedQueue + #region ConcurrentLinkedQueue implementation public partial class ConcurrentLinkedQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentMap.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentMap.cs index bd2dd40858..ab83ac8115 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentMap.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentMap.cs @@ -25,7 +25,103 @@ namespace Java.Util.Concurrent { - #region ConcurrentMap + #region ConcurrentMap declaration + /// + /// + /// + public partial class ConcurrentMap : Java.Util.Map + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentMap declaration + /// + /// + /// + /// + /// + public partial class ConcurrentMap : Java.Util.Map + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConcurrentMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentMap implementation public partial class ConcurrentMap { #region Constructors @@ -272,7 +368,7 @@ public partial interface IConcurrentMap : Java.Util.IMap } #endregion - #region ConcurrentMap + #region ConcurrentMap implementation public partial class ConcurrentMap : Java.Util.Concurrent.IConcurrentMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentNavigableMap.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentNavigableMap.cs index 3f6e1a9a06..a8452a2faa 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentNavigableMap.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentNavigableMap.cs @@ -25,7 +25,103 @@ namespace Java.Util.Concurrent { - #region ConcurrentNavigableMap + #region ConcurrentNavigableMap declaration + /// + /// + /// + public partial class ConcurrentNavigableMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentNavigableMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentNavigableMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentNavigableMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentNavigableMap declaration + /// + /// + /// + /// + /// + public partial class ConcurrentNavigableMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentNavigableMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentNavigableMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConcurrentNavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConcurrentNavigableMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentNavigableMap implementation public partial class ConcurrentNavigableMap { #region Constructors @@ -236,7 +332,7 @@ public partial interface IConcurrentNavigableMap } #endregion - #region ConcurrentNavigableMap + #region ConcurrentNavigableMap implementation public partial class ConcurrentNavigableMap : Java.Util.Concurrent.IConcurrentNavigableMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListMap.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListMap.cs index 734982f07c..24734b3f36 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListMap.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListMap.cs @@ -25,7 +25,99 @@ namespace Java.Util.Concurrent { - #region ConcurrentSkipListMap + #region ConcurrentSkipListMap declaration + /// + /// + /// + public partial class ConcurrentSkipListMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentSkipListMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentSkipListMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentSkipListMap declaration + /// + /// + /// + /// + /// + public partial class ConcurrentSkipListMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentSkipListMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentSkipListMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentSkipListMap implementation public partial class ConcurrentSkipListMap { #region Constructors @@ -312,7 +404,7 @@ public object LowerKey(object arg0) } #endregion - #region ConcurrentSkipListMap + #region ConcurrentSkipListMap implementation public partial class ConcurrentSkipListMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListSet.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListSet.cs index 551da70ee1..aa8f400c7c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListSet.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ConcurrentSkipListSet.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region ConcurrentSkipListSet + #region ConcurrentSkipListSet declaration + /// + /// + /// + public partial class ConcurrentSkipListSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentSkipListSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentSkipListSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentSkipListSet declaration + /// + /// + /// + /// + public partial class ConcurrentSkipListSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.concurrent.ConcurrentSkipListSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConcurrentSkipListSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConcurrentSkipListSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentSkipListSet implementation public partial class ConcurrentSkipListSet { #region Constructors @@ -252,7 +343,7 @@ public Java.Util.SortedSet TailSet(object arg0) } #endregion - #region ConcurrentSkipListSet + #region ConcurrentSkipListSet implementation public partial class ConcurrentSkipListSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArrayList.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArrayList.cs index e9fb71d0a4..d91c44abec 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArrayList.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArrayList.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region CopyOnWriteArrayList + #region CopyOnWriteArrayList declaration + /// + /// + /// + public partial class CopyOnWriteArrayList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArrayList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CopyOnWriteArrayList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CopyOnWriteArrayList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CopyOnWriteArrayList declaration + /// + /// + /// + /// + public partial class CopyOnWriteArrayList : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArrayList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CopyOnWriteArrayList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CopyOnWriteArrayList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CopyOnWriteArrayList implementation public partial class CopyOnWriteArrayList { #region Constructors @@ -362,7 +453,7 @@ public void Sort(Java.Util.Comparator arg0) } #endregion - #region CopyOnWriteArrayList + #region CopyOnWriteArrayList implementation public partial class CopyOnWriteArrayList { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArraySet.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArraySet.cs index 06f721ce01..292229b5da 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArraySet.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CopyOnWriteArraySet.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region CopyOnWriteArraySet + #region CopyOnWriteArraySet declaration + /// + /// + /// + public partial class CopyOnWriteArraySet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArraySet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CopyOnWriteArraySet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CopyOnWriteArraySet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CopyOnWriteArraySet declaration + /// + /// + /// + /// + public partial class CopyOnWriteArraySet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.concurrent.CopyOnWriteArraySet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CopyOnWriteArraySet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CopyOnWriteArraySet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CopyOnWriteArraySet implementation public partial class CopyOnWriteArraySet { #region Constructors @@ -68,7 +159,7 @@ public CopyOnWriteArraySet(Java.Util.Collection arg0) } #endregion - #region CopyOnWriteArraySet + #region CopyOnWriteArraySet implementation public partial class CopyOnWriteArraySet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CountDownLatch.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CountDownLatch.cs index 704dbf3720..b311195c66 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CountDownLatch.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CountDownLatch.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region CountDownLatch + #region CountDownLatch declaration + /// + /// + /// + public partial class CountDownLatch : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CountDownLatch"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CountDownLatch() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CountDownLatch(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CountDownLatch implementation public partial class CountDownLatch { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CountedCompleter.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CountedCompleter.cs index 7dff3bb3c1..0662ebfe67 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CountedCompleter.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CountedCompleter.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region CountedCompleter + #region CountedCompleter declaration + /// + /// + /// + public partial class CountedCompleter : Java.Util.Concurrent.ForkJoinTask + { + const string _bridgeClassName = "java.util.concurrent.CountedCompleter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CountedCompleter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CountedCompleter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CountedCompleter declaration + /// + /// + /// + /// + public partial class CountedCompleter : Java.Util.Concurrent.ForkJoinTask + { + const string _bridgeClassName = "java.util.concurrent.CountedCompleter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CountedCompleter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CountedCompleter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CountedCompleter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CountedCompleter implementation public partial class CountedCompleter { #region Constructors @@ -173,7 +268,7 @@ public void OnCompletion(Java.Util.Concurrent.CountedCompleter arg0) } #endregion - #region CountedCompleter + #region CountedCompleter implementation public partial class CountedCompleter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/CyclicBarrier.cs b/src/net/JNet/Generated/Java/Util/Concurrent/CyclicBarrier.cs index 6fdd798197..ef37c79305 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/CyclicBarrier.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/CyclicBarrier.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region CyclicBarrier + #region CyclicBarrier declaration + /// + /// + /// + public partial class CyclicBarrier : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.CyclicBarrier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CyclicBarrier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CyclicBarrier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CyclicBarrier implementation public partial class CyclicBarrier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/DelayQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/DelayQueue.cs index fc87503bb7..04702a2495 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/DelayQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/DelayQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region DelayQueue + #region DelayQueue declaration + /// + /// + /// + public partial class DelayQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.DelayQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DelayQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DelayQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DelayQueue declaration + /// + /// + /// + /// + public partial class DelayQueue : Java.Util.AbstractQueue where E : Java.Util.Concurrent.IDelayed, new() + { + const string _bridgeClassName = "java.util.concurrent.DelayQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DelayQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DelayQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DelayQueue implementation public partial class DelayQueue { #region Constructors @@ -173,7 +264,7 @@ public void Put(object arg0) } #endregion - #region DelayQueue + #region DelayQueue implementation public partial class DelayQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Delayed.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Delayed.cs index 17999bee2c..5b89f3db85 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Delayed.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Delayed.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent { + #region Delayed declaration + /// + /// + /// + public partial class Delayed : Java.Lang.Comparable + { + const string _bridgeClassName = "java.util.concurrent.Delayed"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Delayed class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Delayed() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Delayed class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Delayed(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDelayed /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IDelayed : Java.Lang.IComparable + /// + /// + public partial class Exchanger : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Exchanger"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Exchanger() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Exchanger(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Exchanger declaration + /// + /// + /// + /// + public partial class Exchanger : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.Exchanger"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Exchanger() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Exchanger(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Exchanger implementation public partial class Exchanger { #region Constructors @@ -79,7 +170,7 @@ public object Exchange(object arg0) } #endregion - #region Exchanger + #region Exchanger implementation public partial class Exchanger { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ExecutionException.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ExecutionException.cs index 853d3450cd..5e75d1503c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ExecutionException.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ExecutionException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Concurrent { - #region ExecutionException + #region ExecutionException declaration + /// + /// + /// + public partial class ExecutionException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.concurrent.ExecutionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ExecutionException implementation public partial class ExecutionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Executor.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Executor.cs index 7cf8acc32f..893d20f22f 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Executor.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Executor.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent { + #region Executor declaration + /// + /// + /// + public partial class Executor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Executor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Executor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Executor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Executor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Executor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExecutor /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IExecutor } #endregion - #region Executor + #region Executor implementation public partial class Executor : Java.Util.Concurrent.IExecutor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorCompletionService.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorCompletionService.cs index e9dad15e06..8aebe0967c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorCompletionService.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorCompletionService.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region ExecutorCompletionService + #region ExecutorCompletionService declaration + /// + /// + /// + public partial class ExecutorCompletionService : Java.Util.Concurrent.CompletionService + { + const string _bridgeClassName = "java.util.concurrent.ExecutorCompletionService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExecutorCompletionService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExecutorCompletionService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExecutorCompletionService declaration + /// + /// + /// + /// + public partial class ExecutorCompletionService : Java.Util.Concurrent.CompletionService + { + const string _bridgeClassName = "java.util.concurrent.ExecutorCompletionService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExecutorCompletionService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExecutorCompletionService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExecutorCompletionService implementation public partial class ExecutorCompletionService { #region Constructors @@ -120,7 +211,7 @@ public Java.Util.Concurrent.Future Take() } #endregion - #region ExecutorCompletionService + #region ExecutorCompletionService implementation public partial class ExecutorCompletionService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorService.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorService.cs index b4c74538e0..03cf16a8ab 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorService.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ExecutorService.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent { + #region ExecutorService declaration + /// + /// + /// + public partial class ExecutorService : Java.Util.Concurrent.Executor + { + const string _bridgeClassName = "java.util.concurrent.ExecutorService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExecutorService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExecutorService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExecutorService /// /// .NET interface for TO BE DEFINED FROM USER @@ -134,7 +181,7 @@ public partial interface IExecutorService : Java.Util.Concurrent.IExecutor } #endregion - #region ExecutorService + #region ExecutorService implementation public partial class ExecutorService : Java.Util.Concurrent.IExecutorService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Executors.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Executors.cs index 09cdcb50ce..d1983f9fe0 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Executors.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Executors.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region Executors + #region Executors declaration + /// + /// + /// + public partial class Executors : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Executors"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Executors() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Executors(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Executors implementation public partial class Executors { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Flow.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Flow.cs index 22672b060f..0eb092d9b9 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Flow.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Flow.cs @@ -25,7 +25,385 @@ namespace Java.Util.Concurrent { - #region Flow + #region Flow declaration + /// + /// + /// + public partial class Flow : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Flow"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Flow() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Flow(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Processor declaration + /// + /// + /// + public partial class Processor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Flow$Processor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Processor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Processor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Processor declaration + /// + /// + /// + /// + /// + public partial class Processor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.Flow$Processor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Processor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Processor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Publisher declaration + /// + /// + /// + public partial class Publisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Flow$Publisher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Publisher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Publisher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Publisher declaration + /// + /// + /// + /// + public partial class Publisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.Flow$Publisher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Publisher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Publisher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Publisher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Subscriber declaration + /// + /// + /// + public partial class Subscriber : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Flow$Subscriber"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Subscriber() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Subscriber(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Subscriber declaration + /// + /// + /// + /// + public partial class Subscriber : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.Flow$Subscriber"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Subscriber() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Subscriber class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Subscriber(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Subscription declaration + /// + /// + /// + public partial class Subscription : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Flow$Subscription"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Subscription class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Subscription() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Subscription class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Subscription(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Flow implementation public partial class Flow { #region Constructors @@ -57,7 +435,7 @@ public static int DefaultBufferSize() #endregion #region Nested classes - #region Processor + #region Processor implementation public partial class Processor { #region Constructors @@ -88,7 +466,7 @@ public partial class Processor } #endregion - #region Processor + #region Processor implementation public partial class Processor { #region Constructors @@ -123,7 +501,7 @@ public partial class Processor } #endregion - #region Publisher + #region Publisher implementation public partial class Publisher { #region Constructors @@ -162,7 +540,7 @@ public void Subscribe(Java.Util.Concurrent.Flow.Subscriber arg0) } #endregion - #region Publisher + #region Publisher implementation public partial class Publisher { #region Constructors @@ -206,7 +584,7 @@ public void Subscribe(Java.Util.Concurrent.Flow.Subscriber + #region Subscriber implementation public partial class Subscriber { #region Constructors @@ -334,7 +712,7 @@ public void OnSubscribe(Java.Util.Concurrent.Flow.Subscription arg0) } #endregion - #region Subscription + #region Subscription implementation public partial class Subscription { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinPool.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinPool.cs index 601c03cf27..e8086e2f1d 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinPool.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinPool.cs @@ -25,7 +25,146 @@ namespace Java.Util.Concurrent { - #region ForkJoinPool + #region ForkJoinPool declaration + /// + /// + /// + public partial class ForkJoinPool : Java.Util.Concurrent.AbstractExecutorService + { + const string _bridgeClassName = "java.util.concurrent.ForkJoinPool"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForkJoinPool() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForkJoinPool(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ForkJoinWorkerThreadFactory declaration + /// + /// + /// + public partial class ForkJoinWorkerThreadFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ForkJoinPool$ForkJoinWorkerThreadFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ForkJoinWorkerThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ForkJoinWorkerThreadFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ForkJoinWorkerThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ForkJoinWorkerThreadFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ManagedBlocker declaration + /// + /// + /// + public partial class ManagedBlocker : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ForkJoinPool$ManagedBlocker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ManagedBlocker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ManagedBlocker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ManagedBlocker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ManagedBlocker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ForkJoinPool implementation public partial class ForkJoinPool { #region Constructors @@ -212,7 +351,7 @@ public void Execute(Java.Util.Concurrent.ForkJoinTask arg0) #endregion #region Nested classes - #region ForkJoinWorkerThreadFactory + #region ForkJoinWorkerThreadFactory implementation public partial class ForkJoinWorkerThreadFactory { #region Constructors @@ -252,7 +391,7 @@ public Java.Util.Concurrent.ForkJoinWorkerThread NewThread(Java.Util.Concurrent. } #endregion - #region ManagedBlocker + #region ManagedBlocker implementation public partial class ManagedBlocker { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinTask.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinTask.cs index ea232d4cbd..d85785155b 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinTask.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinTask.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region ForkJoinTask + #region ForkJoinTask declaration + /// + /// + /// + public partial class ForkJoinTask : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ForkJoinTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ForkJoinTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ForkJoinTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForkJoinTask declaration + /// + /// + /// + /// + public partial class ForkJoinTask : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.ForkJoinTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ForkJoinTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ForkJoinTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ForkJoinTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForkJoinTask implementation public partial class ForkJoinTask { #region Constructors @@ -334,7 +429,7 @@ public void Reinitialize() } #endregion - #region ForkJoinTask + #region ForkJoinTask implementation public partial class ForkJoinTask { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinWorkerThread.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinWorkerThread.cs index df94bbac97..f734150d7d 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinWorkerThread.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ForkJoinWorkerThread.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region ForkJoinWorkerThread + #region ForkJoinWorkerThread declaration + /// + /// + /// + public partial class ForkJoinWorkerThread : Java.Lang.Thread + { + const string _bridgeClassName = "java.util.concurrent.ForkJoinWorkerThread"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForkJoinWorkerThread() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForkJoinWorkerThread(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForkJoinWorkerThread implementation public partial class ForkJoinWorkerThread { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Future.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Future.cs index 39f2337467..bddc66aebd 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Future.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Future.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region Future + #region Future declaration + /// + /// + /// + public partial class Future : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Future"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Future() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Future(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Future declaration + /// + /// + /// + /// + public partial class Future : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.Future"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Future() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Future(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Future implementation public partial class Future { #region Constructors @@ -155,7 +250,7 @@ public partial interface IFuture } #endregion - #region Future + #region Future implementation public partial class Future : Java.Util.Concurrent.IFuture { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/FutureTask.cs b/src/net/JNet/Generated/Java/Util/Concurrent/FutureTask.cs index 1f6cb1284a..795fb34d71 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/FutureTask.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/FutureTask.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region FutureTask + #region FutureTask declaration + /// + /// + /// + public partial class FutureTask : Java.Util.Concurrent.RunnableFuture + { + const string _bridgeClassName = "java.util.concurrent.FutureTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FutureTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FutureTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FutureTask declaration + /// + /// + /// + /// + public partial class FutureTask : Java.Util.Concurrent.RunnableFuture + { + const string _bridgeClassName = "java.util.concurrent.FutureTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FutureTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FutureTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FutureTask implementation public partial class FutureTask { #region Constructors @@ -128,7 +219,7 @@ public void Run() } #endregion - #region FutureTask + #region FutureTask implementation public partial class FutureTask { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingDeque.cs b/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingDeque.cs index c0436792b4..778a1efb42 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingDeque.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingDeque.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region LinkedBlockingDeque + #region LinkedBlockingDeque declaration + /// + /// + /// + public partial class LinkedBlockingDeque : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.LinkedBlockingDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedBlockingDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedBlockingDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedBlockingDeque declaration + /// + /// + /// + /// + public partial class LinkedBlockingDeque : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.LinkedBlockingDeque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedBlockingDeque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedBlockingDeque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedBlockingDeque implementation public partial class LinkedBlockingDeque { #region Constructors @@ -368,7 +459,7 @@ public void PutLast(object arg0) } #endregion - #region LinkedBlockingDeque + #region LinkedBlockingDeque implementation public partial class LinkedBlockingDeque { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingQueue.cs index 3f3941dfd0..1674146afb 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/LinkedBlockingQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region LinkedBlockingQueue + #region LinkedBlockingQueue declaration + /// + /// + /// + public partial class LinkedBlockingQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.LinkedBlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedBlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedBlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedBlockingQueue declaration + /// + /// + /// + /// + public partial class LinkedBlockingQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.LinkedBlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedBlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedBlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedBlockingQueue implementation public partial class LinkedBlockingQueue { #region Constructors @@ -148,7 +239,7 @@ public void Put(object arg0) } #endregion - #region LinkedBlockingQueue + #region LinkedBlockingQueue implementation public partial class LinkedBlockingQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/LinkedTransferQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/LinkedTransferQueue.cs index 20f14f85eb..b819b8b939 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/LinkedTransferQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/LinkedTransferQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region LinkedTransferQueue + #region LinkedTransferQueue declaration + /// + /// + /// + public partial class LinkedTransferQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.LinkedTransferQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedTransferQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedTransferQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedTransferQueue declaration + /// + /// + /// + /// + public partial class LinkedTransferQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.LinkedTransferQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedTransferQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedTransferQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedTransferQueue implementation public partial class LinkedTransferQueue { #region Constructors @@ -183,7 +274,7 @@ public void Transfer(object arg0) } #endregion - #region LinkedTransferQueue + #region LinkedTransferQueue implementation public partial class LinkedTransferQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractOwnableSynchronizer.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractOwnableSynchronizer.cs index 1d95ad3847..80032843a5 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractOwnableSynchronizer.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractOwnableSynchronizer.cs @@ -25,7 +25,54 @@ namespace Java.Util.Concurrent.Locks { - #region AbstractOwnableSynchronizer + #region AbstractOwnableSynchronizer declaration + /// + /// + /// + public partial class AbstractOwnableSynchronizer : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.locks.AbstractOwnableSynchronizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractOwnableSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractOwnableSynchronizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractOwnableSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractOwnableSynchronizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractOwnableSynchronizer implementation public partial class AbstractOwnableSynchronizer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedLongSynchronizer.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedLongSynchronizer.cs index a04c440da2..7562df587d 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedLongSynchronizer.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedLongSynchronizer.cs @@ -25,7 +25,99 @@ namespace Java.Util.Concurrent.Locks { - #region AbstractQueuedLongSynchronizer + #region AbstractQueuedLongSynchronizer declaration + /// + /// + /// + public partial class AbstractQueuedLongSynchronizer : Java.Util.Concurrent.Locks.AbstractOwnableSynchronizer + { + const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedLongSynchronizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractQueuedLongSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueuedLongSynchronizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractQueuedLongSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueuedLongSynchronizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ConditionObject declaration + /// + /// + /// + public partial class ConditionObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedLongSynchronizer$ConditionObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConditionObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConditionObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AbstractQueuedLongSynchronizer implementation public partial class AbstractQueuedLongSynchronizer { #region Constructors @@ -227,7 +319,7 @@ public void AcquireSharedInterruptibly(long arg0) #endregion #region Nested classes - #region ConditionObject + #region ConditionObject implementation public partial class ConditionObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedSynchronizer.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedSynchronizer.cs index 581e36a873..365edc90f9 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedSynchronizer.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AbstractQueuedSynchronizer.cs @@ -25,7 +25,99 @@ namespace Java.Util.Concurrent.Locks { - #region AbstractQueuedSynchronizer + #region AbstractQueuedSynchronizer declaration + /// + /// + /// + public partial class AbstractQueuedSynchronizer : Java.Util.Concurrent.Locks.AbstractOwnableSynchronizer + { + const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedSynchronizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractQueuedSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueuedSynchronizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractQueuedSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractQueuedSynchronizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ConditionObject declaration + /// + /// + /// + public partial class ConditionObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConditionObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConditionObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AbstractQueuedSynchronizer implementation public partial class AbstractQueuedSynchronizer { #region Constructors @@ -227,7 +319,7 @@ public void AcquireSharedInterruptibly(int arg0) #endregion #region Nested classes - #region ConditionObject + #region ConditionObject implementation public partial class ConditionObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AllPackageClasses.cs deleted file mode 100644 index 3962b335ea..0000000000 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/AllPackageClasses.cs +++ /dev/null @@ -1,672 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Concurrent.Locks -{ - #region AbstractOwnableSynchronizer - /// - /// - /// - public partial class AbstractOwnableSynchronizer : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.locks.AbstractOwnableSynchronizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractOwnableSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractOwnableSynchronizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractOwnableSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractOwnableSynchronizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractQueuedLongSynchronizer - /// - /// - /// - public partial class AbstractQueuedLongSynchronizer : Java.Util.Concurrent.Locks.AbstractOwnableSynchronizer - { - const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedLongSynchronizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractQueuedLongSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueuedLongSynchronizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractQueuedLongSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueuedLongSynchronizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ConditionObject - /// - /// - /// - public partial class ConditionObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedLongSynchronizer$ConditionObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConditionObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConditionObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AbstractQueuedSynchronizer - /// - /// - /// - public partial class AbstractQueuedSynchronizer : Java.Util.Concurrent.Locks.AbstractOwnableSynchronizer - { - const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedSynchronizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractQueuedSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueuedSynchronizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractQueuedSynchronizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractQueuedSynchronizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ConditionObject - /// - /// - /// - public partial class ConditionObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConditionObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConditionObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Condition - /// - /// - /// - public partial class Condition : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.Condition"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Condition class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Condition() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Condition class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Condition(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Lock - /// - /// - /// - public partial class Lock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.Lock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Lock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Lock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Lock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Lock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LockSupport - /// - /// - /// - public partial class LockSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.LockSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LockSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LockSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReadWriteLock - /// - /// - /// - public partial class ReadWriteLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.ReadWriteLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ReadWriteLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ReadWriteLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ReadWriteLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ReadWriteLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReentrantLock - /// - /// - /// - public partial class ReentrantLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.ReentrantLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReentrantLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReentrantLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReentrantReadWriteLock - /// - /// - /// - public partial class ReentrantReadWriteLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.ReentrantReadWriteLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReentrantReadWriteLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReentrantReadWriteLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ReadLock - /// - /// - /// - public partial class ReadLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReadLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReadLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region WriteLock - /// - /// - /// - public partial class WriteLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WriteLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WriteLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region StampedLock - /// - /// - /// - public partial class StampedLock : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.concurrent.locks.StampedLock"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StampedLock() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StampedLock(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Condition.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Condition.cs index 1ffba90038..a47994ccfb 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Condition.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Condition.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent.Locks { + #region Condition declaration + /// + /// + /// + public partial class Condition : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.Condition"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Condition class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Condition() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Condition class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Condition(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICondition /// /// .NET interface for TO BE DEFINED FROM USER @@ -82,7 +129,7 @@ public partial interface ICondition } #endregion - #region Condition + #region Condition implementation public partial class Condition : Java.Util.Concurrent.Locks.ICondition { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Lock.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Lock.cs index 86db9717bd..c757df8b10 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Lock.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/Lock.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent.Locks { + #region Lock declaration + /// + /// + /// + public partial class Lock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.Lock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Lock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Lock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Lock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Lock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILock /// /// .NET interface for TO BE DEFINED FROM USER @@ -74,7 +121,7 @@ public partial interface ILock } #endregion - #region Lock + #region Lock implementation public partial class Lock : Java.Util.Concurrent.Locks.ILock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/LockSupport.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/LockSupport.cs index 2137f2b640..c88f1466d2 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/LockSupport.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/LockSupport.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Locks { - #region LockSupport + #region LockSupport declaration + /// + /// + /// + public partial class LockSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.LockSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LockSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LockSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LockSupport implementation public partial class LockSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReadWriteLock.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReadWriteLock.cs index 8aee5ea354..bef7b9a77e 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReadWriteLock.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReadWriteLock.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent.Locks { + #region ReadWriteLock declaration + /// + /// + /// + public partial class ReadWriteLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.ReadWriteLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ReadWriteLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ReadWriteLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ReadWriteLock class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ReadWriteLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReadWriteLock /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IReadWriteLock } #endregion - #region ReadWriteLock + #region ReadWriteLock implementation public partial class ReadWriteLock : Java.Util.Concurrent.Locks.IReadWriteLock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantLock.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantLock.cs index ac18ca90b5..eb1bbabe57 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantLock.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantLock.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Locks { - #region ReentrantLock + #region ReentrantLock declaration + /// + /// + /// + public partial class ReentrantLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.ReentrantLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReentrantLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReentrantLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReentrantLock implementation public partial class ReentrantLock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantReadWriteLock.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantReadWriteLock.cs index 8d293e4924..8026b9d690 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantReadWriteLock.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/ReentrantReadWriteLock.cs @@ -25,7 +25,142 @@ namespace Java.Util.Concurrent.Locks { - #region ReentrantReadWriteLock + #region ReentrantReadWriteLock declaration + /// + /// + /// + public partial class ReentrantReadWriteLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.ReentrantReadWriteLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReentrantReadWriteLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReentrantReadWriteLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ReadLock declaration + /// + /// + /// + public partial class ReadLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReadLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReadLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region WriteLock declaration + /// + /// + /// + public partial class WriteLock : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.locks.ReentrantReadWriteLock$WriteLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WriteLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WriteLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ReentrantReadWriteLock implementation public partial class ReentrantReadWriteLock { #region Constructors @@ -168,7 +303,7 @@ public Java.Util.Concurrent.Locks.Lock WriteLockMethod() #endregion #region Nested classes - #region ReadLock + #region ReadLock implementation public partial class ReadLock { #region Constructors @@ -256,7 +391,7 @@ public void Unlock() } #endregion - #region WriteLock + #region WriteLock implementation public partial class WriteLock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/StampedLock.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/StampedLock.cs index 90910e965d..881297875c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Locks/StampedLock.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Locks/StampedLock.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent.Locks { - #region StampedLock + #region StampedLock declaration + /// + /// + /// + public partial class StampedLock : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.locks.StampedLock"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StampedLock() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StampedLock(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StampedLock implementation public partial class StampedLock { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Phaser.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Phaser.cs index 22492cb656..3241c147e6 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Phaser.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Phaser.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region Phaser + #region Phaser declaration + /// + /// + /// + public partial class Phaser : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.Phaser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Phaser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Phaser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Phaser implementation public partial class Phaser { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/PriorityBlockingQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/PriorityBlockingQueue.cs index d862c9ee5c..754c8d3e72 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/PriorityBlockingQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/PriorityBlockingQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region PriorityBlockingQueue + #region PriorityBlockingQueue declaration + /// + /// + /// + public partial class PriorityBlockingQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.PriorityBlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PriorityBlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PriorityBlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PriorityBlockingQueue declaration + /// + /// + /// + /// + public partial class PriorityBlockingQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.PriorityBlockingQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PriorityBlockingQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PriorityBlockingQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PriorityBlockingQueue implementation public partial class PriorityBlockingQueue { #region Constructors @@ -163,7 +254,7 @@ public void Put(object arg0) } #endregion - #region PriorityBlockingQueue + #region PriorityBlockingQueue implementation public partial class PriorityBlockingQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveAction.cs b/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveAction.cs index 707bd11d0d..d34d95dd1c 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveAction.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveAction.cs @@ -25,7 +25,54 @@ namespace Java.Util.Concurrent { - #region RecursiveAction + #region RecursiveAction declaration + /// + /// + /// + public partial class RecursiveAction : Java.Util.Concurrent.ForkJoinTask + { + const string _bridgeClassName = "java.util.concurrent.RecursiveAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RecursiveAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RecursiveAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RecursiveAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RecursiveAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RecursiveAction implementation public partial class RecursiveAction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveTask.cs b/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveTask.cs index 9d87ecbb8a..436076f2c7 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveTask.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/RecursiveTask.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region RecursiveTask + #region RecursiveTask declaration + /// + /// + /// + public partial class RecursiveTask : Java.Util.Concurrent.ForkJoinTask + { + const string _bridgeClassName = "java.util.concurrent.RecursiveTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RecursiveTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RecursiveTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RecursiveTask declaration + /// + /// + /// + /// + public partial class RecursiveTask : Java.Util.Concurrent.ForkJoinTask + { + const string _bridgeClassName = "java.util.concurrent.RecursiveTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RecursiveTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RecursiveTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RecursiveTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RecursiveTask implementation public partial class RecursiveTask { #region Constructors @@ -56,7 +151,7 @@ public partial class RecursiveTask } #endregion - #region RecursiveTask + #region RecursiveTask implementation public partial class RecursiveTask { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionException.cs b/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionException.cs index c67b301ee7..b000b8c677 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionException.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Concurrent { - #region RejectedExecutionException + #region RejectedExecutionException declaration + /// + /// + /// + public partial class RejectedExecutionException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.concurrent.RejectedExecutionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RejectedExecutionException implementation public partial class RejectedExecutionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionHandler.cs b/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionHandler.cs index 55a15cbb33..9c2644d842 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionHandler.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/RejectedExecutionHandler.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent { + #region RejectedExecutionHandler declaration + /// + /// + /// + public partial class RejectedExecutionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.RejectedExecutionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RejectedExecutionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RejectedExecutionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RejectedExecutionHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RejectedExecutionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRejectedExecutionHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IRejectedExecutionHandler } #endregion - #region RejectedExecutionHandler + #region RejectedExecutionHandler implementation public partial class RejectedExecutionHandler : Java.Util.Concurrent.IRejectedExecutionHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/RunnableFuture.cs b/src/net/JNet/Generated/Java/Util/Concurrent/RunnableFuture.cs index ed182654a0..5770a6ce7e 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/RunnableFuture.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/RunnableFuture.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region RunnableFuture + #region RunnableFuture declaration + /// + /// + /// + public partial class RunnableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.RunnableFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RunnableFuture declaration + /// + /// + /// + /// + public partial class RunnableFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.RunnableFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RunnableFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RunnableFuture implementation public partial class RunnableFuture { #region Constructors @@ -93,7 +188,7 @@ public partial interface IRunnableFuture } #endregion - #region RunnableFuture + #region RunnableFuture implementation public partial class RunnableFuture : Java.Util.Concurrent.IRunnableFuture { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/RunnableScheduledFuture.cs b/src/net/JNet/Generated/Java/Util/Concurrent/RunnableScheduledFuture.cs index 2bfd9a5684..b1838217ac 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/RunnableScheduledFuture.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/RunnableScheduledFuture.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region RunnableScheduledFuture + #region RunnableScheduledFuture declaration + /// + /// + /// + public partial class RunnableScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.RunnableScheduledFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableScheduledFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableScheduledFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RunnableScheduledFuture declaration + /// + /// + /// + /// + public partial class RunnableScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.RunnableScheduledFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableScheduledFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RunnableScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RunnableScheduledFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RunnableScheduledFuture implementation public partial class RunnableScheduledFuture { #region Constructors @@ -95,7 +190,7 @@ public partial interface IRunnableScheduledFuture } #endregion - #region RunnableScheduledFuture + #region RunnableScheduledFuture implementation public partial class RunnableScheduledFuture : Java.Util.Concurrent.IRunnableScheduledFuture { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledExecutorService.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledExecutorService.cs index 981575a34e..88ba2bfb74 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledExecutorService.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledExecutorService.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent { + #region ScheduledExecutorService declaration + /// + /// + /// + public partial class ScheduledExecutorService : Java.Util.Concurrent.ExecutorService + { + const string _bridgeClassName = "java.util.concurrent.ScheduledExecutorService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScheduledExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScheduledExecutorService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScheduledExecutorService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScheduledExecutorService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScheduledExecutorService /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface IScheduledExecutorService : Java.Util.Concurrent.IExecu } #endregion - #region ScheduledExecutorService + #region ScheduledExecutorService implementation public partial class ScheduledExecutorService : Java.Util.Concurrent.IScheduledExecutorService { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledFuture.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledFuture.cs index 411d5d3171..65824a81e8 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledFuture.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledFuture.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region ScheduledFuture + #region ScheduledFuture declaration + /// + /// + /// + public partial class ScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ScheduledFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScheduledFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScheduledFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScheduledFuture declaration + /// + /// + /// + /// + public partial class ScheduledFuture : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.ScheduledFuture"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScheduledFuture() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScheduledFuture class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScheduledFuture(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScheduledFuture implementation public partial class ScheduledFuture { #region Constructors @@ -82,7 +177,7 @@ public partial interface IScheduledFuture } #endregion - #region ScheduledFuture + #region ScheduledFuture implementation public partial class ScheduledFuture : Java.Util.Concurrent.IScheduledFuture { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledThreadPoolExecutor.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledThreadPoolExecutor.cs index e74350aac0..872b2961f5 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledThreadPoolExecutor.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ScheduledThreadPoolExecutor.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region ScheduledThreadPoolExecutor + #region ScheduledThreadPoolExecutor declaration + /// + /// + /// + public partial class ScheduledThreadPoolExecutor : Java.Util.Concurrent.ThreadPoolExecutor + { + const string _bridgeClassName = "java.util.concurrent.ScheduledThreadPoolExecutor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScheduledThreadPoolExecutor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScheduledThreadPoolExecutor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScheduledThreadPoolExecutor implementation public partial class ScheduledThreadPoolExecutor { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/Semaphore.cs b/src/net/JNet/Generated/Java/Util/Concurrent/Semaphore.cs index 07cf88bc9f..12d45bb221 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/Semaphore.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/Semaphore.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region Semaphore + #region Semaphore declaration + /// + /// + /// + public partial class Semaphore : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.concurrent.Semaphore"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Semaphore() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Semaphore(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Semaphore implementation public partial class Semaphore { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/SubmissionPublisher.cs b/src/net/JNet/Generated/Java/Util/Concurrent/SubmissionPublisher.cs index 56cb737a19..f7cc8913f3 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/SubmissionPublisher.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/SubmissionPublisher.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region SubmissionPublisher + #region SubmissionPublisher declaration + /// + /// + /// + public partial class SubmissionPublisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.SubmissionPublisher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SubmissionPublisher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SubmissionPublisher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SubmissionPublisher declaration + /// + /// + /// + /// + public partial class SubmissionPublisher : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.concurrent.SubmissionPublisher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SubmissionPublisher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SubmissionPublisher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SubmissionPublisher implementation public partial class SubmissionPublisher { #region Constructors @@ -218,7 +309,7 @@ public void Subscribe(Java.Util.Concurrent.Flow.Subscriber arg0) } #endregion - #region SubmissionPublisher + #region SubmissionPublisher implementation public partial class SubmissionPublisher { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/SynchronousQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/SynchronousQueue.cs index c5f8cc7492..cbcd76f6c5 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/SynchronousQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/SynchronousQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util.Concurrent { - #region SynchronousQueue + #region SynchronousQueue declaration + /// + /// + /// + public partial class SynchronousQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.SynchronousQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynchronousQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynchronousQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynchronousQueue declaration + /// + /// + /// + /// + public partial class SynchronousQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.concurrent.SynchronousQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynchronousQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynchronousQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynchronousQueue implementation public partial class SynchronousQueue { #region Constructors @@ -140,7 +231,7 @@ public void Put(object arg0) } #endregion - #region SynchronousQueue + #region SynchronousQueue implementation public partial class SynchronousQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ThreadFactory.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ThreadFactory.cs index 792fa31519..b7ee7b46a2 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ThreadFactory.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ThreadFactory.cs @@ -25,6 +25,53 @@ namespace Java.Util.Concurrent { + #region ThreadFactory declaration + /// + /// + /// + public partial class ThreadFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.concurrent.ThreadFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ThreadFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ThreadFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ThreadFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IThreadFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IThreadFactory } #endregion - #region ThreadFactory + #region ThreadFactory implementation public partial class ThreadFactory : Java.Util.Concurrent.IThreadFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ThreadLocalRandom.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ThreadLocalRandom.cs index 3dd3b9a1ad..36dc447e5a 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ThreadLocalRandom.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ThreadLocalRandom.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region ThreadLocalRandom + #region ThreadLocalRandom declaration + /// + /// + /// + public partial class ThreadLocalRandom : Java.Util.Random + { + const string _bridgeClassName = "java.util.concurrent.ThreadLocalRandom"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThreadLocalRandom() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThreadLocalRandom(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ThreadLocalRandom implementation public partial class ThreadLocalRandom { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/ThreadPoolExecutor.cs b/src/net/JNet/Generated/Java/Util/Concurrent/ThreadPoolExecutor.cs index 6eb95f301b..7ccd4587de 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/ThreadPoolExecutor.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/ThreadPoolExecutor.cs @@ -25,7 +25,232 @@ namespace Java.Util.Concurrent { - #region ThreadPoolExecutor + #region ThreadPoolExecutor declaration + /// + /// + /// + public partial class ThreadPoolExecutor : Java.Util.Concurrent.AbstractExecutorService + { + const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ThreadPoolExecutor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ThreadPoolExecutor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AbortPolicy declaration + /// + /// + /// + public partial class AbortPolicy : Java.Util.Concurrent.RejectedExecutionHandler + { + const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$AbortPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AbortPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AbortPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CallerRunsPolicy declaration + /// + /// + /// + public partial class CallerRunsPolicy : Java.Util.Concurrent.RejectedExecutionHandler + { + const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CallerRunsPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CallerRunsPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DiscardOldestPolicy declaration + /// + /// + /// + public partial class DiscardOldestPolicy : Java.Util.Concurrent.RejectedExecutionHandler + { + const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$DiscardOldestPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DiscardOldestPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DiscardOldestPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DiscardPolicy declaration + /// + /// + /// + public partial class DiscardPolicy : Java.Util.Concurrent.RejectedExecutionHandler + { + const string _bridgeClassName = "java.util.concurrent.ThreadPoolExecutor$DiscardPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DiscardPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DiscardPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ThreadPoolExecutor implementation public partial class ThreadPoolExecutor { #region Constructors @@ -245,7 +470,7 @@ public void SetKeepAliveTime(long arg0, Java.Util.Concurrent.TimeUnit arg1) #endregion #region Nested classes - #region AbortPolicy + #region AbortPolicy implementation public partial class AbortPolicy { #region Constructors @@ -285,7 +510,7 @@ public void RejectedExecution(Java.Lang.Runnable arg0, Java.Util.Concurrent.Thre } #endregion - #region CallerRunsPolicy + #region CallerRunsPolicy implementation public partial class CallerRunsPolicy { #region Constructors @@ -325,7 +550,7 @@ public void RejectedExecution(Java.Lang.Runnable arg0, Java.Util.Concurrent.Thre } #endregion - #region DiscardOldestPolicy + #region DiscardOldestPolicy implementation public partial class DiscardOldestPolicy { #region Constructors @@ -365,7 +590,7 @@ public void RejectedExecution(Java.Lang.Runnable arg0, Java.Util.Concurrent.Thre } #endregion - #region DiscardPolicy + #region DiscardPolicy implementation public partial class DiscardPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/TimeUnit.cs b/src/net/JNet/Generated/Java/Util/Concurrent/TimeUnit.cs index 9d1fbc2c0d..516f832fb8 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/TimeUnit.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/TimeUnit.cs @@ -25,7 +25,52 @@ namespace Java.Util.Concurrent { - #region TimeUnit + #region TimeUnit declaration + /// + /// + /// + public partial class TimeUnit : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.concurrent.TimeUnit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TimeUnit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TimeUnit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TimeUnit implementation public partial class TimeUnit { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/TimeoutException.cs b/src/net/JNet/Generated/Java/Util/Concurrent/TimeoutException.cs index 82e6b8e724..42dfb106c6 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/TimeoutException.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/TimeoutException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Concurrent { - #region TimeoutException + #region TimeoutException declaration + /// + /// + /// + public partial class TimeoutException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.concurrent.TimeoutException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TimeoutException implementation public partial class TimeoutException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Concurrent/TransferQueue.cs b/src/net/JNet/Generated/Java/Util/Concurrent/TransferQueue.cs index 00460ab983..d1bb58973f 100644 --- a/src/net/JNet/Generated/Java/Util/Concurrent/TransferQueue.cs +++ b/src/net/JNet/Generated/Java/Util/Concurrent/TransferQueue.cs @@ -25,7 +25,102 @@ namespace Java.Util.Concurrent { - #region TransferQueue + #region TransferQueue declaration + /// + /// + /// + public partial class TransferQueue : Java.Util.Concurrent.BlockingQueue + { + const string _bridgeClassName = "java.util.concurrent.TransferQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransferQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransferQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TransferQueue declaration + /// + /// + /// + /// + public partial class TransferQueue : Java.Util.Concurrent.BlockingQueue + { + const string _bridgeClassName = "java.util.concurrent.TransferQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransferQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransferQueue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransferQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TransferQueue implementation public partial class TransferQueue { #region Constructors @@ -149,7 +244,7 @@ public partial interface ITransferQueue : Java.Util.Concurrent.IBlockingQueue } #endregion - #region TransferQueue + #region TransferQueue implementation public partial class TransferQueue : Java.Util.Concurrent.ITransferQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ConcurrentModificationException.cs b/src/net/JNet/Generated/Java/Util/ConcurrentModificationException.cs index 63df511908..f67ba480b0 100644 --- a/src/net/JNet/Generated/Java/Util/ConcurrentModificationException.cs +++ b/src/net/JNet/Generated/Java/Util/ConcurrentModificationException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region ConcurrentModificationException + #region ConcurrentModificationException declaration + /// + /// + /// + public partial class ConcurrentModificationException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.ConcurrentModificationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ConcurrentModificationException implementation public partial class ConcurrentModificationException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Currency.cs b/src/net/JNet/Generated/Java/Util/Currency.cs index 23ff91f080..50f8affc00 100644 --- a/src/net/JNet/Generated/Java/Util/Currency.cs +++ b/src/net/JNet/Generated/Java/Util/Currency.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Currency + #region Currency declaration + /// + /// + /// + public partial class Currency : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.Currency"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Currency() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Currency(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Currency implementation public partial class Currency { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Date.cs b/src/net/JNet/Generated/Java/Util/Date.cs index b83ed83029..3df7549a1c 100644 --- a/src/net/JNet/Generated/Java/Util/Date.cs +++ b/src/net/JNet/Generated/Java/Util/Date.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Date + #region Date declaration + /// + /// + /// + public partial class Date : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Date"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Date() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Date(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Date implementation public partial class Date { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Deque.cs b/src/net/JNet/Generated/Java/Util/Deque.cs index f8bb075a04..59099f9138 100644 --- a/src/net/JNet/Generated/Java/Util/Deque.cs +++ b/src/net/JNet/Generated/Java/Util/Deque.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region Deque + #region Deque declaration + /// + /// + /// + public partial class Deque : Java.Util.Queue + { + const string _bridgeClassName = "java.util.Deque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Deque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Deque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Deque declaration + /// + /// + /// + /// + public partial class Deque : Java.Util.Queue + { + const string _bridgeClassName = "java.util.Deque"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Deque() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Deque class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Deque(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Deque implementation public partial class Deque { #region Constructors @@ -453,7 +548,7 @@ public partial interface IDeque : Java.Util.IQueue } #endregion - #region Deque + #region Deque implementation public partial class Deque : Java.Util.IDeque { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Dictionary.cs b/src/net/JNet/Generated/Java/Util/Dictionary.cs index 23f5038fad..3ea450322e 100644 --- a/src/net/JNet/Generated/Java/Util/Dictionary.cs +++ b/src/net/JNet/Generated/Java/Util/Dictionary.cs @@ -25,7 +25,103 @@ namespace Java.Util { - #region Dictionary + #region Dictionary declaration + /// + /// + /// + public partial class Dictionary : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Dictionary"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Dictionary() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Dictionary(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Dictionary declaration + /// + /// + /// + /// + /// + public partial class Dictionary : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.Dictionary"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Dictionary() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Dictionary class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Dictionary(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Dictionary implementation public partial class Dictionary { #region Constructors @@ -116,7 +212,7 @@ public object Remove(object arg0) } #endregion - #region Dictionary + #region Dictionary implementation public partial class Dictionary { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/DoubleSummaryStatistics.cs b/src/net/JNet/Generated/Java/Util/DoubleSummaryStatistics.cs index a498aef144..70060734db 100644 --- a/src/net/JNet/Generated/Java/Util/DoubleSummaryStatistics.cs +++ b/src/net/JNet/Generated/Java/Util/DoubleSummaryStatistics.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region DoubleSummaryStatistics + #region DoubleSummaryStatistics declaration + /// + /// + /// + public partial class DoubleSummaryStatistics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.DoubleSummaryStatistics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleSummaryStatistics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DoubleSummaryStatistics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DoubleSummaryStatistics implementation public partial class DoubleSummaryStatistics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/DuplicateFormatFlagsException.cs b/src/net/JNet/Generated/Java/Util/DuplicateFormatFlagsException.cs index 1eb58b15f6..29a04c9000 100644 --- a/src/net/JNet/Generated/Java/Util/DuplicateFormatFlagsException.cs +++ b/src/net/JNet/Generated/Java/Util/DuplicateFormatFlagsException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region DuplicateFormatFlagsException + #region DuplicateFormatFlagsException declaration + /// + /// + /// + public partial class DuplicateFormatFlagsException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.DuplicateFormatFlagsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DuplicateFormatFlagsException implementation public partial class DuplicateFormatFlagsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/EmptyStackException.cs b/src/net/JNet/Generated/Java/Util/EmptyStackException.cs index ea712f7ac8..d5927daa20 100644 --- a/src/net/JNet/Generated/Java/Util/EmptyStackException.cs +++ b/src/net/JNet/Generated/Java/Util/EmptyStackException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region EmptyStackException + #region EmptyStackException declaration + /// + /// + /// + public partial class EmptyStackException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.EmptyStackException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region EmptyStackException implementation public partial class EmptyStackException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/EnumMap.cs b/src/net/JNet/Generated/Java/Util/EnumMap.cs index 2e2e8edf95..ae092f1308 100644 --- a/src/net/JNet/Generated/Java/Util/EnumMap.cs +++ b/src/net/JNet/Generated/Java/Util/EnumMap.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region EnumMap + #region EnumMap declaration + /// + /// + /// + public partial class EnumMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.EnumMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EnumMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EnumMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EnumMap declaration + /// + /// + /// + /// + /// + public partial class EnumMap : Java.Util.AbstractMap where K : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.EnumMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EnumMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EnumMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EnumMap implementation public partial class EnumMap { #region Constructors @@ -106,7 +198,7 @@ public object Put(Java.Lang.Enum arg0, object arg1) } #endregion - #region EnumMap + #region EnumMap implementation public partial class EnumMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/EnumSet.cs b/src/net/JNet/Generated/Java/Util/EnumSet.cs index a6d8121578..922c3a6d11 100644 --- a/src/net/JNet/Generated/Java/Util/EnumSet.cs +++ b/src/net/JNet/Generated/Java/Util/EnumSet.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region EnumSet + #region EnumSet declaration + /// + /// + /// + public partial class EnumSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.EnumSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EnumSet declaration + /// + /// + /// + /// + public partial class EnumSet : Java.Util.AbstractSet where E : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.EnumSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EnumSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EnumSet implementation public partial class EnumSet { #region Constructors @@ -192,7 +287,7 @@ public Java.Util.EnumSet Clone() } #endregion - #region EnumSet + #region EnumSet implementation public partial class EnumSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Enumeration.cs b/src/net/JNet/Generated/Java/Util/Enumeration.cs index 1221225ca7..701d87220a 100644 --- a/src/net/JNet/Generated/Java/Util/Enumeration.cs +++ b/src/net/JNet/Generated/Java/Util/Enumeration.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region Enumeration + #region Enumeration declaration + /// + /// + /// + public partial class Enumeration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Enumeration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enumeration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enumeration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Enumeration declaration + /// + /// + /// + /// + public partial class Enumeration : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.Enumeration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enumeration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Enumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Enumeration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Enumeration implementation public partial class Enumeration { #region Constructors @@ -113,7 +208,7 @@ public partial interface IEnumeration } #endregion - #region Enumeration + #region Enumeration implementation public partial class Enumeration : Java.Util.IEnumeration { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/EventListenerProxy.cs b/src/net/JNet/Generated/Java/Util/EventListenerProxy.cs index da817a2b24..0fec3f95b9 100644 --- a/src/net/JNet/Generated/Java/Util/EventListenerProxy.cs +++ b/src/net/JNet/Generated/Java/Util/EventListenerProxy.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region EventListenerProxy + #region EventListenerProxy declaration + /// + /// + /// + public partial class EventListenerProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.EventListenerProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventListenerProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventListenerProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventListenerProxy declaration + /// + /// + /// + /// + public partial class EventListenerProxy : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where T : Java.Util.IEventListener, new() + { + const string _bridgeClassName = "java.util.EventListenerProxy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventListenerProxy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EventListenerProxy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventListenerProxy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventListenerProxy implementation public partial class EventListenerProxy { #region Constructors @@ -71,7 +166,7 @@ public Java.Util.EventListener Listener } #endregion - #region EventListenerProxy + #region EventListenerProxy implementation public partial class EventListenerProxy { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/EventObject.cs b/src/net/JNet/Generated/Java/Util/EventObject.cs index fcd7f63260..898cc0175e 100644 --- a/src/net/JNet/Generated/Java/Util/EventObject.cs +++ b/src/net/JNet/Generated/Java/Util/EventObject.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region EventObject + #region EventObject declaration + /// + /// + /// + public partial class EventObject : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.EventObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventObject implementation public partial class EventObject { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/FormatFlagsConversionMismatchException.cs b/src/net/JNet/Generated/Java/Util/FormatFlagsConversionMismatchException.cs index 9a33c8156d..d86ef0b45a 100644 --- a/src/net/JNet/Generated/Java/Util/FormatFlagsConversionMismatchException.cs +++ b/src/net/JNet/Generated/Java/Util/FormatFlagsConversionMismatchException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region FormatFlagsConversionMismatchException + #region FormatFlagsConversionMismatchException declaration + /// + /// + /// + public partial class FormatFlagsConversionMismatchException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.FormatFlagsConversionMismatchException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FormatFlagsConversionMismatchException implementation public partial class FormatFlagsConversionMismatchException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Formattable.cs b/src/net/JNet/Generated/Java/Util/Formattable.cs index 1f6ae54d3a..2c5f18a63e 100644 --- a/src/net/JNet/Generated/Java/Util/Formattable.cs +++ b/src/net/JNet/Generated/Java/Util/Formattable.cs @@ -25,6 +25,53 @@ namespace Java.Util { + #region Formattable declaration + /// + /// + /// + public partial class Formattable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Formattable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Formattable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Formattable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Formattable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Formattable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFormattable /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IFormattable } #endregion - #region Formattable + #region Formattable implementation public partial class Formattable : Java.Util.IFormattable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/FormattableFlags.cs b/src/net/JNet/Generated/Java/Util/FormattableFlags.cs index 4127c3e862..aa48bfb535 100644 --- a/src/net/JNet/Generated/Java/Util/FormattableFlags.cs +++ b/src/net/JNet/Generated/Java/Util/FormattableFlags.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region FormattableFlags + #region FormattableFlags declaration + /// + /// + /// + public partial class FormattableFlags : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.FormattableFlags"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FormattableFlags() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FormattableFlags(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FormattableFlags implementation public partial class FormattableFlags { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Formatter.cs b/src/net/JNet/Generated/Java/Util/Formatter.cs index 1f6123018c..c8eb4b2ab1 100644 --- a/src/net/JNet/Generated/Java/Util/Formatter.cs +++ b/src/net/JNet/Generated/Java/Util/Formatter.cs @@ -25,7 +25,97 @@ namespace Java.Util { - #region Formatter + #region Formatter declaration + /// + /// + /// + public partial class Formatter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Formatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Formatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Formatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BigDecimalLayoutForm declaration + /// + /// + /// + public partial class BigDecimalLayoutForm : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.Formatter$BigDecimalLayoutForm"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BigDecimalLayoutForm() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BigDecimalLayoutForm(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Formatter implementation public partial class Formatter { #region Constructors @@ -274,7 +364,7 @@ public void Flush() #endregion #region Nested classes - #region BigDecimalLayoutForm + #region BigDecimalLayoutForm implementation public partial class BigDecimalLayoutForm { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/FormatterClosedException.cs b/src/net/JNet/Generated/Java/Util/FormatterClosedException.cs index ec31c55f88..1f3ce755ba 100644 --- a/src/net/JNet/Generated/Java/Util/FormatterClosedException.cs +++ b/src/net/JNet/Generated/Java/Util/FormatterClosedException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region FormatterClosedException + #region FormatterClosedException declaration + /// + /// + /// + public partial class FormatterClosedException : Java.Lang.IllegalStateException + { + const string _bridgeClassName = "java.util.FormatterClosedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FormatterClosedException implementation public partial class FormatterClosedException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Function/AllPackageClasses.cs deleted file mode 100644 index ac88588e91..0000000000 --- a/src/net/JNet/Generated/Java/Util/Function/AllPackageClasses.cs +++ /dev/null @@ -1,4347 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Function -{ - #region BiConsumer - /// - /// - /// - public partial class BiConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BiConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BiConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BiConsumerDirect : BiConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BiConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BiConsumer - /// - /// - /// - /// - /// - public partial class BiConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BiConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BiConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BiConsumerDirect : BiConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BiConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BiFunction - /// - /// - /// - public partial class BiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BiFunctionDirect : BiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BiFunction - /// - /// - /// - /// - /// - /// - public partial class BiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BiFunctionDirect : BiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BinaryOperator - /// - /// - /// - public partial class BinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BinaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BinaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BinaryOperatorDirect : BinaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BinaryOperator - /// - /// - /// - /// - public partial class BinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BinaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BinaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BinaryOperatorDirect : BinaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BiPredicate - /// - /// - /// - public partial class BiPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BiPredicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BiPredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BiPredicateDirect : BiPredicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BiPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BiPredicate - /// - /// - /// - /// - /// - public partial class BiPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BiPredicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BiPredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BiPredicateDirect : BiPredicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BiPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region BooleanSupplier - /// - /// - /// - public partial class BooleanSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BooleanSupplier() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BooleanSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region BooleanSupplierDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class BooleanSupplierDirect : BooleanSupplier - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.BooleanSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Consumer - /// - /// - /// - public partial class Consumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Consumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Consumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ConsumerDirect : Consumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Consumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Consumer - /// - /// - /// - /// - public partial class Consumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Consumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Consumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ConsumerDirect : Consumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Consumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleBinaryOperator - /// - /// - /// - public partial class DoubleBinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleBinaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleBinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleBinaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleBinaryOperatorDirect : DoubleBinaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleBinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleConsumer - /// - /// - /// - public partial class DoubleConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleConsumerDirect : DoubleConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleFunction - /// - /// - /// - public partial class DoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleFunctionDirect : DoubleFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleFunction - /// - /// - /// - /// - public partial class DoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleFunctionDirect : DoubleFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoublePredicate - /// - /// - /// - public partial class DoublePredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoublePredicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoublePredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoublePredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoublePredicateDirect : DoublePredicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoublePredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleSupplier - /// - /// - /// - public partial class DoubleSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleSupplier() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleSupplierDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleSupplierDirect : DoubleSupplier - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleToIntFunction - /// - /// - /// - public partial class DoubleToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleToIntFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleToIntFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleToIntFunctionDirect : DoubleToIntFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleToLongFunction - /// - /// - /// - public partial class DoubleToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleToLongFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleToLongFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleToLongFunctionDirect : DoubleToLongFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DoubleUnaryOperator - /// - /// - /// - public partial class DoubleUnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DoubleUnaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleUnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DoubleUnaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DoubleUnaryOperatorDirect : DoubleUnaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.DoubleUnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Function - /// - /// - /// - public partial class Function : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Function() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Function"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region FunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class FunctionDirect : Function - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Function"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Function - /// - /// - /// - /// - /// - public partial class Function : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Function() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Function"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region FunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class FunctionDirect : Function - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Function"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntBinaryOperator - /// - /// - /// - public partial class IntBinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntBinaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntBinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntBinaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntBinaryOperatorDirect : IntBinaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntBinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntConsumer - /// - /// - /// - public partial class IntConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntConsumerDirect : IntConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntFunction - /// - /// - /// - public partial class IntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntFunctionDirect : IntFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntFunction - /// - /// - /// - /// - public partial class IntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntFunctionDirect : IntFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntPredicate - /// - /// - /// - public partial class IntPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntPredicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntPredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntPredicateDirect : IntPredicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntSupplier - /// - /// - /// - public partial class IntSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntSupplier() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntSupplierDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntSupplierDirect : IntSupplier - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntToDoubleFunction - /// - /// - /// - public partial class IntToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntToDoubleFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntToDoubleFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntToDoubleFunctionDirect : IntToDoubleFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntToLongFunction - /// - /// - /// - public partial class IntToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntToLongFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntToLongFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntToLongFunctionDirect : IntToLongFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IntUnaryOperator - /// - /// - /// - public partial class IntUnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IntUnaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntUnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IntUnaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IntUnaryOperatorDirect : IntUnaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.IntUnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongBinaryOperator - /// - /// - /// - public partial class LongBinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongBinaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongBinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongBinaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongBinaryOperatorDirect : LongBinaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongBinaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongConsumer - /// - /// - /// - public partial class LongConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongConsumerDirect : LongConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongFunction - /// - /// - /// - public partial class LongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongFunctionDirect : LongFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongFunction - /// - /// - /// - /// - public partial class LongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongFunctionDirect : LongFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongPredicate - /// - /// - /// - public partial class LongPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongPredicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongPredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongPredicateDirect : LongPredicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongPredicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongSupplier - /// - /// - /// - public partial class LongSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongSupplier() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongSupplierDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongSupplierDirect : LongSupplier - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongSupplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongToDoubleFunction - /// - /// - /// - public partial class LongToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongToDoubleFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongToDoubleFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongToDoubleFunctionDirect : LongToDoubleFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongToIntFunction - /// - /// - /// - public partial class LongToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongToIntFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongToIntFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongToIntFunctionDirect : LongToIntFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LongUnaryOperator - /// - /// - /// - public partial class LongUnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LongUnaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongUnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LongUnaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LongUnaryOperatorDirect : LongUnaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.LongUnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjDoubleConsumer - /// - /// - /// - public partial class ObjDoubleConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjDoubleConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjDoubleConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjDoubleConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjDoubleConsumerDirect : ObjDoubleConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ObjDoubleConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjDoubleConsumer - /// - /// - /// - /// - public partial class ObjDoubleConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjDoubleConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjDoubleConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjDoubleConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjDoubleConsumerDirect : ObjDoubleConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ObjDoubleConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjIntConsumer - /// - /// - /// - public partial class ObjIntConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjIntConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjIntConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjIntConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjIntConsumerDirect : ObjIntConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ObjIntConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjIntConsumer - /// - /// - /// - /// - public partial class ObjIntConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjIntConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjIntConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjIntConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjIntConsumerDirect : ObjIntConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ObjIntConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjLongConsumer - /// - /// - /// - public partial class ObjLongConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjLongConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjLongConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjLongConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjLongConsumerDirect : ObjLongConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ObjLongConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjLongConsumer - /// - /// - /// - /// - public partial class ObjLongConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjLongConsumer() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjLongConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjLongConsumerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjLongConsumerDirect : ObjLongConsumer - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ObjLongConsumer"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Predicate - /// - /// - /// - public partial class Predicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Predicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Predicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PredicateDirect : Predicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Predicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Predicate - /// - /// - /// - /// - public partial class Predicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Predicate() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Predicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PredicateDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PredicateDirect : Predicate - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Predicate"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Supplier - /// - /// - /// - public partial class Supplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Supplier() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Supplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region SupplierDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class SupplierDirect : Supplier - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Supplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Supplier - /// - /// - /// - /// - public partial class Supplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Supplier() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Supplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region SupplierDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class SupplierDirect : Supplier - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.Supplier"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToDoubleBiFunction - /// - /// - /// - public partial class ToDoubleBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToDoubleBiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToDoubleBiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToDoubleBiFunctionDirect : ToDoubleBiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToDoubleBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToDoubleBiFunction - /// - /// - /// - /// - /// - public partial class ToDoubleBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToDoubleBiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToDoubleBiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToDoubleBiFunctionDirect : ToDoubleBiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToDoubleBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToDoubleFunction - /// - /// - /// - public partial class ToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToDoubleFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToDoubleFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToDoubleFunctionDirect : ToDoubleFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToDoubleFunction - /// - /// - /// - /// - public partial class ToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToDoubleFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToDoubleFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToDoubleFunctionDirect : ToDoubleFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToDoubleFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToIntBiFunction - /// - /// - /// - public partial class ToIntBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToIntBiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToIntBiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToIntBiFunctionDirect : ToIntBiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToIntBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToIntBiFunction - /// - /// - /// - /// - /// - public partial class ToIntBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToIntBiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToIntBiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToIntBiFunctionDirect : ToIntBiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToIntBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToIntFunction - /// - /// - /// - public partial class ToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToIntFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToIntFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToIntFunctionDirect : ToIntFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToIntFunction - /// - /// - /// - /// - public partial class ToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToIntFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToIntFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToIntFunctionDirect : ToIntFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToIntFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToLongBiFunction - /// - /// - /// - public partial class ToLongBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToLongBiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToLongBiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToLongBiFunctionDirect : ToLongBiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToLongBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToLongBiFunction - /// - /// - /// - /// - /// - public partial class ToLongBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToLongBiFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToLongBiFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToLongBiFunctionDirect : ToLongBiFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToLongBiFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToLongFunction - /// - /// - /// - public partial class ToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToLongFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToLongFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToLongFunctionDirect : ToLongFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ToLongFunction - /// - /// - /// - /// - public partial class ToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToLongFunction() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ToLongFunctionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ToLongFunctionDirect : ToLongFunction - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.ToLongFunction"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region UnaryOperator - /// - /// - /// - public partial class UnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.UnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region UnaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class UnaryOperatorDirect : UnaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.UnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region UnaryOperator - /// - /// - /// - /// - public partial class UnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnaryOperator() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.UnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region UnaryOperatorDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class UnaryOperatorDirect : UnaryOperator - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.function.UnaryOperator"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Function/BiConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/BiConsumer.cs index 27ed5b1341..e8cb59b882 100644 --- a/src/net/JNet/Generated/Java/Util/Function/BiConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/BiConsumer.cs @@ -25,7 +25,143 @@ namespace Java.Util.Function { - #region BiConsumer + #region BiConsumer declaration + /// + /// + /// + public partial class BiConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BiConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BiConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BiConsumerDirect : BiConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BiConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BiConsumer declaration + /// + /// + /// + /// + /// + public partial class BiConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BiConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BiConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BiConsumerDirect : BiConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BiConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BiConsumer implementation public partial class BiConsumer { #region Constructors @@ -121,7 +257,7 @@ public virtual Java.Util.Function.BiConsumer AndThen(Java.Util.Function.BiConsum } #endregion - #region BiConsumerDirect + #region BiConsumerDirect implementation public partial class BiConsumerDirect { #region Constructors @@ -202,7 +338,7 @@ public partial interface IBiConsumer } #endregion - #region BiConsumer + #region BiConsumer implementation public partial class BiConsumer : Java.Util.Function.IBiConsumer { #region Constructors @@ -302,7 +438,7 @@ public virtual Java.Util.Function.BiConsumer AndThen + #region BiConsumerDirect implementation public partial class BiConsumerDirect : Java.Util.Function.IBiConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/BiFunction.cs b/src/net/JNet/Generated/Java/Util/Function/BiFunction.cs index e64d0b12d1..de15599ea6 100644 --- a/src/net/JNet/Generated/Java/Util/Function/BiFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/BiFunction.cs @@ -25,7 +25,144 @@ namespace Java.Util.Function { - #region BiFunction + #region BiFunction declaration + /// + /// + /// + public partial class BiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BiFunctionDirect : BiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BiFunction declaration + /// + /// + /// + /// + /// + /// + public partial class BiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BiFunctionDirect : BiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BiFunction implementation public partial class BiFunction { #region Constructors @@ -123,7 +260,7 @@ public virtual Java.Util.Function.BiFunction AndThen(Java.Util.Function.Function } #endregion - #region BiFunctionDirect + #region BiFunctionDirect implementation public partial class BiFunctionDirect { #region Constructors @@ -207,7 +344,7 @@ public partial interface IBiFunction } #endregion - #region BiFunction + #region BiFunction implementation public partial class BiFunction : Java.Util.Function.IBiFunction { #region Constructors @@ -311,7 +448,7 @@ public virtual Java.Util.Function.BiFunction AndThen + #region BiFunctionDirect implementation public partial class BiFunctionDirect : Java.Util.Function.IBiFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/BiPredicate.cs b/src/net/JNet/Generated/Java/Util/Function/BiPredicate.cs index 05b9c8889e..a9dc0400a4 100644 --- a/src/net/JNet/Generated/Java/Util/Function/BiPredicate.cs +++ b/src/net/JNet/Generated/Java/Util/Function/BiPredicate.cs @@ -25,7 +25,143 @@ namespace Java.Util.Function { - #region BiPredicate + #region BiPredicate declaration + /// + /// + /// + public partial class BiPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BiPredicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BiPredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BiPredicateDirect : BiPredicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BiPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BiPredicate declaration + /// + /// + /// + /// + /// + public partial class BiPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BiPredicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BiPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BiPredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BiPredicateDirect : BiPredicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BiPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BiPredicate implementation public partial class BiPredicate { #region Constructors @@ -191,7 +327,7 @@ public virtual Java.Util.Function.BiPredicate Or(Java.Util.Function.BiPredicate } #endregion - #region BiPredicateDirect + #region BiPredicateDirect implementation public partial class BiPredicateDirect { #region Constructors @@ -304,7 +440,7 @@ public partial interface IBiPredicate } #endregion - #region BiPredicate + #region BiPredicate implementation public partial class BiPredicate : Java.Util.Function.IBiPredicate { #region Constructors @@ -478,7 +614,7 @@ public virtual Java.Util.Function.BiPredicate Or + #region BiPredicateDirect implementation public partial class BiPredicateDirect : Java.Util.Function.IBiPredicate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/BinaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/BinaryOperator.cs index aab9fbd536..e415bed8a8 100644 --- a/src/net/JNet/Generated/Java/Util/Function/BinaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/BinaryOperator.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region BinaryOperator + #region BinaryOperator declaration + /// + /// + /// + public partial class BinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BinaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BinaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BinaryOperatorDirect : BinaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BinaryOperator declaration + /// + /// + /// + /// + public partial class BinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BinaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BinaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BinaryOperatorDirect : BinaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region BinaryOperator implementation public partial class BinaryOperator { #region Constructors @@ -143,7 +278,7 @@ public virtual Java.Util.Function.BiFunction AndThen(Java.Util.Function.Function } #endregion - #region BinaryOperatorDirect + #region BinaryOperatorDirect implementation public partial class BinaryOperatorDirect { #region Constructors @@ -231,7 +366,7 @@ public partial interface IBinaryOperator } #endregion - #region BinaryOperator + #region BinaryOperator implementation public partial class BinaryOperator : Java.Util.Function.IBinaryOperator { #region Constructors @@ -363,7 +498,7 @@ public virtual Java.Util.Function.BiFunction AndThen + #region BinaryOperatorDirect implementation public partial class BinaryOperatorDirect : Java.Util.Function.IBinaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/BooleanSupplier.cs b/src/net/JNet/Generated/Java/Util/Function/BooleanSupplier.cs index 1f245acb22..c58fd49de6 100644 --- a/src/net/JNet/Generated/Java/Util/Function/BooleanSupplier.cs +++ b/src/net/JNet/Generated/Java/Util/Function/BooleanSupplier.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region BooleanSupplier declaration + /// + /// + /// + public partial class BooleanSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BooleanSupplier() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.BooleanSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region BooleanSupplierDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class BooleanSupplierDirect : BooleanSupplier + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.BooleanSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IBooleanSupplier /// /// .NET interface for org.mases.jnet.generated.java.util.function.BooleanSupplier implementing @@ -48,7 +115,7 @@ public partial interface IBooleanSupplier } #endregion - #region BooleanSupplier + #region BooleanSupplier implementation public partial class BooleanSupplier : Java.Util.Function.IBooleanSupplier { #region Constructors @@ -109,7 +176,7 @@ public virtual bool GetAsBoolean() } #endregion - #region BooleanSupplierDirect + #region BooleanSupplierDirect implementation public partial class BooleanSupplierDirect : Java.Util.Function.IBooleanSupplier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/Consumer.cs b/src/net/JNet/Generated/Java/Util/Function/Consumer.cs index 2d543cf74a..a1022a1d71 100644 --- a/src/net/JNet/Generated/Java/Util/Function/Consumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/Consumer.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region Consumer + #region Consumer declaration + /// + /// + /// + public partial class Consumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Consumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Consumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ConsumerDirect : Consumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Consumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Consumer declaration + /// + /// + /// + /// + public partial class Consumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Consumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Consumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ConsumerDirect : Consumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Consumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Consumer implementation public partial class Consumer { #region Constructors @@ -120,7 +255,7 @@ public virtual Java.Util.Function.Consumer AndThen(Java.Util.Function.Consumer a } #endregion - #region ConsumerDirect + #region ConsumerDirect implementation public partial class ConsumerDirect { #region Constructors @@ -198,7 +333,7 @@ public partial interface IConsumer } #endregion - #region Consumer + #region Consumer implementation public partial class Consumer : Java.Util.Function.IConsumer { #region Constructors @@ -295,7 +430,7 @@ public virtual Java.Util.Function.Consumer AndThen(Java.Uti } #endregion - #region ConsumerDirect + #region ConsumerDirect implementation public partial class ConsumerDirect : Java.Util.Function.IConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleBinaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleBinaryOperator.cs index b68a1ea780..83191fa531 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleBinaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleBinaryOperator.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoubleBinaryOperator declaration + /// + /// + /// + public partial class DoubleBinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleBinaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleBinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleBinaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleBinaryOperatorDirect : DoubleBinaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleBinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoubleBinaryOperator /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoubleBinaryOperator implementing @@ -50,7 +117,7 @@ public partial interface IDoubleBinaryOperator } #endregion - #region DoubleBinaryOperator + #region DoubleBinaryOperator implementation public partial class DoubleBinaryOperator : Java.Util.Function.IDoubleBinaryOperator { #region Constructors @@ -113,7 +180,7 @@ public virtual double ApplyAsDouble(double arg0, double arg1) } #endregion - #region DoubleBinaryOperatorDirect + #region DoubleBinaryOperatorDirect implementation public partial class DoubleBinaryOperatorDirect : Java.Util.Function.IDoubleBinaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleConsumer.cs index 10c66b426e..f6f24d35cf 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleConsumer.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoubleConsumer declaration + /// + /// + /// + public partial class DoubleConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleConsumerDirect : DoubleConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoubleConsumer /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoubleConsumer implementing @@ -54,7 +121,7 @@ public partial interface IDoubleConsumer } #endregion - #region DoubleConsumer + #region DoubleConsumer implementation public partial class DoubleConsumer : Java.Util.Function.IDoubleConsumer { #region Constructors @@ -149,7 +216,7 @@ public virtual Java.Util.Function.DoubleConsumer AndThen(Java.Util.Function.Doub } #endregion - #region DoubleConsumerDirect + #region DoubleConsumerDirect implementation public partial class DoubleConsumerDirect : Java.Util.Function.IDoubleConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleFunction.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleFunction.cs index 0732ecaf4e..1d6d9e3c0b 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleFunction.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region DoubleFunction + #region DoubleFunction declaration + /// + /// + /// + public partial class DoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleFunctionDirect : DoubleFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region DoubleFunction declaration + /// + /// + /// + /// + public partial class DoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleFunctionDirect : DoubleFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region DoubleFunction implementation public partial class DoubleFunction { #region Constructors @@ -87,7 +222,7 @@ public virtual object Apply(double arg0) } #endregion - #region DoubleFunctionDirect + #region DoubleFunctionDirect implementation public partial class DoubleFunctionDirect { #region Constructors @@ -151,7 +286,7 @@ public partial interface IDoubleFunction } #endregion - #region DoubleFunction + #region DoubleFunction implementation public partial class DoubleFunction : Java.Util.Function.IDoubleFunction { #region Constructors @@ -213,7 +348,7 @@ public virtual R Apply(double arg0) } #endregion - #region DoubleFunctionDirect + #region DoubleFunctionDirect implementation public partial class DoubleFunctionDirect : Java.Util.Function.IDoubleFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoublePredicate.cs b/src/net/JNet/Generated/Java/Util/Function/DoublePredicate.cs index d46e7369d2..503c5a1733 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoublePredicate.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoublePredicate.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoublePredicate declaration + /// + /// + /// + public partial class DoublePredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoublePredicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoublePredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoublePredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoublePredicateDirect : DoublePredicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoublePredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoublePredicate /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoublePredicate implementing @@ -66,7 +133,7 @@ public partial interface IDoublePredicate } #endregion - #region DoublePredicate + #region DoublePredicate implementation public partial class DoublePredicate : Java.Util.Function.IDoublePredicate { #region Constructors @@ -231,7 +298,7 @@ public virtual Java.Util.Function.DoublePredicate Or(Java.Util.Function.DoublePr } #endregion - #region DoublePredicateDirect + #region DoublePredicateDirect implementation public partial class DoublePredicateDirect : Java.Util.Function.IDoublePredicate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleSupplier.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleSupplier.cs index 90c5128827..da67ddd369 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleSupplier.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleSupplier.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoubleSupplier declaration + /// + /// + /// + public partial class DoubleSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleSupplier() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleSupplierDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleSupplierDirect : DoubleSupplier + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoubleSupplier /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoubleSupplier implementing @@ -48,7 +115,7 @@ public partial interface IDoubleSupplier } #endregion - #region DoubleSupplier + #region DoubleSupplier implementation public partial class DoubleSupplier : Java.Util.Function.IDoubleSupplier { #region Constructors @@ -109,7 +176,7 @@ public virtual double GetAsDouble() } #endregion - #region DoubleSupplierDirect + #region DoubleSupplierDirect implementation public partial class DoubleSupplierDirect : Java.Util.Function.IDoubleSupplier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleToIntFunction.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleToIntFunction.cs index c530996a84..50532df7cf 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleToIntFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleToIntFunction.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoubleToIntFunction declaration + /// + /// + /// + public partial class DoubleToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleToIntFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleToIntFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleToIntFunctionDirect : DoubleToIntFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoubleToIntFunction /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoubleToIntFunction implementing @@ -49,7 +116,7 @@ public partial interface IDoubleToIntFunction } #endregion - #region DoubleToIntFunction + #region DoubleToIntFunction implementation public partial class DoubleToIntFunction : Java.Util.Function.IDoubleToIntFunction { #region Constructors @@ -111,7 +178,7 @@ public virtual int ApplyAsInt(double arg0) } #endregion - #region DoubleToIntFunctionDirect + #region DoubleToIntFunctionDirect implementation public partial class DoubleToIntFunctionDirect : Java.Util.Function.IDoubleToIntFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleToLongFunction.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleToLongFunction.cs index e019f83001..01172d5685 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleToLongFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleToLongFunction.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoubleToLongFunction declaration + /// + /// + /// + public partial class DoubleToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleToLongFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleToLongFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleToLongFunctionDirect : DoubleToLongFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoubleToLongFunction /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoubleToLongFunction implementing @@ -49,7 +116,7 @@ public partial interface IDoubleToLongFunction } #endregion - #region DoubleToLongFunction + #region DoubleToLongFunction implementation public partial class DoubleToLongFunction : Java.Util.Function.IDoubleToLongFunction { #region Constructors @@ -111,7 +178,7 @@ public virtual long ApplyAsLong(double arg0) } #endregion - #region DoubleToLongFunctionDirect + #region DoubleToLongFunctionDirect implementation public partial class DoubleToLongFunctionDirect : Java.Util.Function.IDoubleToLongFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/DoubleUnaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/DoubleUnaryOperator.cs index 9df7f15c66..7cc64b591f 100644 --- a/src/net/JNet/Generated/Java/Util/Function/DoubleUnaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/DoubleUnaryOperator.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region DoubleUnaryOperator declaration + /// + /// + /// + public partial class DoubleUnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DoubleUnaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.DoubleUnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DoubleUnaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DoubleUnaryOperatorDirect : DoubleUnaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.DoubleUnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDoubleUnaryOperator /// /// .NET interface for org.mases.jnet.generated.java.util.function.DoubleUnaryOperator implementing @@ -61,7 +128,7 @@ public partial interface IDoubleUnaryOperator } #endregion - #region DoubleUnaryOperator + #region DoubleUnaryOperator implementation public partial class DoubleUnaryOperator : Java.Util.Function.IDoubleUnaryOperator { #region Constructors @@ -202,7 +269,7 @@ public virtual Java.Util.Function.DoubleUnaryOperator Compose(Java.Util.Function } #endregion - #region DoubleUnaryOperatorDirect + #region DoubleUnaryOperatorDirect implementation public partial class DoubleUnaryOperatorDirect : Java.Util.Function.IDoubleUnaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/Function.cs b/src/net/JNet/Generated/Java/Util/Function/Function.cs index f945182b8e..984c0a599b 100644 --- a/src/net/JNet/Generated/Java/Util/Function/Function.cs +++ b/src/net/JNet/Generated/Java/Util/Function/Function.cs @@ -25,7 +25,143 @@ namespace Java.Util.Function { - #region Function + #region Function declaration + /// + /// + /// + public partial class Function : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Function() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Function"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region FunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class FunctionDirect : Function + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Function"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Function declaration + /// + /// + /// + /// + /// + public partial class Function : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Function() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Function"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region FunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class FunctionDirect : Function + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Function"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Function implementation public partial class Function { #region Constructors @@ -166,7 +302,7 @@ public virtual Java.Util.Function.Function Compose(Java.Util.Function.Function a } #endregion - #region FunctionDirect + #region FunctionDirect implementation public partial class FunctionDirect { #region Constructors @@ -266,7 +402,7 @@ public partial interface IFunction } #endregion - #region Function + #region Function implementation public partial class Function : Java.Util.Function.IFunction { #region Constructors @@ -419,7 +555,7 @@ public virtual Java.Util.Function.Function Compose + #region FunctionDirect implementation public partial class FunctionDirect : Java.Util.Function.IFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntBinaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/IntBinaryOperator.cs index 46b46744ba..53ad845e63 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntBinaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntBinaryOperator.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntBinaryOperator declaration + /// + /// + /// + public partial class IntBinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntBinaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntBinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntBinaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntBinaryOperatorDirect : IntBinaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntBinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntBinaryOperator /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntBinaryOperator implementing @@ -50,7 +117,7 @@ public partial interface IIntBinaryOperator } #endregion - #region IntBinaryOperator + #region IntBinaryOperator implementation public partial class IntBinaryOperator : Java.Util.Function.IIntBinaryOperator { #region Constructors @@ -113,7 +180,7 @@ public virtual int ApplyAsInt(int arg0, int arg1) } #endregion - #region IntBinaryOperatorDirect + #region IntBinaryOperatorDirect implementation public partial class IntBinaryOperatorDirect : Java.Util.Function.IIntBinaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/IntConsumer.cs index f62723e5e8..be6b462354 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntConsumer.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntConsumer declaration + /// + /// + /// + public partial class IntConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntConsumerDirect : IntConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntConsumer /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntConsumer implementing @@ -54,7 +121,7 @@ public partial interface IIntConsumer } #endregion - #region IntConsumer + #region IntConsumer implementation public partial class IntConsumer : Java.Util.Function.IIntConsumer { #region Constructors @@ -149,7 +216,7 @@ public virtual Java.Util.Function.IntConsumer AndThen(Java.Util.Function.IntCons } #endregion - #region IntConsumerDirect + #region IntConsumerDirect implementation public partial class IntConsumerDirect : Java.Util.Function.IIntConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntFunction.cs b/src/net/JNet/Generated/Java/Util/Function/IntFunction.cs index 58d1c5fa21..381a161ac1 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntFunction.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region IntFunction + #region IntFunction declaration + /// + /// + /// + public partial class IntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntFunctionDirect : IntFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region IntFunction declaration + /// + /// + /// + /// + public partial class IntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntFunctionDirect : IntFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region IntFunction implementation public partial class IntFunction { #region Constructors @@ -87,7 +222,7 @@ public virtual object Apply(int arg0) } #endregion - #region IntFunctionDirect + #region IntFunctionDirect implementation public partial class IntFunctionDirect { #region Constructors @@ -151,7 +286,7 @@ public partial interface IIntFunction } #endregion - #region IntFunction + #region IntFunction implementation public partial class IntFunction : Java.Util.Function.IIntFunction { #region Constructors @@ -213,7 +348,7 @@ public virtual R Apply(int arg0) } #endregion - #region IntFunctionDirect + #region IntFunctionDirect implementation public partial class IntFunctionDirect : Java.Util.Function.IIntFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntPredicate.cs b/src/net/JNet/Generated/Java/Util/Function/IntPredicate.cs index 5da2aca4a4..5508c9dbbc 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntPredicate.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntPredicate.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntPredicate declaration + /// + /// + /// + public partial class IntPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntPredicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntPredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntPredicateDirect : IntPredicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntPredicate /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntPredicate implementing @@ -66,7 +133,7 @@ public partial interface IIntPredicate } #endregion - #region IntPredicate + #region IntPredicate implementation public partial class IntPredicate : Java.Util.Function.IIntPredicate { #region Constructors @@ -231,7 +298,7 @@ public virtual Java.Util.Function.IntPredicate Or(Java.Util.Function.IntPredicat } #endregion - #region IntPredicateDirect + #region IntPredicateDirect implementation public partial class IntPredicateDirect : Java.Util.Function.IIntPredicate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntSupplier.cs b/src/net/JNet/Generated/Java/Util/Function/IntSupplier.cs index ae56a97a7c..9e59372ede 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntSupplier.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntSupplier.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntSupplier declaration + /// + /// + /// + public partial class IntSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntSupplier() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntSupplierDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntSupplierDirect : IntSupplier + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntSupplier /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntSupplier implementing @@ -48,7 +115,7 @@ public partial interface IIntSupplier } #endregion - #region IntSupplier + #region IntSupplier implementation public partial class IntSupplier : Java.Util.Function.IIntSupplier { #region Constructors @@ -109,7 +176,7 @@ public virtual int GetAsInt() } #endregion - #region IntSupplierDirect + #region IntSupplierDirect implementation public partial class IntSupplierDirect : Java.Util.Function.IIntSupplier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntToDoubleFunction.cs b/src/net/JNet/Generated/Java/Util/Function/IntToDoubleFunction.cs index 36652ba529..5df0337c6f 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntToDoubleFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntToDoubleFunction.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntToDoubleFunction declaration + /// + /// + /// + public partial class IntToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntToDoubleFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntToDoubleFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntToDoubleFunctionDirect : IntToDoubleFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntToDoubleFunction /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntToDoubleFunction implementing @@ -49,7 +116,7 @@ public partial interface IIntToDoubleFunction } #endregion - #region IntToDoubleFunction + #region IntToDoubleFunction implementation public partial class IntToDoubleFunction : Java.Util.Function.IIntToDoubleFunction { #region Constructors @@ -111,7 +178,7 @@ public virtual double ApplyAsDouble(int arg0) } #endregion - #region IntToDoubleFunctionDirect + #region IntToDoubleFunctionDirect implementation public partial class IntToDoubleFunctionDirect : Java.Util.Function.IIntToDoubleFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntToLongFunction.cs b/src/net/JNet/Generated/Java/Util/Function/IntToLongFunction.cs index aa0bb1fa17..a3b2a9ae4e 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntToLongFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntToLongFunction.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntToLongFunction declaration + /// + /// + /// + public partial class IntToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntToLongFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntToLongFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntToLongFunctionDirect : IntToLongFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntToLongFunction /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntToLongFunction implementing @@ -49,7 +116,7 @@ public partial interface IIntToLongFunction } #endregion - #region IntToLongFunction + #region IntToLongFunction implementation public partial class IntToLongFunction : Java.Util.Function.IIntToLongFunction { #region Constructors @@ -111,7 +178,7 @@ public virtual long ApplyAsLong(int arg0) } #endregion - #region IntToLongFunctionDirect + #region IntToLongFunctionDirect implementation public partial class IntToLongFunctionDirect : Java.Util.Function.IIntToLongFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/IntUnaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/IntUnaryOperator.cs index 9999e77e0e..ec9cef38e8 100644 --- a/src/net/JNet/Generated/Java/Util/Function/IntUnaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/IntUnaryOperator.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region IntUnaryOperator declaration + /// + /// + /// + public partial class IntUnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntUnaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.IntUnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IntUnaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IntUnaryOperatorDirect : IntUnaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.IntUnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIntUnaryOperator /// /// .NET interface for org.mases.jnet.generated.java.util.function.IntUnaryOperator implementing @@ -61,7 +128,7 @@ public partial interface IIntUnaryOperator } #endregion - #region IntUnaryOperator + #region IntUnaryOperator implementation public partial class IntUnaryOperator : Java.Util.Function.IIntUnaryOperator { #region Constructors @@ -202,7 +269,7 @@ public virtual Java.Util.Function.IntUnaryOperator Compose(Java.Util.Function.In } #endregion - #region IntUnaryOperatorDirect + #region IntUnaryOperatorDirect implementation public partial class IntUnaryOperatorDirect : Java.Util.Function.IIntUnaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongBinaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/LongBinaryOperator.cs index 09de719bf2..5d39fa3e2e 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongBinaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongBinaryOperator.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongBinaryOperator declaration + /// + /// + /// + public partial class LongBinaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongBinaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongBinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongBinaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongBinaryOperatorDirect : LongBinaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongBinaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongBinaryOperator /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongBinaryOperator implementing @@ -50,7 +117,7 @@ public partial interface ILongBinaryOperator } #endregion - #region LongBinaryOperator + #region LongBinaryOperator implementation public partial class LongBinaryOperator : Java.Util.Function.ILongBinaryOperator { #region Constructors @@ -113,7 +180,7 @@ public virtual long ApplyAsLong(long arg0, long arg1) } #endregion - #region LongBinaryOperatorDirect + #region LongBinaryOperatorDirect implementation public partial class LongBinaryOperatorDirect : Java.Util.Function.ILongBinaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/LongConsumer.cs index a6cf9e9131..4d5ac70fa6 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongConsumer.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongConsumer declaration + /// + /// + /// + public partial class LongConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongConsumerDirect : LongConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongConsumer /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongConsumer implementing @@ -54,7 +121,7 @@ public partial interface ILongConsumer } #endregion - #region LongConsumer + #region LongConsumer implementation public partial class LongConsumer : Java.Util.Function.ILongConsumer { #region Constructors @@ -149,7 +216,7 @@ public virtual Java.Util.Function.LongConsumer AndThen(Java.Util.Function.LongCo } #endregion - #region LongConsumerDirect + #region LongConsumerDirect implementation public partial class LongConsumerDirect : Java.Util.Function.ILongConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongFunction.cs b/src/net/JNet/Generated/Java/Util/Function/LongFunction.cs index 716134bd2d..e0c42ac12f 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongFunction.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region LongFunction + #region LongFunction declaration + /// + /// + /// + public partial class LongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongFunctionDirect : LongFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region LongFunction declaration + /// + /// + /// + /// + public partial class LongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongFunctionDirect : LongFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region LongFunction implementation public partial class LongFunction { #region Constructors @@ -87,7 +222,7 @@ public virtual object Apply(long arg0) } #endregion - #region LongFunctionDirect + #region LongFunctionDirect implementation public partial class LongFunctionDirect { #region Constructors @@ -151,7 +286,7 @@ public partial interface ILongFunction } #endregion - #region LongFunction + #region LongFunction implementation public partial class LongFunction : Java.Util.Function.ILongFunction { #region Constructors @@ -213,7 +348,7 @@ public virtual R Apply(long arg0) } #endregion - #region LongFunctionDirect + #region LongFunctionDirect implementation public partial class LongFunctionDirect : Java.Util.Function.ILongFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongPredicate.cs b/src/net/JNet/Generated/Java/Util/Function/LongPredicate.cs index c29483b73a..9fc5b3ba72 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongPredicate.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongPredicate.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongPredicate declaration + /// + /// + /// + public partial class LongPredicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongPredicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongPredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongPredicateDirect : LongPredicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongPredicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongPredicate /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongPredicate implementing @@ -66,7 +133,7 @@ public partial interface ILongPredicate } #endregion - #region LongPredicate + #region LongPredicate implementation public partial class LongPredicate : Java.Util.Function.ILongPredicate { #region Constructors @@ -231,7 +298,7 @@ public virtual Java.Util.Function.LongPredicate Or(Java.Util.Function.LongPredic } #endregion - #region LongPredicateDirect + #region LongPredicateDirect implementation public partial class LongPredicateDirect : Java.Util.Function.ILongPredicate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongSupplier.cs b/src/net/JNet/Generated/Java/Util/Function/LongSupplier.cs index 840c2d105a..11cbfcdca3 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongSupplier.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongSupplier.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongSupplier declaration + /// + /// + /// + public partial class LongSupplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongSupplier() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongSupplierDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongSupplierDirect : LongSupplier + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongSupplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongSupplier /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongSupplier implementing @@ -48,7 +115,7 @@ public partial interface ILongSupplier } #endregion - #region LongSupplier + #region LongSupplier implementation public partial class LongSupplier : Java.Util.Function.ILongSupplier { #region Constructors @@ -109,7 +176,7 @@ public virtual long GetAsLong() } #endregion - #region LongSupplierDirect + #region LongSupplierDirect implementation public partial class LongSupplierDirect : Java.Util.Function.ILongSupplier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongToDoubleFunction.cs b/src/net/JNet/Generated/Java/Util/Function/LongToDoubleFunction.cs index ed6aa0abba..81fa793737 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongToDoubleFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongToDoubleFunction.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongToDoubleFunction declaration + /// + /// + /// + public partial class LongToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongToDoubleFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongToDoubleFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongToDoubleFunctionDirect : LongToDoubleFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongToDoubleFunction /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongToDoubleFunction implementing @@ -49,7 +116,7 @@ public partial interface ILongToDoubleFunction } #endregion - #region LongToDoubleFunction + #region LongToDoubleFunction implementation public partial class LongToDoubleFunction : Java.Util.Function.ILongToDoubleFunction { #region Constructors @@ -111,7 +178,7 @@ public virtual double ApplyAsDouble(long arg0) } #endregion - #region LongToDoubleFunctionDirect + #region LongToDoubleFunctionDirect implementation public partial class LongToDoubleFunctionDirect : Java.Util.Function.ILongToDoubleFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongToIntFunction.cs b/src/net/JNet/Generated/Java/Util/Function/LongToIntFunction.cs index 7318c21f47..401a8cb383 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongToIntFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongToIntFunction.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongToIntFunction declaration + /// + /// + /// + public partial class LongToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongToIntFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongToIntFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongToIntFunctionDirect : LongToIntFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongToIntFunction /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongToIntFunction implementing @@ -49,7 +116,7 @@ public partial interface ILongToIntFunction } #endregion - #region LongToIntFunction + #region LongToIntFunction implementation public partial class LongToIntFunction : Java.Util.Function.ILongToIntFunction { #region Constructors @@ -111,7 +178,7 @@ public virtual int ApplyAsInt(long arg0) } #endregion - #region LongToIntFunctionDirect + #region LongToIntFunctionDirect implementation public partial class LongToIntFunctionDirect : Java.Util.Function.ILongToIntFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/LongUnaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/LongUnaryOperator.cs index 707aaff2dd..ef842e151d 100644 --- a/src/net/JNet/Generated/Java/Util/Function/LongUnaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/LongUnaryOperator.cs @@ -25,6 +25,73 @@ namespace Java.Util.Function { + #region LongUnaryOperator declaration + /// + /// + /// + public partial class LongUnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongUnaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.LongUnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LongUnaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LongUnaryOperatorDirect : LongUnaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.LongUnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILongUnaryOperator /// /// .NET interface for org.mases.jnet.generated.java.util.function.LongUnaryOperator implementing @@ -61,7 +128,7 @@ public partial interface ILongUnaryOperator } #endregion - #region LongUnaryOperator + #region LongUnaryOperator implementation public partial class LongUnaryOperator : Java.Util.Function.ILongUnaryOperator { #region Constructors @@ -202,7 +269,7 @@ public virtual Java.Util.Function.LongUnaryOperator Compose(Java.Util.Function.L } #endregion - #region LongUnaryOperatorDirect + #region LongUnaryOperatorDirect implementation public partial class LongUnaryOperatorDirect : Java.Util.Function.ILongUnaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ObjDoubleConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/ObjDoubleConsumer.cs index a99f99c3b7..a518747f46 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ObjDoubleConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ObjDoubleConsumer.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region ObjDoubleConsumer + #region ObjDoubleConsumer declaration + /// + /// + /// + public partial class ObjDoubleConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjDoubleConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjDoubleConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjDoubleConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjDoubleConsumerDirect : ObjDoubleConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ObjDoubleConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ObjDoubleConsumer declaration + /// + /// + /// + /// + public partial class ObjDoubleConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjDoubleConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjDoubleConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjDoubleConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjDoubleConsumerDirect : ObjDoubleConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ObjDoubleConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ObjDoubleConsumer implementation public partial class ObjDoubleConsumer { #region Constructors @@ -86,7 +221,7 @@ public virtual void Accept(object arg0, double arg1) } #endregion - #region ObjDoubleConsumerDirect + #region ObjDoubleConsumerDirect implementation public partial class ObjDoubleConsumerDirect { #region Constructors @@ -150,7 +285,7 @@ public partial interface IObjDoubleConsumer } #endregion - #region ObjDoubleConsumer + #region ObjDoubleConsumer implementation public partial class ObjDoubleConsumer : Java.Util.Function.IObjDoubleConsumer { #region Constructors @@ -211,7 +346,7 @@ public virtual void Accept(T arg0, double arg1) } #endregion - #region ObjDoubleConsumerDirect + #region ObjDoubleConsumerDirect implementation public partial class ObjDoubleConsumerDirect : Java.Util.Function.IObjDoubleConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ObjIntConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/ObjIntConsumer.cs index cce32af515..185575f0c6 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ObjIntConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ObjIntConsumer.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region ObjIntConsumer + #region ObjIntConsumer declaration + /// + /// + /// + public partial class ObjIntConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjIntConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjIntConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjIntConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjIntConsumerDirect : ObjIntConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ObjIntConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ObjIntConsumer declaration + /// + /// + /// + /// + public partial class ObjIntConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjIntConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjIntConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjIntConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjIntConsumerDirect : ObjIntConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ObjIntConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ObjIntConsumer implementation public partial class ObjIntConsumer { #region Constructors @@ -86,7 +221,7 @@ public virtual void Accept(object arg0, int arg1) } #endregion - #region ObjIntConsumerDirect + #region ObjIntConsumerDirect implementation public partial class ObjIntConsumerDirect { #region Constructors @@ -150,7 +285,7 @@ public partial interface IObjIntConsumer } #endregion - #region ObjIntConsumer + #region ObjIntConsumer implementation public partial class ObjIntConsumer : Java.Util.Function.IObjIntConsumer { #region Constructors @@ -211,7 +346,7 @@ public virtual void Accept(T arg0, int arg1) } #endregion - #region ObjIntConsumerDirect + #region ObjIntConsumerDirect implementation public partial class ObjIntConsumerDirect : Java.Util.Function.IObjIntConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ObjLongConsumer.cs b/src/net/JNet/Generated/Java/Util/Function/ObjLongConsumer.cs index 31ed491330..095619dc3d 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ObjLongConsumer.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ObjLongConsumer.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region ObjLongConsumer + #region ObjLongConsumer declaration + /// + /// + /// + public partial class ObjLongConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjLongConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjLongConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjLongConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjLongConsumerDirect : ObjLongConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ObjLongConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ObjLongConsumer declaration + /// + /// + /// + /// + public partial class ObjLongConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjLongConsumer() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ObjLongConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjLongConsumerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjLongConsumerDirect : ObjLongConsumer + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ObjLongConsumer"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ObjLongConsumer implementation public partial class ObjLongConsumer { #region Constructors @@ -86,7 +221,7 @@ public virtual void Accept(object arg0, long arg1) } #endregion - #region ObjLongConsumerDirect + #region ObjLongConsumerDirect implementation public partial class ObjLongConsumerDirect { #region Constructors @@ -150,7 +285,7 @@ public partial interface IObjLongConsumer } #endregion - #region ObjLongConsumer + #region ObjLongConsumer implementation public partial class ObjLongConsumer : Java.Util.Function.IObjLongConsumer { #region Constructors @@ -211,7 +346,7 @@ public virtual void Accept(T arg0, long arg1) } #endregion - #region ObjLongConsumerDirect + #region ObjLongConsumerDirect implementation public partial class ObjLongConsumerDirect : Java.Util.Function.IObjLongConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/Predicate.cs b/src/net/JNet/Generated/Java/Util/Function/Predicate.cs index 952c2569a8..d263f60fa6 100644 --- a/src/net/JNet/Generated/Java/Util/Function/Predicate.cs +++ b/src/net/JNet/Generated/Java/Util/Function/Predicate.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region Predicate + #region Predicate declaration + /// + /// + /// + public partial class Predicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Predicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Predicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PredicateDirect : Predicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Predicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Predicate declaration + /// + /// + /// + /// + public partial class Predicate : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Predicate() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Predicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PredicateDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PredicateDirect : Predicate + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Predicate"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Predicate implementation public partial class Predicate { #region Constructors @@ -210,7 +345,7 @@ public virtual Java.Util.Function.Predicate Or(Java.Util.Function.Predicate arg0 } #endregion - #region PredicateDirect + #region PredicateDirect implementation public partial class PredicateDirect { #region Constructors @@ -319,7 +454,7 @@ public partial interface IPredicate } #endregion - #region Predicate + #region Predicate implementation public partial class Predicate : Java.Util.Function.IPredicate { #region Constructors @@ -509,7 +644,7 @@ public virtual Java.Util.Function.Predicate Or(Java.Util.Fu } #endregion - #region PredicateDirect + #region PredicateDirect implementation public partial class PredicateDirect : Java.Util.Function.IPredicate { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/Supplier.cs b/src/net/JNet/Generated/Java/Util/Function/Supplier.cs index 73910b10dd..7fad88bcae 100644 --- a/src/net/JNet/Generated/Java/Util/Function/Supplier.cs +++ b/src/net/JNet/Generated/Java/Util/Function/Supplier.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region Supplier + #region Supplier declaration + /// + /// + /// + public partial class Supplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Supplier() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Supplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region SupplierDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class SupplierDirect : Supplier + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Supplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Supplier declaration + /// + /// + /// + /// + public partial class Supplier : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Supplier() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.Supplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region SupplierDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class SupplierDirect : Supplier + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.Supplier"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region Supplier implementation public partial class Supplier { #region Constructors @@ -86,7 +221,7 @@ public virtual object Get() } #endregion - #region SupplierDirect + #region SupplierDirect implementation public partial class SupplierDirect { #region Constructors @@ -148,7 +283,7 @@ public partial interface ISupplier } #endregion - #region Supplier + #region Supplier implementation public partial class Supplier : Java.Util.Function.ISupplier { #region Constructors @@ -209,7 +344,7 @@ public virtual T Get() } #endregion - #region SupplierDirect + #region SupplierDirect implementation public partial class SupplierDirect : Java.Util.Function.ISupplier { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ToDoubleBiFunction.cs b/src/net/JNet/Generated/Java/Util/Function/ToDoubleBiFunction.cs index e25c9e62c6..2c819ac79e 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ToDoubleBiFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ToDoubleBiFunction.cs @@ -25,7 +25,143 @@ namespace Java.Util.Function { - #region ToDoubleBiFunction + #region ToDoubleBiFunction declaration + /// + /// + /// + public partial class ToDoubleBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToDoubleBiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToDoubleBiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToDoubleBiFunctionDirect : ToDoubleBiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToDoubleBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToDoubleBiFunction declaration + /// + /// + /// + /// + /// + public partial class ToDoubleBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToDoubleBiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToDoubleBiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToDoubleBiFunctionDirect : ToDoubleBiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToDoubleBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToDoubleBiFunction implementation public partial class ToDoubleBiFunction { #region Constructors @@ -88,7 +224,7 @@ public virtual double ApplyAsDouble(object arg0, object arg1) } #endregion - #region ToDoubleBiFunctionDirect + #region ToDoubleBiFunctionDirect implementation public partial class ToDoubleBiFunctionDirect { #region Constructors @@ -154,7 +290,7 @@ public partial interface IToDoubleBiFunction } #endregion - #region ToDoubleBiFunction + #region ToDoubleBiFunction implementation public partial class ToDoubleBiFunction : Java.Util.Function.IToDoubleBiFunction { #region Constructors @@ -217,7 +353,7 @@ public virtual double ApplyAsDouble(T arg0, U arg1) } #endregion - #region ToDoubleBiFunctionDirect + #region ToDoubleBiFunctionDirect implementation public partial class ToDoubleBiFunctionDirect : Java.Util.Function.IToDoubleBiFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ToDoubleFunction.cs b/src/net/JNet/Generated/Java/Util/Function/ToDoubleFunction.cs index fd469027f9..7b8f471d41 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ToDoubleFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ToDoubleFunction.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region ToDoubleFunction + #region ToDoubleFunction declaration + /// + /// + /// + public partial class ToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToDoubleFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToDoubleFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToDoubleFunctionDirect : ToDoubleFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToDoubleFunction declaration + /// + /// + /// + /// + public partial class ToDoubleFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToDoubleFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToDoubleFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToDoubleFunctionDirect : ToDoubleFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToDoubleFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToDoubleFunction implementation public partial class ToDoubleFunction { #region Constructors @@ -87,7 +222,7 @@ public virtual double ApplyAsDouble(object arg0) } #endregion - #region ToDoubleFunctionDirect + #region ToDoubleFunctionDirect implementation public partial class ToDoubleFunctionDirect { #region Constructors @@ -151,7 +286,7 @@ public partial interface IToDoubleFunction } #endregion - #region ToDoubleFunction + #region ToDoubleFunction implementation public partial class ToDoubleFunction : Java.Util.Function.IToDoubleFunction { #region Constructors @@ -213,7 +348,7 @@ public virtual double ApplyAsDouble(T arg0) } #endregion - #region ToDoubleFunctionDirect + #region ToDoubleFunctionDirect implementation public partial class ToDoubleFunctionDirect : Java.Util.Function.IToDoubleFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ToIntBiFunction.cs b/src/net/JNet/Generated/Java/Util/Function/ToIntBiFunction.cs index 0127449df4..c13b46a296 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ToIntBiFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ToIntBiFunction.cs @@ -25,7 +25,143 @@ namespace Java.Util.Function { - #region ToIntBiFunction + #region ToIntBiFunction declaration + /// + /// + /// + public partial class ToIntBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToIntBiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToIntBiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToIntBiFunctionDirect : ToIntBiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToIntBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToIntBiFunction declaration + /// + /// + /// + /// + /// + public partial class ToIntBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToIntBiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToIntBiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToIntBiFunctionDirect : ToIntBiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToIntBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToIntBiFunction implementation public partial class ToIntBiFunction { #region Constructors @@ -88,7 +224,7 @@ public virtual int ApplyAsInt(object arg0, object arg1) } #endregion - #region ToIntBiFunctionDirect + #region ToIntBiFunctionDirect implementation public partial class ToIntBiFunctionDirect { #region Constructors @@ -154,7 +290,7 @@ public partial interface IToIntBiFunction } #endregion - #region ToIntBiFunction + #region ToIntBiFunction implementation public partial class ToIntBiFunction : Java.Util.Function.IToIntBiFunction { #region Constructors @@ -217,7 +353,7 @@ public virtual int ApplyAsInt(T arg0, U arg1) } #endregion - #region ToIntBiFunctionDirect + #region ToIntBiFunctionDirect implementation public partial class ToIntBiFunctionDirect : Java.Util.Function.IToIntBiFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ToIntFunction.cs b/src/net/JNet/Generated/Java/Util/Function/ToIntFunction.cs index 0429ba74c3..8200563d90 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ToIntFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ToIntFunction.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region ToIntFunction + #region ToIntFunction declaration + /// + /// + /// + public partial class ToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToIntFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToIntFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToIntFunctionDirect : ToIntFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToIntFunction declaration + /// + /// + /// + /// + public partial class ToIntFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToIntFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToIntFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToIntFunctionDirect : ToIntFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToIntFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToIntFunction implementation public partial class ToIntFunction { #region Constructors @@ -87,7 +222,7 @@ public virtual int ApplyAsInt(object arg0) } #endregion - #region ToIntFunctionDirect + #region ToIntFunctionDirect implementation public partial class ToIntFunctionDirect { #region Constructors @@ -151,7 +286,7 @@ public partial interface IToIntFunction } #endregion - #region ToIntFunction + #region ToIntFunction implementation public partial class ToIntFunction : Java.Util.Function.IToIntFunction { #region Constructors @@ -213,7 +348,7 @@ public virtual int ApplyAsInt(T arg0) } #endregion - #region ToIntFunctionDirect + #region ToIntFunctionDirect implementation public partial class ToIntFunctionDirect : Java.Util.Function.IToIntFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ToLongBiFunction.cs b/src/net/JNet/Generated/Java/Util/Function/ToLongBiFunction.cs index 54bcb12f97..eb0932de92 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ToLongBiFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ToLongBiFunction.cs @@ -25,7 +25,143 @@ namespace Java.Util.Function { - #region ToLongBiFunction + #region ToLongBiFunction declaration + /// + /// + /// + public partial class ToLongBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToLongBiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToLongBiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToLongBiFunctionDirect : ToLongBiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToLongBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToLongBiFunction declaration + /// + /// + /// + /// + /// + public partial class ToLongBiFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToLongBiFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToLongBiFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToLongBiFunctionDirect : ToLongBiFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToLongBiFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToLongBiFunction implementation public partial class ToLongBiFunction { #region Constructors @@ -88,7 +224,7 @@ public virtual long ApplyAsLong(object arg0, object arg1) } #endregion - #region ToLongBiFunctionDirect + #region ToLongBiFunctionDirect implementation public partial class ToLongBiFunctionDirect { #region Constructors @@ -154,7 +290,7 @@ public partial interface IToLongBiFunction } #endregion - #region ToLongBiFunction + #region ToLongBiFunction implementation public partial class ToLongBiFunction : Java.Util.Function.IToLongBiFunction { #region Constructors @@ -217,7 +353,7 @@ public virtual long ApplyAsLong(T arg0, U arg1) } #endregion - #region ToLongBiFunctionDirect + #region ToLongBiFunctionDirect implementation public partial class ToLongBiFunctionDirect : Java.Util.Function.IToLongBiFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/ToLongFunction.cs b/src/net/JNet/Generated/Java/Util/Function/ToLongFunction.cs index a6ea54e7ef..4c1773cfb0 100644 --- a/src/net/JNet/Generated/Java/Util/Function/ToLongFunction.cs +++ b/src/net/JNet/Generated/Java/Util/Function/ToLongFunction.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region ToLongFunction + #region ToLongFunction declaration + /// + /// + /// + public partial class ToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToLongFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToLongFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToLongFunctionDirect : ToLongFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToLongFunction declaration + /// + /// + /// + /// + public partial class ToLongFunction : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToLongFunction() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.ToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ToLongFunctionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ToLongFunctionDirect : ToLongFunction + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.ToLongFunction"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ToLongFunction implementation public partial class ToLongFunction { #region Constructors @@ -87,7 +222,7 @@ public virtual long ApplyAsLong(object arg0) } #endregion - #region ToLongFunctionDirect + #region ToLongFunctionDirect implementation public partial class ToLongFunctionDirect { #region Constructors @@ -151,7 +286,7 @@ public partial interface IToLongFunction } #endregion - #region ToLongFunction + #region ToLongFunction implementation public partial class ToLongFunction : Java.Util.Function.IToLongFunction { #region Constructors @@ -213,7 +348,7 @@ public virtual long ApplyAsLong(T arg0) } #endregion - #region ToLongFunctionDirect + #region ToLongFunctionDirect implementation public partial class ToLongFunctionDirect : Java.Util.Function.IToLongFunction { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Function/UnaryOperator.cs b/src/net/JNet/Generated/Java/Util/Function/UnaryOperator.cs index 06c1fefb84..21a3c63b2a 100644 --- a/src/net/JNet/Generated/Java/Util/Function/UnaryOperator.cs +++ b/src/net/JNet/Generated/Java/Util/Function/UnaryOperator.cs @@ -25,7 +25,142 @@ namespace Java.Util.Function { - #region UnaryOperator + #region UnaryOperator declaration + /// + /// + /// + public partial class UnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.UnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region UnaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class UnaryOperatorDirect : UnaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.UnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region UnaryOperator declaration + /// + /// + /// + /// + public partial class UnaryOperator : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnaryOperator() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.function.UnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region UnaryOperatorDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class UnaryOperatorDirect : UnaryOperator + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.function.UnaryOperator"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region UnaryOperator implementation public partial class UnaryOperator { #region Constructors @@ -157,7 +292,7 @@ public virtual Java.Util.Function.Function Compose(Java.Util.Function.Function a } #endregion - #region UnaryOperatorDirect + #region UnaryOperatorDirect implementation public partial class UnaryOperatorDirect { #region Constructors @@ -260,7 +395,7 @@ public partial interface IUnaryOperator } #endregion - #region UnaryOperator + #region UnaryOperator implementation public partial class UnaryOperator : Java.Util.Function.IUnaryOperator { #region Constructors @@ -409,7 +544,7 @@ public virtual Java.Util.Function.Function Compose + #region UnaryOperatorDirect implementation public partial class UnaryOperatorDirect : Java.Util.Function.IUnaryOperator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/GregorianCalendar.cs b/src/net/JNet/Generated/Java/Util/GregorianCalendar.cs index cb0778889e..d368214f51 100644 --- a/src/net/JNet/Generated/Java/Util/GregorianCalendar.cs +++ b/src/net/JNet/Generated/Java/Util/GregorianCalendar.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region GregorianCalendar + #region GregorianCalendar declaration + /// + /// + /// + public partial class GregorianCalendar : Java.Util.Calendar + { + const string _bridgeClassName = "java.util.GregorianCalendar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GregorianCalendar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GregorianCalendar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GregorianCalendar implementation public partial class GregorianCalendar { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/HashMap.cs b/src/net/JNet/Generated/Java/Util/HashMap.cs index c6bd10bd1e..a099257f5f 100644 --- a/src/net/JNet/Generated/Java/Util/HashMap.cs +++ b/src/net/JNet/Generated/Java/Util/HashMap.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region HashMap + #region HashMap declaration + /// + /// + /// + public partial class HashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.HashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashMap declaration + /// + /// + /// + /// + /// + public partial class HashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.HashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashMap implementation public partial class HashMap { #region Constructors @@ -89,7 +181,7 @@ public HashMap(Java.Util.Map arg0) } #endregion - #region HashMap + #region HashMap implementation public partial class HashMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/HashSet.cs b/src/net/JNet/Generated/Java/Util/HashSet.cs index 5c8ec358e0..1246bdda7e 100644 --- a/src/net/JNet/Generated/Java/Util/HashSet.cs +++ b/src/net/JNet/Generated/Java/Util/HashSet.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region HashSet + #region HashSet declaration + /// + /// + /// + public partial class HashSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.HashSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashSet declaration + /// + /// + /// + /// + public partial class HashSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.HashSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashSet implementation public partial class HashSet { #region Constructors @@ -89,7 +180,7 @@ public HashSet(Java.Util.Collection arg0) } #endregion - #region HashSet + #region HashSet implementation public partial class HashSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Hashtable.cs b/src/net/JNet/Generated/Java/Util/Hashtable.cs index 2c10768467..c541ebc5b3 100644 --- a/src/net/JNet/Generated/Java/Util/Hashtable.cs +++ b/src/net/JNet/Generated/Java/Util/Hashtable.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region Hashtable + #region Hashtable declaration + /// + /// + /// + public partial class Hashtable : Java.Util.Dictionary + { + const string _bridgeClassName = "java.util.Hashtable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Hashtable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Hashtable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Hashtable declaration + /// + /// + /// + /// + /// + public partial class Hashtable : Java.Util.Dictionary + { + const string _bridgeClassName = "java.util.Hashtable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Hashtable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Hashtable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Hashtable implementation public partial class Hashtable { #region Constructors @@ -267,7 +359,7 @@ public void ReplaceAll(Java.Util.Function.BiFunction arg0) } #endregion - #region Hashtable + #region Hashtable implementation public partial class Hashtable { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IdentityHashMap.cs b/src/net/JNet/Generated/Java/Util/IdentityHashMap.cs index cfabb385bb..de6fa7f362 100644 --- a/src/net/JNet/Generated/Java/Util/IdentityHashMap.cs +++ b/src/net/JNet/Generated/Java/Util/IdentityHashMap.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region IdentityHashMap + #region IdentityHashMap declaration + /// + /// + /// + public partial class IdentityHashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.IdentityHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IdentityHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IdentityHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IdentityHashMap declaration + /// + /// + /// + /// + /// + public partial class IdentityHashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.IdentityHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IdentityHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IdentityHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IdentityHashMap implementation public partial class IdentityHashMap { #region Constructors @@ -80,7 +172,7 @@ public IdentityHashMap(Java.Util.Map arg0) } #endregion - #region IdentityHashMap + #region IdentityHashMap implementation public partial class IdentityHashMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllegalFormatCodePointException.cs b/src/net/JNet/Generated/Java/Util/IllegalFormatCodePointException.cs index 5bbe135285..c1fb3f1451 100644 --- a/src/net/JNet/Generated/Java/Util/IllegalFormatCodePointException.cs +++ b/src/net/JNet/Generated/Java/Util/IllegalFormatCodePointException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllegalFormatCodePointException + #region IllegalFormatCodePointException declaration + /// + /// + /// + public partial class IllegalFormatCodePointException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.IllegalFormatCodePointException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalFormatCodePointException implementation public partial class IllegalFormatCodePointException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllegalFormatConversionException.cs b/src/net/JNet/Generated/Java/Util/IllegalFormatConversionException.cs index c3dd3b26a1..52109da0c3 100644 --- a/src/net/JNet/Generated/Java/Util/IllegalFormatConversionException.cs +++ b/src/net/JNet/Generated/Java/Util/IllegalFormatConversionException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllegalFormatConversionException + #region IllegalFormatConversionException declaration + /// + /// + /// + public partial class IllegalFormatConversionException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.IllegalFormatConversionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalFormatConversionException implementation public partial class IllegalFormatConversionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllegalFormatException.cs b/src/net/JNet/Generated/Java/Util/IllegalFormatException.cs index 58b9d2146d..bc9875892b 100644 --- a/src/net/JNet/Generated/Java/Util/IllegalFormatException.cs +++ b/src/net/JNet/Generated/Java/Util/IllegalFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllegalFormatException + #region IllegalFormatException declaration + /// + /// + /// + public partial class IllegalFormatException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.util.IllegalFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalFormatException implementation public partial class IllegalFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllegalFormatFlagsException.cs b/src/net/JNet/Generated/Java/Util/IllegalFormatFlagsException.cs index 8dcb8a3aa8..3ba5a7094a 100644 --- a/src/net/JNet/Generated/Java/Util/IllegalFormatFlagsException.cs +++ b/src/net/JNet/Generated/Java/Util/IllegalFormatFlagsException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllegalFormatFlagsException + #region IllegalFormatFlagsException declaration + /// + /// + /// + public partial class IllegalFormatFlagsException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.IllegalFormatFlagsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalFormatFlagsException implementation public partial class IllegalFormatFlagsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllegalFormatPrecisionException.cs b/src/net/JNet/Generated/Java/Util/IllegalFormatPrecisionException.cs index 710395cf63..9d44ace74e 100644 --- a/src/net/JNet/Generated/Java/Util/IllegalFormatPrecisionException.cs +++ b/src/net/JNet/Generated/Java/Util/IllegalFormatPrecisionException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllegalFormatPrecisionException + #region IllegalFormatPrecisionException declaration + /// + /// + /// + public partial class IllegalFormatPrecisionException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.IllegalFormatPrecisionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalFormatPrecisionException implementation public partial class IllegalFormatPrecisionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllegalFormatWidthException.cs b/src/net/JNet/Generated/Java/Util/IllegalFormatWidthException.cs index e71781fc8b..bc38840948 100644 --- a/src/net/JNet/Generated/Java/Util/IllegalFormatWidthException.cs +++ b/src/net/JNet/Generated/Java/Util/IllegalFormatWidthException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllegalFormatWidthException + #region IllegalFormatWidthException declaration + /// + /// + /// + public partial class IllegalFormatWidthException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.IllegalFormatWidthException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalFormatWidthException implementation public partial class IllegalFormatWidthException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IllformedLocaleException.cs b/src/net/JNet/Generated/Java/Util/IllformedLocaleException.cs index 747b85e465..a132d3c983 100644 --- a/src/net/JNet/Generated/Java/Util/IllformedLocaleException.cs +++ b/src/net/JNet/Generated/Java/Util/IllformedLocaleException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region IllformedLocaleException + #region IllformedLocaleException declaration + /// + /// + /// + public partial class IllformedLocaleException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.IllformedLocaleException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllformedLocaleException implementation public partial class IllformedLocaleException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/InputMismatchException.cs b/src/net/JNet/Generated/Java/Util/InputMismatchException.cs index f3e47947e8..b2e24a38b6 100644 --- a/src/net/JNet/Generated/Java/Util/InputMismatchException.cs +++ b/src/net/JNet/Generated/Java/Util/InputMismatchException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region InputMismatchException + #region InputMismatchException declaration + /// + /// + /// + public partial class InputMismatchException : Java.Util.NoSuchElementException + { + const string _bridgeClassName = "java.util.InputMismatchException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InputMismatchException implementation public partial class InputMismatchException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/IntSummaryStatistics.cs b/src/net/JNet/Generated/Java/Util/IntSummaryStatistics.cs index 076a113256..a78ffd6412 100644 --- a/src/net/JNet/Generated/Java/Util/IntSummaryStatistics.cs +++ b/src/net/JNet/Generated/Java/Util/IntSummaryStatistics.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region IntSummaryStatistics + #region IntSummaryStatistics declaration + /// + /// + /// + public partial class IntSummaryStatistics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.IntSummaryStatistics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IntSummaryStatistics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IntSummaryStatistics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IntSummaryStatistics implementation public partial class IntSummaryStatistics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/InvalidPropertiesFormatException.cs b/src/net/JNet/Generated/Java/Util/InvalidPropertiesFormatException.cs index d66f1dd503..541745f69e 100644 --- a/src/net/JNet/Generated/Java/Util/InvalidPropertiesFormatException.cs +++ b/src/net/JNet/Generated/Java/Util/InvalidPropertiesFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region InvalidPropertiesFormatException + #region InvalidPropertiesFormatException declaration + /// + /// + /// + public partial class InvalidPropertiesFormatException : Java.Io.IOException + { + const string _bridgeClassName = "java.util.InvalidPropertiesFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidPropertiesFormatException implementation public partial class InvalidPropertiesFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Jar/AllPackageClasses.cs deleted file mode 100644 index aa035ea910..0000000000 --- a/src/net/JNet/Generated/Java/Util/Jar/AllPackageClasses.cs +++ /dev/null @@ -1,362 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Jar -{ - #region Attributes - /// - /// - /// - public partial class Attributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.jar.Attributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Attributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Attributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Name - /// - /// - /// - public partial class Name : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.jar.Attributes$Name"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Name() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Name(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JarEntry - /// - /// - /// - public partial class JarEntry : Java.Util.Zip.ZipEntry - { - const string _bridgeClassName = "java.util.jar.JarEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JarEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JarEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JarException - /// - /// - /// - public partial class JarException : Java.Util.Zip.ZipException - { - const string _bridgeClassName = "java.util.jar.JarException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region JarFile - /// - /// - /// - public partial class JarFile : Java.Util.Zip.ZipFile - { - const string _bridgeClassName = "java.util.jar.JarFile"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JarFile() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JarFile(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JarInputStream - /// - /// - /// - public partial class JarInputStream : Java.Util.Zip.ZipInputStream - { - const string _bridgeClassName = "java.util.jar.JarInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JarInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JarInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JarOutputStream - /// - /// - /// - public partial class JarOutputStream : Java.Util.Zip.ZipOutputStream - { - const string _bridgeClassName = "java.util.jar.JarOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JarOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JarOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Manifest - /// - /// - /// - public partial class Manifest : Java.Lang.Cloneable - { - const string _bridgeClassName = "java.util.jar.Manifest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Manifest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Manifest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Jar/Attributes.cs b/src/net/JNet/Generated/Java/Util/Jar/Attributes.cs index cc988abc72..ef9ffb814d 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/Attributes.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/Attributes.cs @@ -25,7 +25,97 @@ namespace Java.Util.Jar { - #region Attributes + #region Attributes declaration + /// + /// + /// + public partial class Attributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.jar.Attributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Attributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Attributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Name declaration + /// + /// + /// + public partial class Name : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.jar.Attributes$Name"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Name() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Name(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Attributes implementation public partial class Attributes { #region Constructors @@ -202,7 +292,7 @@ public void PutAll(Java.Util.Map arg0) #endregion #region Nested classes - #region Name + #region Name implementation public partial class Name { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/JarEntry.cs b/src/net/JNet/Generated/Java/Util/Jar/JarEntry.cs index 77a233748d..1a97527742 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/JarEntry.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/JarEntry.cs @@ -25,7 +25,52 @@ namespace Java.Util.Jar { - #region JarEntry + #region JarEntry declaration + /// + /// + /// + public partial class JarEntry : Java.Util.Zip.ZipEntry + { + const string _bridgeClassName = "java.util.jar.JarEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JarEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JarEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JarEntry implementation public partial class JarEntry { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/JarException.cs b/src/net/JNet/Generated/Java/Util/Jar/JarException.cs index a5515cf4fe..bb9927b983 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/JarException.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/JarException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Jar { - #region JarException + #region JarException declaration + /// + /// + /// + public partial class JarException : Java.Util.Zip.ZipException + { + const string _bridgeClassName = "java.util.jar.JarException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region JarException implementation public partial class JarException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/JarFile.cs b/src/net/JNet/Generated/Java/Util/Jar/JarFile.cs index 2820616bc3..3e824d75a2 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/JarFile.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/JarFile.cs @@ -25,7 +25,52 @@ namespace Java.Util.Jar { - #region JarFile + #region JarFile declaration + /// + /// + /// + public partial class JarFile : Java.Util.Zip.ZipFile + { + const string _bridgeClassName = "java.util.jar.JarFile"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JarFile() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JarFile(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JarFile implementation public partial class JarFile { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/JarInputStream.cs b/src/net/JNet/Generated/Java/Util/Jar/JarInputStream.cs index 0a8c5f1317..1d0fb7fcf2 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/JarInputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/JarInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Jar { - #region JarInputStream + #region JarInputStream declaration + /// + /// + /// + public partial class JarInputStream : Java.Util.Zip.ZipInputStream + { + const string _bridgeClassName = "java.util.jar.JarInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JarInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JarInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JarInputStream implementation public partial class JarInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/JarOutputStream.cs b/src/net/JNet/Generated/Java/Util/Jar/JarOutputStream.cs index c0227fa308..80123ccbe4 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/JarOutputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/JarOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Jar { - #region JarOutputStream + #region JarOutputStream declaration + /// + /// + /// + public partial class JarOutputStream : Java.Util.Zip.ZipOutputStream + { + const string _bridgeClassName = "java.util.jar.JarOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JarOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JarOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JarOutputStream implementation public partial class JarOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Jar/Manifest.cs b/src/net/JNet/Generated/Java/Util/Jar/Manifest.cs index 7c016b7fd0..fe73c02daa 100644 --- a/src/net/JNet/Generated/Java/Util/Jar/Manifest.cs +++ b/src/net/JNet/Generated/Java/Util/Jar/Manifest.cs @@ -25,7 +25,52 @@ namespace Java.Util.Jar { - #region Manifest + #region Manifest declaration + /// + /// + /// + public partial class Manifest : Java.Lang.Cloneable + { + const string _bridgeClassName = "java.util.jar.Manifest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Manifest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Manifest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Manifest implementation public partial class Manifest { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/LinkedHashMap.cs b/src/net/JNet/Generated/Java/Util/LinkedHashMap.cs index ce8cb749f0..1665165287 100644 --- a/src/net/JNet/Generated/Java/Util/LinkedHashMap.cs +++ b/src/net/JNet/Generated/Java/Util/LinkedHashMap.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region LinkedHashMap + #region LinkedHashMap declaration + /// + /// + /// + public partial class LinkedHashMap : Java.Util.HashMap + { + const string _bridgeClassName = "java.util.LinkedHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedHashMap declaration + /// + /// + /// + /// + /// + public partial class LinkedHashMap : Java.Util.HashMap + { + const string _bridgeClassName = "java.util.LinkedHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedHashMap implementation public partial class LinkedHashMap { #region Constructors @@ -91,7 +183,7 @@ public LinkedHashMap(Java.Util.Map arg0) } #endregion - #region LinkedHashMap + #region LinkedHashMap implementation public partial class LinkedHashMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/LinkedHashSet.cs b/src/net/JNet/Generated/Java/Util/LinkedHashSet.cs index 498ae7e10f..8779f5ec89 100644 --- a/src/net/JNet/Generated/Java/Util/LinkedHashSet.cs +++ b/src/net/JNet/Generated/Java/Util/LinkedHashSet.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region LinkedHashSet + #region LinkedHashSet declaration + /// + /// + /// + public partial class LinkedHashSet : Java.Util.HashSet + { + const string _bridgeClassName = "java.util.LinkedHashSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedHashSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedHashSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedHashSet declaration + /// + /// + /// + /// + public partial class LinkedHashSet : Java.Util.HashSet + { + const string _bridgeClassName = "java.util.LinkedHashSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedHashSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedHashSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedHashSet implementation public partial class LinkedHashSet { #region Constructors @@ -81,7 +172,7 @@ public LinkedHashSet(Java.Util.Collection arg0) } #endregion - #region LinkedHashSet + #region LinkedHashSet implementation public partial class LinkedHashSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/LinkedList.cs b/src/net/JNet/Generated/Java/Util/LinkedList.cs index 6e844c9db4..eb6ab4cd60 100644 --- a/src/net/JNet/Generated/Java/Util/LinkedList.cs +++ b/src/net/JNet/Generated/Java/Util/LinkedList.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region LinkedList + #region LinkedList declaration + /// + /// + /// + public partial class LinkedList : Java.Util.AbstractSequentialList + { + const string _bridgeClassName = "java.util.LinkedList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedList declaration + /// + /// + /// + /// + public partial class LinkedList : Java.Util.AbstractSequentialList + { + const string _bridgeClassName = "java.util.LinkedList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkedList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkedList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkedList implementation public partial class LinkedList { #region Constructors @@ -259,7 +350,7 @@ public void Push(object arg0) } #endregion - #region LinkedList + #region LinkedList implementation public partial class LinkedList { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/List.cs b/src/net/JNet/Generated/Java/Util/List.cs index 8db01ef3ad..123d4e249e 100644 --- a/src/net/JNet/Generated/Java/Util/List.cs +++ b/src/net/JNet/Generated/Java/Util/List.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region List + #region List declaration + /// + /// + /// + public partial class List : Java.Util.Collection + { + const string _bridgeClassName = "java.util.List"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public List() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public List(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region List declaration + /// + /// + /// + /// + public partial class List : Java.Util.Collection + { + const string _bridgeClassName = "java.util.List"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public List() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("List class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public List(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region List implementation public partial class List { #region Constructors @@ -615,7 +710,7 @@ public partial interface IList : Java.Util.ICollection } #endregion - #region List + #region List implementation public partial class List : Java.Util.IList { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ListIterator.cs b/src/net/JNet/Generated/Java/Util/ListIterator.cs index 1cdfbc613d..89a92e3041 100644 --- a/src/net/JNet/Generated/Java/Util/ListIterator.cs +++ b/src/net/JNet/Generated/Java/Util/ListIterator.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region ListIterator + #region ListIterator declaration + /// + /// + /// + public partial class ListIterator : Java.Util.Iterator + { + const string _bridgeClassName = "java.util.ListIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListIterator declaration + /// + /// + /// + /// + public partial class ListIterator : Java.Util.Iterator + { + const string _bridgeClassName = "java.util.ListIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListIterator implementation public partial class ListIterator { #region Constructors @@ -189,7 +284,7 @@ public partial interface IListIterator } #endregion - #region ListIterator + #region ListIterator implementation public partial class ListIterator : Java.Util.IListIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ListResourceBundle.cs b/src/net/JNet/Generated/Java/Util/ListResourceBundle.cs index 8dc102e622..7e88433bd0 100644 --- a/src/net/JNet/Generated/Java/Util/ListResourceBundle.cs +++ b/src/net/JNet/Generated/Java/Util/ListResourceBundle.cs @@ -25,7 +25,54 @@ namespace Java.Util { - #region ListResourceBundle + #region ListResourceBundle declaration + /// + /// + /// + public partial class ListResourceBundle : Java.Util.ResourceBundle + { + const string _bridgeClassName = "java.util.ListResourceBundle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListResourceBundle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListResourceBundle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListResourceBundle implementation public partial class ListResourceBundle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Locale.cs b/src/net/JNet/Generated/Java/Util/Locale.cs index 95021e370f..5e71014155 100644 --- a/src/net/JNet/Generated/Java/Util/Locale.cs +++ b/src/net/JNet/Generated/Java/Util/Locale.cs @@ -25,7 +25,279 @@ namespace Java.Util { - #region Locale + #region Locale declaration + /// + /// + /// + public partial class Locale : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Locale"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Locale() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Locale(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Locale$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Category declaration + /// + /// + /// + public partial class Category : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.Locale$Category"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Category() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Category(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FilteringMode declaration + /// + /// + /// + public partial class FilteringMode : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.Locale$FilteringMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilteringMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilteringMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region IsoCountryCode declaration + /// + /// + /// + public partial class IsoCountryCode : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.Locale$IsoCountryCode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IsoCountryCode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IsoCountryCode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IsoCountryCode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IsoCountryCode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region LanguageRange declaration + /// + /// + /// + public partial class LanguageRange : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Locale$LanguageRange"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LanguageRange() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LanguageRange(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Locale implementation public partial class Locale { #region Constructors @@ -539,7 +811,7 @@ public Java.Util.Locale StripExtensions() #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors @@ -686,7 +958,7 @@ public Java.Util.Locale.Builder SetVariant(Java.Lang.String arg0) } #endregion - #region Category + #region Category implementation public partial class Category { #region Constructors @@ -746,7 +1018,7 @@ public static Java.Util.Locale.Category[] Values() } #endregion - #region FilteringMode + #region FilteringMode implementation public partial class FilteringMode { #region Constructors @@ -824,7 +1096,7 @@ public static Java.Util.Locale.FilteringMode[] Values() } #endregion - #region IsoCountryCode + #region IsoCountryCode implementation public partial class IsoCountryCode { #region Constructors @@ -890,7 +1162,7 @@ public static Java.Util.Locale.IsoCountryCode[] Values() } #endregion - #region LanguageRange + #region LanguageRange implementation public partial class LanguageRange { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Logging/AllPackageClasses.cs deleted file mode 100644 index 9a6690b034..0000000000 --- a/src/net/JNet/Generated/Java/Util/Logging/AllPackageClasses.cs +++ /dev/null @@ -1,756 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Logging -{ - #region ConsoleHandler - /// - /// - /// - public partial class ConsoleHandler : Java.Util.Logging.StreamHandler - { - const string _bridgeClassName = "java.util.logging.ConsoleHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConsoleHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConsoleHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ErrorManager - /// - /// - /// - public partial class ErrorManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.logging.ErrorManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ErrorManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ErrorManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileHandler - /// - /// - /// - public partial class FileHandler : Java.Util.Logging.StreamHandler - { - const string _bridgeClassName = "java.util.logging.FileHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Filter - /// - /// - /// - public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.logging.Filter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Formatter - /// - /// - /// - public partial class Formatter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.logging.Formatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Formatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Formatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Formatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Formatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Handler - /// - /// - /// - public partial class Handler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.logging.Handler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Handler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Handler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Handler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Handler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Level - /// - /// - /// - public partial class Level : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.logging.Level"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Level() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Level(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Logger - /// - /// - /// - public partial class Logger : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.logging.Logger"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Logger() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Logger(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LoggingPermission - /// - /// - /// - public partial class LoggingPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "java.util.logging.LoggingPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LoggingPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LoggingPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LogManager - /// - /// - /// - public partial class LogManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.logging.LogManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LogManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LogManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LogRecord - /// - /// - /// - public partial class LogRecord : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.logging.LogRecord"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LogRecord() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LogRecord(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryHandler - /// - /// - /// - public partial class MemoryHandler : Java.Util.Logging.Handler - { - const string _bridgeClassName = "java.util.logging.MemoryHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleFormatter - /// - /// - /// - public partial class SimpleFormatter : Java.Util.Logging.Formatter - { - const string _bridgeClassName = "java.util.logging.SimpleFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketHandler - /// - /// - /// - public partial class SocketHandler : Java.Util.Logging.StreamHandler - { - const string _bridgeClassName = "java.util.logging.SocketHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SocketHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SocketHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamHandler - /// - /// - /// - public partial class StreamHandler : Java.Util.Logging.Handler - { - const string _bridgeClassName = "java.util.logging.StreamHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StreamHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StreamHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLFormatter - /// - /// - /// - public partial class XMLFormatter : Java.Util.Logging.Formatter - { - const string _bridgeClassName = "java.util.logging.XMLFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XMLFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XMLFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Logging/ConsoleHandler.cs b/src/net/JNet/Generated/Java/Util/Logging/ConsoleHandler.cs index b68e8f80d7..aaa3ab2748 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/ConsoleHandler.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/ConsoleHandler.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region ConsoleHandler + #region ConsoleHandler declaration + /// + /// + /// + public partial class ConsoleHandler : Java.Util.Logging.StreamHandler + { + const string _bridgeClassName = "java.util.logging.ConsoleHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConsoleHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConsoleHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConsoleHandler implementation public partial class ConsoleHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/ErrorManager.cs b/src/net/JNet/Generated/Java/Util/Logging/ErrorManager.cs index 937c1d60cd..207b5033c8 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/ErrorManager.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/ErrorManager.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region ErrorManager + #region ErrorManager declaration + /// + /// + /// + public partial class ErrorManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.logging.ErrorManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ErrorManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ErrorManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ErrorManager implementation public partial class ErrorManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/FileHandler.cs b/src/net/JNet/Generated/Java/Util/Logging/FileHandler.cs index 18d9346eb9..44fafa0a76 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/FileHandler.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/FileHandler.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region FileHandler + #region FileHandler declaration + /// + /// + /// + public partial class FileHandler : Java.Util.Logging.StreamHandler + { + const string _bridgeClassName = "java.util.logging.FileHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileHandler implementation public partial class FileHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/Filter.cs b/src/net/JNet/Generated/Java/Util/Logging/Filter.cs index 4dded4b4a6..624d109775 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/Filter.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/Filter.cs @@ -25,6 +25,53 @@ namespace Java.Util.Logging { + #region Filter declaration + /// + /// + /// + public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.logging.Filter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IFilter } #endregion - #region Filter + #region Filter implementation public partial class Filter : Java.Util.Logging.IFilter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/Formatter.cs b/src/net/JNet/Generated/Java/Util/Logging/Formatter.cs index b405660505..792fbe3fc8 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/Formatter.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/Formatter.cs @@ -25,7 +25,54 @@ namespace Java.Util.Logging { - #region Formatter + #region Formatter declaration + /// + /// + /// + public partial class Formatter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.logging.Formatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Formatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Formatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Formatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Formatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Formatter implementation public partial class Formatter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/Handler.cs b/src/net/JNet/Generated/Java/Util/Logging/Handler.cs index 9e1679edee..1435604768 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/Handler.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/Handler.cs @@ -25,7 +25,54 @@ namespace Java.Util.Logging { - #region Handler + #region Handler declaration + /// + /// + /// + public partial class Handler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.logging.Handler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Handler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Handler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Handler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Handler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Handler implementation public partial class Handler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/Level.cs b/src/net/JNet/Generated/Java/Util/Logging/Level.cs index 38ef7fcd3a..6a1a7395e1 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/Level.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/Level.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region Level + #region Level declaration + /// + /// + /// + public partial class Level : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.logging.Level"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Level() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Level(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Level implementation public partial class Level { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/LogManager.cs b/src/net/JNet/Generated/Java/Util/Logging/LogManager.cs index ff2eb539ab..be78409e0f 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/LogManager.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/LogManager.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region LogManager + #region LogManager declaration + /// + /// + /// + public partial class LogManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.logging.LogManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LogManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LogManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LogManager implementation public partial class LogManager { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/LogRecord.cs b/src/net/JNet/Generated/Java/Util/Logging/LogRecord.cs index 2572d5a107..dca83d61c6 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/LogRecord.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/LogRecord.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region LogRecord + #region LogRecord declaration + /// + /// + /// + public partial class LogRecord : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.logging.LogRecord"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LogRecord() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LogRecord(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LogRecord implementation public partial class LogRecord { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/Logger.cs b/src/net/JNet/Generated/Java/Util/Logging/Logger.cs index 543ba53cef..34167f157f 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/Logger.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/Logger.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region Logger + #region Logger declaration + /// + /// + /// + public partial class Logger : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.logging.Logger"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Logger() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Logger(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Logger implementation public partial class Logger { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/LoggingPermission.cs b/src/net/JNet/Generated/Java/Util/Logging/LoggingPermission.cs index e629f36ede..3d7c8db5c3 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/LoggingPermission.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/LoggingPermission.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region LoggingPermission + #region LoggingPermission declaration + /// + /// + /// + public partial class LoggingPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.util.logging.LoggingPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LoggingPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LoggingPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LoggingPermission implementation public partial class LoggingPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/MemoryHandler.cs b/src/net/JNet/Generated/Java/Util/Logging/MemoryHandler.cs index f984546d07..0ac05b1982 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/MemoryHandler.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/MemoryHandler.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region MemoryHandler + #region MemoryHandler declaration + /// + /// + /// + public partial class MemoryHandler : Java.Util.Logging.Handler + { + const string _bridgeClassName = "java.util.logging.MemoryHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryHandler implementation public partial class MemoryHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/SimpleFormatter.cs b/src/net/JNet/Generated/Java/Util/Logging/SimpleFormatter.cs index c19a3cf112..68a9d79246 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/SimpleFormatter.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/SimpleFormatter.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region SimpleFormatter + #region SimpleFormatter declaration + /// + /// + /// + public partial class SimpleFormatter : Java.Util.Logging.Formatter + { + const string _bridgeClassName = "java.util.logging.SimpleFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleFormatter implementation public partial class SimpleFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/SocketHandler.cs b/src/net/JNet/Generated/Java/Util/Logging/SocketHandler.cs index 2831d1d490..d602c36638 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/SocketHandler.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/SocketHandler.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region SocketHandler + #region SocketHandler declaration + /// + /// + /// + public partial class SocketHandler : Java.Util.Logging.StreamHandler + { + const string _bridgeClassName = "java.util.logging.SocketHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SocketHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SocketHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketHandler implementation public partial class SocketHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/StreamHandler.cs b/src/net/JNet/Generated/Java/Util/Logging/StreamHandler.cs index 745cf2f0f3..87048392bc 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/StreamHandler.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/StreamHandler.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region StreamHandler + #region StreamHandler declaration + /// + /// + /// + public partial class StreamHandler : Java.Util.Logging.Handler + { + const string _bridgeClassName = "java.util.logging.StreamHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StreamHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StreamHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamHandler implementation public partial class StreamHandler { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Logging/XMLFormatter.cs b/src/net/JNet/Generated/Java/Util/Logging/XMLFormatter.cs index 71a5a7aee8..c5d4e69aa8 100644 --- a/src/net/JNet/Generated/Java/Util/Logging/XMLFormatter.cs +++ b/src/net/JNet/Generated/Java/Util/Logging/XMLFormatter.cs @@ -25,7 +25,52 @@ namespace Java.Util.Logging { - #region XMLFormatter + #region XMLFormatter declaration + /// + /// + /// + public partial class XMLFormatter : Java.Util.Logging.Formatter + { + const string _bridgeClassName = "java.util.logging.XMLFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XMLFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XMLFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLFormatter implementation public partial class XMLFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/LongSummaryStatistics.cs b/src/net/JNet/Generated/Java/Util/LongSummaryStatistics.cs index 553fa689a4..a964b48d68 100644 --- a/src/net/JNet/Generated/Java/Util/LongSummaryStatistics.cs +++ b/src/net/JNet/Generated/Java/Util/LongSummaryStatistics.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region LongSummaryStatistics + #region LongSummaryStatistics declaration + /// + /// + /// + public partial class LongSummaryStatistics : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.LongSummaryStatistics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LongSummaryStatistics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LongSummaryStatistics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LongSummaryStatistics implementation public partial class LongSummaryStatistics { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Map.cs b/src/net/JNet/Generated/Java/Util/Map.cs index 734f5a542d..a5a6ffacd9 100644 --- a/src/net/JNet/Generated/Java/Util/Map.cs +++ b/src/net/JNet/Generated/Java/Util/Map.cs @@ -25,7 +25,199 @@ namespace Java.Util { - #region Map + #region Map declaration + /// + /// + /// + public partial class Map : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Map"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Map() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Map(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Entry declaration + /// + /// + /// + public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Map$Entry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Entry declaration + /// + /// + /// + /// + /// + public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.Map$Entry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Map declaration + /// + /// + /// + /// + /// + public partial class Map : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.Map"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Map() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Map class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Map(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Map implementation public partial class Map { #region Constructors @@ -484,7 +676,7 @@ public void ReplaceAll(Java.Util.Function.BiFunction arg0) #endregion #region Nested classes - #region Entry + #region Entry implementation public partial class Entry { #region Constructors @@ -572,7 +764,7 @@ public object SetValue(object arg0) } #endregion - #region Entry + #region Entry implementation public partial class Entry { #region Constructors @@ -848,7 +1040,7 @@ public partial interface IMap } #endregion - #region Map + #region Map implementation public partial class Map : Java.Util.IMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/MissingFormatArgumentException.cs b/src/net/JNet/Generated/Java/Util/MissingFormatArgumentException.cs index 8e5629a3eb..df99865b15 100644 --- a/src/net/JNet/Generated/Java/Util/MissingFormatArgumentException.cs +++ b/src/net/JNet/Generated/Java/Util/MissingFormatArgumentException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region MissingFormatArgumentException + #region MissingFormatArgumentException declaration + /// + /// + /// + public partial class MissingFormatArgumentException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.MissingFormatArgumentException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MissingFormatArgumentException implementation public partial class MissingFormatArgumentException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/MissingFormatWidthException.cs b/src/net/JNet/Generated/Java/Util/MissingFormatWidthException.cs index 1624955100..12d7e898e7 100644 --- a/src/net/JNet/Generated/Java/Util/MissingFormatWidthException.cs +++ b/src/net/JNet/Generated/Java/Util/MissingFormatWidthException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region MissingFormatWidthException + #region MissingFormatWidthException declaration + /// + /// + /// + public partial class MissingFormatWidthException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.MissingFormatWidthException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MissingFormatWidthException implementation public partial class MissingFormatWidthException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/MissingResourceException.cs b/src/net/JNet/Generated/Java/Util/MissingResourceException.cs index 8e567e1f0a..e9a0375119 100644 --- a/src/net/JNet/Generated/Java/Util/MissingResourceException.cs +++ b/src/net/JNet/Generated/Java/Util/MissingResourceException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region MissingResourceException + #region MissingResourceException declaration + /// + /// + /// + public partial class MissingResourceException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.MissingResourceException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MissingResourceException implementation public partial class MissingResourceException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/NavigableMap.cs b/src/net/JNet/Generated/Java/Util/NavigableMap.cs index 6a115f4ca8..a7e425ef38 100644 --- a/src/net/JNet/Generated/Java/Util/NavigableMap.cs +++ b/src/net/JNet/Generated/Java/Util/NavigableMap.cs @@ -25,7 +25,103 @@ namespace Java.Util { - #region NavigableMap + #region NavigableMap declaration + /// + /// + /// + public partial class NavigableMap : Java.Util.SortedMap + { + const string _bridgeClassName = "java.util.NavigableMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NavigableMap declaration + /// + /// + /// + /// + /// + public partial class NavigableMap : Java.Util.SortedMap + { + const string _bridgeClassName = "java.util.NavigableMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NavigableMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NavigableMap implementation public partial class NavigableMap { #region Constructors @@ -387,7 +483,7 @@ public partial interface INavigableMap : Java.Util.ISortedMap } #endregion - #region NavigableMap + #region NavigableMap implementation public partial class NavigableMap : Java.Util.INavigableMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/NavigableSet.cs b/src/net/JNet/Generated/Java/Util/NavigableSet.cs index 5c4001149c..831acc47d0 100644 --- a/src/net/JNet/Generated/Java/Util/NavigableSet.cs +++ b/src/net/JNet/Generated/Java/Util/NavigableSet.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region NavigableSet + #region NavigableSet declaration + /// + /// + /// + public partial class NavigableSet : Java.Util.SortedSet + { + const string _bridgeClassName = "java.util.NavigableSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NavigableSet declaration + /// + /// + /// + /// + public partial class NavigableSet : Java.Util.SortedSet + { + const string _bridgeClassName = "java.util.NavigableSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NavigableSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NavigableSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NavigableSet implementation public partial class NavigableSet { #region Constructors @@ -301,7 +396,7 @@ public partial interface INavigableSet : Java.Util.ISortedSet } #endregion - #region NavigableSet + #region NavigableSet implementation public partial class NavigableSet : Java.Util.INavigableSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/NoSuchElementException.cs b/src/net/JNet/Generated/Java/Util/NoSuchElementException.cs index c58cf09e17..626531397b 100644 --- a/src/net/JNet/Generated/Java/Util/NoSuchElementException.cs +++ b/src/net/JNet/Generated/Java/Util/NoSuchElementException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region NoSuchElementException + #region NoSuchElementException declaration + /// + /// + /// + public partial class NoSuchElementException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "java.util.NoSuchElementException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchElementException implementation public partial class NoSuchElementException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Objects.cs b/src/net/JNet/Generated/Java/Util/Objects.cs index 8892a42107..e8513886bc 100644 --- a/src/net/JNet/Generated/Java/Util/Objects.cs +++ b/src/net/JNet/Generated/Java/Util/Objects.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Objects + #region Objects declaration + /// + /// + /// + public partial class Objects : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Objects"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Objects() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Objects(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Objects implementation public partial class Objects { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Optional.cs b/src/net/JNet/Generated/Java/Util/Optional.cs index 9cb4a9a907..7f2cbbf49e 100644 --- a/src/net/JNet/Generated/Java/Util/Optional.cs +++ b/src/net/JNet/Generated/Java/Util/Optional.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region Optional + #region Optional declaration + /// + /// + /// + public partial class Optional : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Optional"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Optional() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Optional(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Optional declaration + /// + /// + /// + /// + public partial class Optional : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.Optional"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Optional() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Optional(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Optional implementation public partial class Optional { #region Constructors @@ -203,7 +294,7 @@ public void IfPresentOrElse(Java.Util.Function.Consumer arg0, Java.Lang.Runnable } #endregion - #region Optional + #region Optional implementation public partial class Optional { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/OptionalDouble.cs b/src/net/JNet/Generated/Java/Util/OptionalDouble.cs index 10aed050d2..9d1599ee8b 100644 --- a/src/net/JNet/Generated/Java/Util/OptionalDouble.cs +++ b/src/net/JNet/Generated/Java/Util/OptionalDouble.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region OptionalDouble + #region OptionalDouble declaration + /// + /// + /// + public partial class OptionalDouble : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.OptionalDouble"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OptionalDouble() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OptionalDouble(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OptionalDouble implementation public partial class OptionalDouble { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/OptionalInt.cs b/src/net/JNet/Generated/Java/Util/OptionalInt.cs index bd27a78495..c85e456819 100644 --- a/src/net/JNet/Generated/Java/Util/OptionalInt.cs +++ b/src/net/JNet/Generated/Java/Util/OptionalInt.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region OptionalInt + #region OptionalInt declaration + /// + /// + /// + public partial class OptionalInt : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.OptionalInt"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OptionalInt() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OptionalInt(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OptionalInt implementation public partial class OptionalInt { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/OptionalLong.cs b/src/net/JNet/Generated/Java/Util/OptionalLong.cs index f260ab0502..6709fa85ca 100644 --- a/src/net/JNet/Generated/Java/Util/OptionalLong.cs +++ b/src/net/JNet/Generated/Java/Util/OptionalLong.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region OptionalLong + #region OptionalLong declaration + /// + /// + /// + public partial class OptionalLong : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.OptionalLong"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OptionalLong() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OptionalLong(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OptionalLong implementation public partial class OptionalLong { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/AbstractPreferences.cs b/src/net/JNet/Generated/Java/Util/Prefs/AbstractPreferences.cs index f38c8c13b8..0a18ff2f71 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/AbstractPreferences.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/AbstractPreferences.cs @@ -25,7 +25,54 @@ namespace Java.Util.Prefs { - #region AbstractPreferences + #region AbstractPreferences declaration + /// + /// + /// + public partial class AbstractPreferences : Java.Util.Prefs.Preferences + { + const string _bridgeClassName = "java.util.prefs.AbstractPreferences"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractPreferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractPreferences() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractPreferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractPreferences(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractPreferences implementation public partial class AbstractPreferences { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Prefs/AllPackageClasses.cs deleted file mode 100644 index aa87f20e20..0000000000 --- a/src/net/JNet/Generated/Java/Util/Prefs/AllPackageClasses.cs +++ /dev/null @@ -1,429 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Prefs -{ - #region AbstractPreferences - /// - /// - /// - public partial class AbstractPreferences : Java.Util.Prefs.Preferences - { - const string _bridgeClassName = "java.util.prefs.AbstractPreferences"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractPreferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractPreferences() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractPreferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractPreferences(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BackingStoreException - /// - /// - /// - public partial class BackingStoreException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.prefs.BackingStoreException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidPreferencesFormatException - /// - /// - /// - public partial class InvalidPreferencesFormatException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.prefs.InvalidPreferencesFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NodeChangeEvent - /// - /// - /// - public partial class NodeChangeEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.util.prefs.NodeChangeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NodeChangeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NodeChangeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NodeChangeListener - /// - /// - /// - public partial class NodeChangeListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NodeChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.prefs.NodeChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region NodeChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class NodeChangeListenerDirect : NodeChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.prefs.NodeChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PreferenceChangeEvent - /// - /// - /// - public partial class PreferenceChangeEvent : Java.Util.EventObject - { - const string _bridgeClassName = "java.util.prefs.PreferenceChangeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PreferenceChangeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PreferenceChangeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PreferenceChangeListener - /// - /// - /// - public partial class PreferenceChangeListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PreferenceChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.java.util.prefs.PreferenceChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PreferenceChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PreferenceChangeListenerDirect : PreferenceChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "java.util.prefs.PreferenceChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Preferences - /// - /// - /// - public partial class Preferences : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.prefs.Preferences"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Preferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Preferences() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Preferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Preferences(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PreferencesFactory - /// - /// - /// - public partial class PreferencesFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.prefs.PreferencesFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PreferencesFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PreferencesFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PreferencesFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PreferencesFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Prefs/BackingStoreException.cs b/src/net/JNet/Generated/Java/Util/Prefs/BackingStoreException.cs index 17723d829c..b1a61301ce 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/BackingStoreException.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/BackingStoreException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Prefs { - #region BackingStoreException + #region BackingStoreException declaration + /// + /// + /// + public partial class BackingStoreException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.prefs.BackingStoreException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BackingStoreException implementation public partial class BackingStoreException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/InvalidPreferencesFormatException.cs b/src/net/JNet/Generated/Java/Util/Prefs/InvalidPreferencesFormatException.cs index 2f525afe68..58356bd802 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/InvalidPreferencesFormatException.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/InvalidPreferencesFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Prefs { - #region InvalidPreferencesFormatException + #region InvalidPreferencesFormatException declaration + /// + /// + /// + public partial class InvalidPreferencesFormatException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.prefs.InvalidPreferencesFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidPreferencesFormatException implementation public partial class InvalidPreferencesFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeEvent.cs b/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeEvent.cs index ccf3e247c5..ff78251853 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeEvent.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeEvent.cs @@ -25,7 +25,52 @@ namespace Java.Util.Prefs { - #region NodeChangeEvent + #region NodeChangeEvent declaration + /// + /// + /// + public partial class NodeChangeEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.util.prefs.NodeChangeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NodeChangeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NodeChangeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NodeChangeEvent implementation public partial class NodeChangeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeListener.cs b/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeListener.cs index dd4fda8bfe..1c263ecf7e 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeListener.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/NodeChangeListener.cs @@ -25,6 +25,73 @@ namespace Java.Util.Prefs { + #region NodeChangeListener declaration + /// + /// + /// + public partial class NodeChangeListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NodeChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.prefs.NodeChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region NodeChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class NodeChangeListenerDirect : NodeChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.prefs.NodeChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region INodeChangeListener /// /// .NET interface for org.mases.jnet.generated.java.util.prefs.NodeChangeListener implementing @@ -53,7 +120,7 @@ public partial interface INodeChangeListener } #endregion - #region NodeChangeListener + #region NodeChangeListener implementation public partial class NodeChangeListener : Java.Util.Prefs.INodeChangeListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ChildRemoved(Java.Util.Prefs.NodeChangeEvent arg0) } #endregion - #region NodeChangeListenerDirect + #region NodeChangeListenerDirect implementation public partial class NodeChangeListenerDirect : Java.Util.Prefs.INodeChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeEvent.cs b/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeEvent.cs index b8b23f3add..384756f785 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeEvent.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeEvent.cs @@ -25,7 +25,52 @@ namespace Java.Util.Prefs { - #region PreferenceChangeEvent + #region PreferenceChangeEvent declaration + /// + /// + /// + public partial class PreferenceChangeEvent : Java.Util.EventObject + { + const string _bridgeClassName = "java.util.prefs.PreferenceChangeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PreferenceChangeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PreferenceChangeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PreferenceChangeEvent implementation public partial class PreferenceChangeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeListener.cs b/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeListener.cs index 9e8d298644..1379158899 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeListener.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/PreferenceChangeListener.cs @@ -25,6 +25,73 @@ namespace Java.Util.Prefs { + #region PreferenceChangeListener declaration + /// + /// + /// + public partial class PreferenceChangeListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PreferenceChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.java.util.prefs.PreferenceChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PreferenceChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PreferenceChangeListenerDirect : PreferenceChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "java.util.prefs.PreferenceChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IPreferenceChangeListener /// /// .NET interface for org.mases.jnet.generated.java.util.prefs.PreferenceChangeListener implementing @@ -48,7 +115,7 @@ public partial interface IPreferenceChangeListener } #endregion - #region PreferenceChangeListener + #region PreferenceChangeListener implementation public partial class PreferenceChangeListener : Java.Util.Prefs.IPreferenceChangeListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void PreferenceChange(Java.Util.Prefs.PreferenceChangeEvent arg0) } #endregion - #region PreferenceChangeListenerDirect + #region PreferenceChangeListenerDirect implementation public partial class PreferenceChangeListenerDirect : Java.Util.Prefs.IPreferenceChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/Preferences.cs b/src/net/JNet/Generated/Java/Util/Prefs/Preferences.cs index 28e34615a2..ec0fbfeb8e 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/Preferences.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/Preferences.cs @@ -25,7 +25,54 @@ namespace Java.Util.Prefs { - #region Preferences + #region Preferences declaration + /// + /// + /// + public partial class Preferences : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.prefs.Preferences"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Preferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Preferences() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Preferences class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Preferences(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Preferences implementation public partial class Preferences { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Prefs/PreferencesFactory.cs b/src/net/JNet/Generated/Java/Util/Prefs/PreferencesFactory.cs index 752acaa622..86c175623e 100644 --- a/src/net/JNet/Generated/Java/Util/Prefs/PreferencesFactory.cs +++ b/src/net/JNet/Generated/Java/Util/Prefs/PreferencesFactory.cs @@ -25,6 +25,53 @@ namespace Java.Util.Prefs { + #region PreferencesFactory declaration + /// + /// + /// + public partial class PreferencesFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.prefs.PreferencesFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PreferencesFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PreferencesFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PreferencesFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PreferencesFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPreferencesFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IPreferencesFactory } #endregion - #region PreferencesFactory + #region PreferencesFactory implementation public partial class PreferencesFactory : Java.Util.Prefs.IPreferencesFactory { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/PrimitiveIterator.cs b/src/net/JNet/Generated/Java/Util/PrimitiveIterator.cs index 791f718e80..88315b3400 100644 --- a/src/net/JNet/Generated/Java/Util/PrimitiveIterator.cs +++ b/src/net/JNet/Generated/Java/Util/PrimitiveIterator.cs @@ -25,7 +25,244 @@ namespace Java.Util { - #region PrimitiveIterator + #region PrimitiveIterator declaration + /// + /// + /// + public partial class PrimitiveIterator : Java.Util.Iterator + { + const string _bridgeClassName = "java.util.PrimitiveIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrimitiveIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrimitiveIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region OfDouble declaration + /// + /// + /// + public partial class OfDouble : Java.Util.PrimitiveIterator + { + const string _bridgeClassName = "java.util.PrimitiveIterator$OfDouble"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfDouble() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfDouble(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OfInt declaration + /// + /// + /// + public partial class OfInt : Java.Util.PrimitiveIterator + { + const string _bridgeClassName = "java.util.PrimitiveIterator$OfInt"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfInt() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfInt(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OfLong declaration + /// + /// + /// + public partial class OfLong : Java.Util.PrimitiveIterator + { + const string _bridgeClassName = "java.util.PrimitiveIterator$OfLong"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfLong() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfLong(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region PrimitiveIterator declaration + /// + /// + /// + /// + /// + public partial class PrimitiveIterator : Java.Util.Iterator + { + const string _bridgeClassName = "java.util.PrimitiveIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrimitiveIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrimitiveIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrimitiveIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrimitiveIterator implementation public partial class PrimitiveIterator { #region Constructors @@ -57,7 +294,7 @@ public void ForEachRemaining(object arg0) #endregion #region Nested classes - #region OfDouble + #region OfDouble implementation public partial class OfDouble { #region Constructors @@ -129,7 +366,7 @@ public void ForEachRemaining(Java.Util.Function.DoubleConsumer arg0) } #endregion - #region OfInt + #region OfInt implementation public partial class OfInt { #region Constructors @@ -201,7 +438,7 @@ public void ForEachRemaining(Java.Util.Function.IntConsumer arg0) } #endregion - #region OfLong + #region OfLong implementation public partial class OfLong { #region Constructors @@ -303,7 +540,7 @@ public partial interface IPrimitiveIterator } #endregion - #region PrimitiveIterator + #region PrimitiveIterator implementation public partial class PrimitiveIterator : Java.Util.IPrimitiveIterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/PriorityQueue.cs b/src/net/JNet/Generated/Java/Util/PriorityQueue.cs index ebffa46591..c6558ac7ed 100644 --- a/src/net/JNet/Generated/Java/Util/PriorityQueue.cs +++ b/src/net/JNet/Generated/Java/Util/PriorityQueue.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region PriorityQueue + #region PriorityQueue declaration + /// + /// + /// + public partial class PriorityQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.PriorityQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PriorityQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PriorityQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PriorityQueue declaration + /// + /// + /// + /// + public partial class PriorityQueue : Java.Util.AbstractQueue + { + const string _bridgeClassName = "java.util.PriorityQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PriorityQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PriorityQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PriorityQueue implementation public partial class PriorityQueue { #region Constructors @@ -117,7 +208,7 @@ public Java.Util.Comparator Comparator() } #endregion - #region PriorityQueue + #region PriorityQueue implementation public partial class PriorityQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Properties.cs b/src/net/JNet/Generated/Java/Util/Properties.cs index a2700cf21a..8fac781407 100644 --- a/src/net/JNet/Generated/Java/Util/Properties.cs +++ b/src/net/JNet/Generated/Java/Util/Properties.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Properties + #region Properties declaration + /// + /// + /// + public partial class Properties : Java.Util.Hashtable + { + const string _bridgeClassName = "java.util.Properties"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Properties() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Properties(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Properties implementation public partial class Properties { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/PropertyPermission.cs b/src/net/JNet/Generated/Java/Util/PropertyPermission.cs index dacc2e3ae4..50d5f73148 100644 --- a/src/net/JNet/Generated/Java/Util/PropertyPermission.cs +++ b/src/net/JNet/Generated/Java/Util/PropertyPermission.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region PropertyPermission + #region PropertyPermission declaration + /// + /// + /// + public partial class PropertyPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "java.util.PropertyPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyPermission implementation public partial class PropertyPermission { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/PropertyResourceBundle.cs b/src/net/JNet/Generated/Java/Util/PropertyResourceBundle.cs index ada24d2c62..b986c1f8d3 100644 --- a/src/net/JNet/Generated/Java/Util/PropertyResourceBundle.cs +++ b/src/net/JNet/Generated/Java/Util/PropertyResourceBundle.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region PropertyResourceBundle + #region PropertyResourceBundle declaration + /// + /// + /// + public partial class PropertyResourceBundle : Java.Util.ResourceBundle + { + const string _bridgeClassName = "java.util.PropertyResourceBundle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyResourceBundle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyResourceBundle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyResourceBundle implementation public partial class PropertyResourceBundle { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Queue.cs b/src/net/JNet/Generated/Java/Util/Queue.cs index 33e6e71209..53636676bf 100644 --- a/src/net/JNet/Generated/Java/Util/Queue.cs +++ b/src/net/JNet/Generated/Java/Util/Queue.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region Queue + #region Queue declaration + /// + /// + /// + public partial class Queue : Java.Util.Collection + { + const string _bridgeClassName = "java.util.Queue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Queue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Queue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Queue declaration + /// + /// + /// + /// + public partial class Queue : Java.Util.Collection + { + const string _bridgeClassName = "java.util.Queue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Queue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Queue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Queue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Queue implementation public partial class Queue { #region Constructors @@ -156,7 +251,7 @@ public partial interface IQueue : Java.Util.ICollection } #endregion - #region Queue + #region Queue implementation public partial class Queue : Java.Util.IQueue { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Random.cs b/src/net/JNet/Generated/Java/Util/Random.cs index 6f9912b0ed..d7f4d94a81 100644 --- a/src/net/JNet/Generated/Java/Util/Random.cs +++ b/src/net/JNet/Generated/Java/Util/Random.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Random + #region Random declaration + /// + /// + /// + public partial class Random : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.Random"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Random() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Random(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Random implementation public partial class Random { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/RandomAccess.cs b/src/net/JNet/Generated/Java/Util/RandomAccess.cs index 67fbcadbc1..22c8c884d8 100644 --- a/src/net/JNet/Generated/Java/Util/RandomAccess.cs +++ b/src/net/JNet/Generated/Java/Util/RandomAccess.cs @@ -25,6 +25,53 @@ namespace Java.Util { + #region RandomAccess declaration + /// + /// + /// + public partial class RandomAccess : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.RandomAccess"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RandomAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RandomAccess() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RandomAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RandomAccess(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRandomAccess /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IRandomAccess } #endregion - #region RandomAccess + #region RandomAccess implementation public partial class RandomAccess : Java.Util.IRandomAccess { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Regex/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Regex/AllPackageClasses.cs deleted file mode 100644 index f4c0dd3879..0000000000 --- a/src/net/JNet/Generated/Java/Util/Regex/AllPackageClasses.cs +++ /dev/null @@ -1,184 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Regex -{ - #region Matcher - /// - /// - /// - public partial class Matcher : Java.Util.Regex.MatchResult - { - const string _bridgeClassName = "java.util.regex.Matcher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Matcher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Matcher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MatchResult - /// - /// - /// - public partial class MatchResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.regex.MatchResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MatchResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MatchResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MatchResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MatchResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Pattern - /// - /// - /// - public partial class Pattern : Java.Io.Serializable - { - const string _bridgeClassName = "java.util.regex.Pattern"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Pattern() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Pattern(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PatternSyntaxException - /// - /// - /// - public partial class PatternSyntaxException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "java.util.regex.PatternSyntaxException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Regex/MatchResult.cs b/src/net/JNet/Generated/Java/Util/Regex/MatchResult.cs index 6940479ba9..18678206e0 100644 --- a/src/net/JNet/Generated/Java/Util/Regex/MatchResult.cs +++ b/src/net/JNet/Generated/Java/Util/Regex/MatchResult.cs @@ -25,6 +25,53 @@ namespace Java.Util.Regex { + #region MatchResult declaration + /// + /// + /// + public partial class MatchResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.regex.MatchResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MatchResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MatchResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MatchResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MatchResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMatchResult /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IMatchResult } #endregion - #region MatchResult + #region MatchResult implementation public partial class MatchResult : Java.Util.Regex.IMatchResult { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Regex/Matcher.cs b/src/net/JNet/Generated/Java/Util/Regex/Matcher.cs index d1537728a3..ef12f86a36 100644 --- a/src/net/JNet/Generated/Java/Util/Regex/Matcher.cs +++ b/src/net/JNet/Generated/Java/Util/Regex/Matcher.cs @@ -25,7 +25,52 @@ namespace Java.Util.Regex { - #region Matcher + #region Matcher declaration + /// + /// + /// + public partial class Matcher : Java.Util.Regex.MatchResult + { + const string _bridgeClassName = "java.util.regex.Matcher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Matcher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Matcher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Matcher implementation public partial class Matcher { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Regex/Pattern.cs b/src/net/JNet/Generated/Java/Util/Regex/Pattern.cs index 3188921922..fb8332b833 100644 --- a/src/net/JNet/Generated/Java/Util/Regex/Pattern.cs +++ b/src/net/JNet/Generated/Java/Util/Regex/Pattern.cs @@ -25,7 +25,52 @@ namespace Java.Util.Regex { - #region Pattern + #region Pattern declaration + /// + /// + /// + public partial class Pattern : Java.Io.Serializable + { + const string _bridgeClassName = "java.util.regex.Pattern"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Pattern() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Pattern(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Pattern implementation public partial class Pattern { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Regex/PatternSyntaxException.cs b/src/net/JNet/Generated/Java/Util/Regex/PatternSyntaxException.cs index bd377d4995..1debd13f7e 100644 --- a/src/net/JNet/Generated/Java/Util/Regex/PatternSyntaxException.cs +++ b/src/net/JNet/Generated/Java/Util/Regex/PatternSyntaxException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Regex { - #region PatternSyntaxException + #region PatternSyntaxException declaration + /// + /// + /// + public partial class PatternSyntaxException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "java.util.regex.PatternSyntaxException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PatternSyntaxException implementation public partial class PatternSyntaxException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ResourceBundle.cs b/src/net/JNet/Generated/Java/Util/ResourceBundle.cs index eee792cb14..bb7d12a1f4 100644 --- a/src/net/JNet/Generated/Java/Util/ResourceBundle.cs +++ b/src/net/JNet/Generated/Java/Util/ResourceBundle.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region ResourceBundle + #region ResourceBundle declaration + /// + /// + /// + public partial class ResourceBundle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.ResourceBundle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResourceBundle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResourceBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResourceBundle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Control declaration + /// + /// + /// + public partial class Control : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.ResourceBundle$Control"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Control() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Control(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ResourceBundle implementation public partial class ResourceBundle { #region Constructors @@ -213,7 +305,7 @@ public Java.Lang.String[] GetStringArray(Java.Lang.String arg0) #endregion #region Nested classes - #region Control + #region Control implementation public partial class Control { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Scanner.cs b/src/net/JNet/Generated/Java/Util/Scanner.cs index 7d9d6a4fd1..e86c832b3d 100644 --- a/src/net/JNet/Generated/Java/Util/Scanner.cs +++ b/src/net/JNet/Generated/Java/Util/Scanner.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Scanner + #region Scanner declaration + /// + /// + /// + public partial class Scanner : Java.Util.Iterator + { + const string _bridgeClassName = "java.util.Scanner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Scanner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Scanner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Scanner implementation public partial class Scanner { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ServiceConfigurationError.cs b/src/net/JNet/Generated/Java/Util/ServiceConfigurationError.cs index 238ee331de..9590f70f2b 100644 --- a/src/net/JNet/Generated/Java/Util/ServiceConfigurationError.cs +++ b/src/net/JNet/Generated/Java/Util/ServiceConfigurationError.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region ServiceConfigurationError + #region ServiceConfigurationError declaration + /// + /// + /// + public partial class ServiceConfigurationError : Java.Lang.Error + { + const string _bridgeClassName = "java.util.ServiceConfigurationError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServiceConfigurationError implementation public partial class ServiceConfigurationError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/ServiceLoader.cs b/src/net/JNet/Generated/Java/Util/ServiceLoader.cs index e21e05321d..30e6ab6bf0 100644 --- a/src/net/JNet/Generated/Java/Util/ServiceLoader.cs +++ b/src/net/JNet/Generated/Java/Util/ServiceLoader.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region ServiceLoader + #region ServiceLoader declaration + /// + /// + /// + public partial class ServiceLoader : Java.Lang.Iterable + { + const string _bridgeClassName = "java.util.ServiceLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ServiceLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ServiceLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServiceLoader declaration + /// + /// + /// + /// + public partial class ServiceLoader : Java.Lang.Iterable + { + const string _bridgeClassName = "java.util.ServiceLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ServiceLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ServiceLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServiceLoader implementation public partial class ServiceLoader { #region Constructors @@ -117,7 +208,7 @@ public void Reload() } #endregion - #region ServiceLoader + #region ServiceLoader implementation public partial class ServiceLoader { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Set.cs b/src/net/JNet/Generated/Java/Util/Set.cs index 96c85bc6d0..2f690eb820 100644 --- a/src/net/JNet/Generated/Java/Util/Set.cs +++ b/src/net/JNet/Generated/Java/Util/Set.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region Set + #region Set declaration + /// + /// + /// + public partial class Set : Java.Util.Collection + { + const string _bridgeClassName = "java.util.Set"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Set() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Set(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Set declaration + /// + /// + /// + /// + public partial class Set : Java.Util.Collection + { + const string _bridgeClassName = "java.util.Set"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Set() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Set class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Set(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Set implementation public partial class Set { #region Constructors @@ -433,7 +528,7 @@ public partial interface ISet : Java.Util.ICollection } #endregion - #region Set + #region Set implementation public partial class Set : Java.Util.ISet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/SimpleTimeZone.cs b/src/net/JNet/Generated/Java/Util/SimpleTimeZone.cs index 2e290f4923..2019bc302e 100644 --- a/src/net/JNet/Generated/Java/Util/SimpleTimeZone.cs +++ b/src/net/JNet/Generated/Java/Util/SimpleTimeZone.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region SimpleTimeZone + #region SimpleTimeZone declaration + /// + /// + /// + public partial class SimpleTimeZone : Java.Util.TimeZone + { + const string _bridgeClassName = "java.util.SimpleTimeZone"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTimeZone() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTimeZone(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTimeZone implementation public partial class SimpleTimeZone { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/SortedMap.cs b/src/net/JNet/Generated/Java/Util/SortedMap.cs index ad6fa4c371..66f4e7e72f 100644 --- a/src/net/JNet/Generated/Java/Util/SortedMap.cs +++ b/src/net/JNet/Generated/Java/Util/SortedMap.cs @@ -25,7 +25,103 @@ namespace Java.Util { - #region SortedMap + #region SortedMap declaration + /// + /// + /// + public partial class SortedMap : Java.Util.Map + { + const string _bridgeClassName = "java.util.SortedMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortedMap declaration + /// + /// + /// + /// + /// + public partial class SortedMap : Java.Util.Map + { + const string _bridgeClassName = "java.util.SortedMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SortedMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortedMap implementation public partial class SortedMap { #region Constructors @@ -200,7 +296,7 @@ public partial interface ISortedMap : Java.Util.IMap } #endregion - #region SortedMap + #region SortedMap implementation public partial class SortedMap : Java.Util.ISortedMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/SortedSet.cs b/src/net/JNet/Generated/Java/Util/SortedSet.cs index 7966966116..74f2daac77 100644 --- a/src/net/JNet/Generated/Java/Util/SortedSet.cs +++ b/src/net/JNet/Generated/Java/Util/SortedSet.cs @@ -25,7 +25,102 @@ namespace Java.Util { - #region SortedSet + #region SortedSet declaration + /// + /// + /// + public partial class SortedSet : Java.Util.Set + { + const string _bridgeClassName = "java.util.SortedSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortedSet declaration + /// + /// + /// + /// + public partial class SortedSet : Java.Util.Set + { + const string _bridgeClassName = "java.util.SortedSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SortedSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SortedSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortedSet implementation public partial class SortedSet { #region Constructors @@ -174,7 +269,7 @@ public partial interface ISortedSet : Java.Util.ISet } #endregion - #region SortedSet + #region SortedSet implementation public partial class SortedSet : Java.Util.ISortedSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/AbstractResourceBundleProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/AbstractResourceBundleProvider.cs index a60b378640..9a9ea55527 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/AbstractResourceBundleProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/AbstractResourceBundleProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region AbstractResourceBundleProvider + #region AbstractResourceBundleProvider declaration + /// + /// + /// + public partial class AbstractResourceBundleProvider : Java.Util.Spi.ResourceBundleProvider + { + const string _bridgeClassName = "java.util.spi.AbstractResourceBundleProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractResourceBundleProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractResourceBundleProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractResourceBundleProvider implementation public partial class AbstractResourceBundleProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Spi/AllPackageClasses.cs deleted file mode 100644 index a94f115eda..0000000000 --- a/src/net/JNet/Generated/Java/Util/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,500 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Spi -{ - #region AbstractResourceBundleProvider - /// - /// - /// - public partial class AbstractResourceBundleProvider : Java.Util.Spi.ResourceBundleProvider - { - const string _bridgeClassName = "java.util.spi.AbstractResourceBundleProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractResourceBundleProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractResourceBundleProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CalendarDataProvider - /// - /// - /// - public partial class CalendarDataProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.util.spi.CalendarDataProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CalendarDataProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CalendarDataProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CalendarDataProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CalendarDataProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CalendarNameProvider - /// - /// - /// - public partial class CalendarNameProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.util.spi.CalendarNameProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CalendarNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CalendarNameProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CalendarNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CalendarNameProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CurrencyNameProvider - /// - /// - /// - public partial class CurrencyNameProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.util.spi.CurrencyNameProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CurrencyNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CurrencyNameProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CurrencyNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CurrencyNameProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LocaleNameProvider - /// - /// - /// - public partial class LocaleNameProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.util.spi.LocaleNameProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LocaleNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LocaleNameProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LocaleNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LocaleNameProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LocaleServiceProvider - /// - /// - /// - public partial class LocaleServiceProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.spi.LocaleServiceProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LocaleServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LocaleServiceProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LocaleServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LocaleServiceProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResourceBundleControlProvider - /// - /// - /// - public partial class ResourceBundleControlProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.spi.ResourceBundleControlProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResourceBundleControlProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResourceBundleControlProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResourceBundleControlProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResourceBundleControlProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResourceBundleProvider - /// - /// - /// - public partial class ResourceBundleProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.spi.ResourceBundleProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResourceBundleProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResourceBundleProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TimeZoneNameProvider - /// - /// - /// - public partial class TimeZoneNameProvider : Java.Util.Spi.LocaleServiceProvider - { - const string _bridgeClassName = "java.util.spi.TimeZoneNameProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TimeZoneNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimeZoneNameProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TimeZoneNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimeZoneNameProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ToolProvider - /// - /// - /// - public partial class ToolProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.spi.ToolProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ToolProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ToolProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ToolProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ToolProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Spi/CalendarDataProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/CalendarDataProvider.cs index 4ee0e32805..210eca74e5 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/CalendarDataProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/CalendarDataProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region CalendarDataProvider + #region CalendarDataProvider declaration + /// + /// + /// + public partial class CalendarDataProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.util.spi.CalendarDataProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CalendarDataProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CalendarDataProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CalendarDataProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CalendarDataProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CalendarDataProvider implementation public partial class CalendarDataProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/CalendarNameProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/CalendarNameProvider.cs index dfce9a7a6c..cadd91a662 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/CalendarNameProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/CalendarNameProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region CalendarNameProvider + #region CalendarNameProvider declaration + /// + /// + /// + public partial class CalendarNameProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.util.spi.CalendarNameProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CalendarNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CalendarNameProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CalendarNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CalendarNameProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CalendarNameProvider implementation public partial class CalendarNameProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/CurrencyNameProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/CurrencyNameProvider.cs index 4091c402fe..8e43f18513 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/CurrencyNameProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/CurrencyNameProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region CurrencyNameProvider + #region CurrencyNameProvider declaration + /// + /// + /// + public partial class CurrencyNameProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.util.spi.CurrencyNameProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CurrencyNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CurrencyNameProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CurrencyNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CurrencyNameProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CurrencyNameProvider implementation public partial class CurrencyNameProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/LocaleNameProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/LocaleNameProvider.cs index 7687d0816f..f88c416b33 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/LocaleNameProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/LocaleNameProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region LocaleNameProvider + #region LocaleNameProvider declaration + /// + /// + /// + public partial class LocaleNameProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.util.spi.LocaleNameProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LocaleNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LocaleNameProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LocaleNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LocaleNameProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocaleNameProvider implementation public partial class LocaleNameProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/LocaleServiceProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/LocaleServiceProvider.cs index 9aaaab8e29..1a71251a91 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/LocaleServiceProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/LocaleServiceProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region LocaleServiceProvider + #region LocaleServiceProvider declaration + /// + /// + /// + public partial class LocaleServiceProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.spi.LocaleServiceProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LocaleServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LocaleServiceProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LocaleServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LocaleServiceProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocaleServiceProvider implementation public partial class LocaleServiceProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleControlProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleControlProvider.cs index bca4470d18..91c7f0c12a 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleControlProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleControlProvider.cs @@ -25,6 +25,53 @@ namespace Java.Util.Spi { + #region ResourceBundleControlProvider declaration + /// + /// + /// + public partial class ResourceBundleControlProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.spi.ResourceBundleControlProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResourceBundleControlProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResourceBundleControlProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResourceBundleControlProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResourceBundleControlProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IResourceBundleControlProvider /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IResourceBundleControlProvider } #endregion - #region ResourceBundleControlProvider + #region ResourceBundleControlProvider implementation public partial class ResourceBundleControlProvider : Java.Util.Spi.IResourceBundleControlProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleProvider.cs index 7ebed41709..3f18a500a4 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/ResourceBundleProvider.cs @@ -25,6 +25,53 @@ namespace Java.Util.Spi { + #region ResourceBundleProvider declaration + /// + /// + /// + public partial class ResourceBundleProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.spi.ResourceBundleProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResourceBundleProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResourceBundleProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResourceBundleProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IResourceBundleProvider /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IResourceBundleProvider } #endregion - #region ResourceBundleProvider + #region ResourceBundleProvider implementation public partial class ResourceBundleProvider : Java.Util.Spi.IResourceBundleProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/TimeZoneNameProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/TimeZoneNameProvider.cs index 1fb6571d9b..9960658614 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/TimeZoneNameProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/TimeZoneNameProvider.cs @@ -25,7 +25,54 @@ namespace Java.Util.Spi { - #region TimeZoneNameProvider + #region TimeZoneNameProvider declaration + /// + /// + /// + public partial class TimeZoneNameProvider : Java.Util.Spi.LocaleServiceProvider + { + const string _bridgeClassName = "java.util.spi.TimeZoneNameProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TimeZoneNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimeZoneNameProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TimeZoneNameProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimeZoneNameProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TimeZoneNameProvider implementation public partial class TimeZoneNameProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spi/ToolProvider.cs b/src/net/JNet/Generated/Java/Util/Spi/ToolProvider.cs index 22093a3b11..8129efe7d3 100644 --- a/src/net/JNet/Generated/Java/Util/Spi/ToolProvider.cs +++ b/src/net/JNet/Generated/Java/Util/Spi/ToolProvider.cs @@ -25,6 +25,53 @@ namespace Java.Util.Spi { + #region ToolProvider declaration + /// + /// + /// + public partial class ToolProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.spi.ToolProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ToolProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ToolProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ToolProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ToolProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IToolProvider /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface IToolProvider } #endregion - #region ToolProvider + #region ToolProvider implementation public partial class ToolProvider : Java.Util.Spi.IToolProvider { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spliterator.cs b/src/net/JNet/Generated/Java/Util/Spliterator.cs index c529003aa1..37b08affaf 100644 --- a/src/net/JNet/Generated/Java/Util/Spliterator.cs +++ b/src/net/JNet/Generated/Java/Util/Spliterator.cs @@ -25,7 +25,340 @@ namespace Java.Util { - #region Spliterator + #region Spliterator declaration + /// + /// + /// + public partial class Spliterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Spliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Spliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Spliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region OfDouble declaration + /// + /// + /// + public partial class OfDouble : Java.Util.Spliterator.OfPrimitive + { + const string _bridgeClassName = "java.util.Spliterator$OfDouble"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfDouble() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfDouble class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfDouble(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OfInt declaration + /// + /// + /// + public partial class OfInt : Java.Util.Spliterator.OfPrimitive + { + const string _bridgeClassName = "java.util.Spliterator$OfInt"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfInt() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfInt class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfInt(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OfLong declaration + /// + /// + /// + public partial class OfLong : Java.Util.Spliterator.OfPrimitive + { + const string _bridgeClassName = "java.util.Spliterator$OfLong"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfLong() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfLong class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfLong(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OfPrimitive declaration + /// + /// + /// + public partial class OfPrimitive : Java.Util.Spliterator + { + const string _bridgeClassName = "java.util.Spliterator$OfPrimitive"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfPrimitive() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfPrimitive(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OfPrimitive declaration + /// + /// + /// + /// + /// + /// + public partial class OfPrimitive : Java.Util.Spliterator where T_SPLITR : Java.Util.Spliterator.OfPrimitive + { + const string _bridgeClassName = "java.util.Spliterator$OfPrimitive"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfPrimitive() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OfPrimitive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OfPrimitive(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Spliterator declaration + /// + /// + /// + /// + public partial class Spliterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.Spliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Spliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Spliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Spliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Spliterator implementation public partial class Spliterator { #region Constructors @@ -161,7 +494,7 @@ public void ForEachRemaining(Java.Util.Function.Consumer arg0) #endregion #region Nested classes - #region OfDouble + #region OfDouble implementation public partial class OfDouble { #region Constructors @@ -253,7 +586,7 @@ public void ForEachRemaining(Java.Util.Function.DoubleConsumer arg0) } #endregion - #region OfInt + #region OfInt implementation public partial class OfInt { #region Constructors @@ -345,7 +678,7 @@ public void ForEachRemaining(Java.Util.Function.IntConsumer arg0) } #endregion - #region OfLong + #region OfLong implementation public partial class OfLong { #region Constructors @@ -437,7 +770,7 @@ public void ForEachRemaining(Java.Util.Function.LongConsumer arg0) } #endregion - #region OfPrimitive + #region OfPrimitive implementation public partial class OfPrimitive { #region Constructors @@ -493,7 +826,7 @@ public void ForEachRemaining(object arg0) } #endregion - #region OfPrimitive + #region OfPrimitive implementation public partial class OfPrimitive { #region Constructors @@ -620,7 +953,7 @@ public partial interface ISpliterator } #endregion - #region Spliterator + #region Spliterator implementation public partial class Spliterator : Java.Util.ISpliterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Spliterators.cs b/src/net/JNet/Generated/Java/Util/Spliterators.cs index a080f8b8fb..84309e27a2 100644 --- a/src/net/JNet/Generated/Java/Util/Spliterators.cs +++ b/src/net/JNet/Generated/Java/Util/Spliterators.cs @@ -25,7 +25,288 @@ namespace Java.Util { - #region Spliterators + #region Spliterators declaration + /// + /// + /// + public partial class Spliterators : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Spliterators"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Spliterators() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Spliterators(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AbstractDoubleSpliterator declaration + /// + /// + /// + public partial class AbstractDoubleSpliterator : Java.Util.Spliterator.OfDouble + { + const string _bridgeClassName = "java.util.Spliterators$AbstractDoubleSpliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractDoubleSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractDoubleSpliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractDoubleSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractDoubleSpliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region AbstractIntSpliterator declaration + /// + /// + /// + public partial class AbstractIntSpliterator : Java.Util.Spliterator.OfInt + { + const string _bridgeClassName = "java.util.Spliterators$AbstractIntSpliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractIntSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractIntSpliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractIntSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractIntSpliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region AbstractLongSpliterator declaration + /// + /// + /// + public partial class AbstractLongSpliterator : Java.Util.Spliterator.OfLong + { + const string _bridgeClassName = "java.util.Spliterators$AbstractLongSpliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractLongSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractLongSpliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractLongSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractLongSpliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region AbstractSpliterator declaration + /// + /// + /// + public partial class AbstractSpliterator : Java.Util.Spliterator + { + const string _bridgeClassName = "java.util.Spliterators$AbstractSpliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSpliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSpliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region AbstractSpliterator declaration + /// + /// + /// + /// + public partial class AbstractSpliterator : Java.Util.Spliterator + { + const string _bridgeClassName = "java.util.Spliterators$AbstractSpliterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSpliterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSpliterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSpliterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Spliterators implementation public partial class Spliterators { #region Constructors @@ -310,7 +591,7 @@ public static Java.Util.Spliterator.OfLong SpliteratorUnknownSize(Java.Util.Prim #endregion #region Nested classes - #region AbstractDoubleSpliterator + #region AbstractDoubleSpliterator implementation public partial class AbstractDoubleSpliterator { #region Constructors @@ -365,7 +646,7 @@ public long EstimateSize() } #endregion - #region AbstractIntSpliterator + #region AbstractIntSpliterator implementation public partial class AbstractIntSpliterator { #region Constructors @@ -420,7 +701,7 @@ public long EstimateSize() } #endregion - #region AbstractLongSpliterator + #region AbstractLongSpliterator implementation public partial class AbstractLongSpliterator { #region Constructors @@ -475,7 +756,7 @@ public long EstimateSize() } #endregion - #region AbstractSpliterator + #region AbstractSpliterator implementation public partial class AbstractSpliterator { #region Constructors @@ -530,7 +811,7 @@ public long EstimateSize() } #endregion - #region AbstractSpliterator + #region AbstractSpliterator implementation public partial class AbstractSpliterator { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/SplittableRandom.cs b/src/net/JNet/Generated/Java/Util/SplittableRandom.cs index c45f201221..d3576021bd 100644 --- a/src/net/JNet/Generated/Java/Util/SplittableRandom.cs +++ b/src/net/JNet/Generated/Java/Util/SplittableRandom.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region SplittableRandom + #region SplittableRandom declaration + /// + /// + /// + public partial class SplittableRandom : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.SplittableRandom"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SplittableRandom() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SplittableRandom(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SplittableRandom implementation public partial class SplittableRandom { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Stack.cs b/src/net/JNet/Generated/Java/Util/Stack.cs index 9b40864169..d09351500a 100644 --- a/src/net/JNet/Generated/Java/Util/Stack.cs +++ b/src/net/JNet/Generated/Java/Util/Stack.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region Stack + #region Stack declaration + /// + /// + /// + public partial class Stack : Java.Util.Vector + { + const string _bridgeClassName = "java.util.Stack"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Stack() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Stack(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Stack declaration + /// + /// + /// + /// + public partial class Stack : Java.Util.Vector + { + const string _bridgeClassName = "java.util.Stack"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Stack() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Stack(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Stack implementation public partial class Stack { #region Constructors @@ -98,7 +189,7 @@ public int Search(object arg0) } #endregion - #region Stack + #region Stack implementation public partial class Stack { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Stream/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Stream/AllPackageClasses.cs deleted file mode 100644 index 8ca41bea12..0000000000 --- a/src/net/JNet/Generated/Java/Util/Stream/AllPackageClasses.cs +++ /dev/null @@ -1,594 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Stream -{ - #region BaseStream - /// - /// - /// - public partial class BaseStream : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "java.util.stream.BaseStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BaseStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BaseStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BaseStream - /// - /// - /// - /// - /// - public partial class BaseStream : Java.Lang.AutoCloseable where S : Java.Util.Stream.BaseStream - { - const string _bridgeClassName = "java.util.stream.BaseStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BaseStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BaseStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Collector - /// - /// - /// - public partial class Collector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.stream.Collector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Characteristics - /// - /// - /// - public partial class Characteristics : Java.Lang.Enum - { - const string _bridgeClassName = "java.util.stream.Collector$Characteristics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Characteristics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Characteristics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Collector - /// - /// - /// - /// - /// - /// - public partial class Collector : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "java.util.stream.Collector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Collector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Collectors - /// - /// - /// - public partial class Collectors : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.stream.Collectors"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Collectors() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Collectors(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DoubleStream - /// - /// - /// - public partial class DoubleStream : Java.Util.Stream.BaseStream - { - const string _bridgeClassName = "java.util.stream.DoubleStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DoubleStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DoubleStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DoubleStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DoubleStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IntStream - /// - /// - /// - public partial class IntStream : Java.Util.Stream.BaseStream - { - const string _bridgeClassName = "java.util.stream.IntStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IntStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IntStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LongStream - /// - /// - /// - public partial class LongStream : Java.Util.Stream.BaseStream - { - const string _bridgeClassName = "java.util.stream.LongStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LongStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LongStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LongStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LongStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Stream - /// - /// - /// - public partial class Stream : Java.Util.Stream.BaseStream - { - const string _bridgeClassName = "java.util.stream.Stream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Stream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Stream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Stream - /// - /// - /// - /// - public partial class Stream : Java.Util.Stream.BaseStream> - { - const string _bridgeClassName = "java.util.stream.Stream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Stream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Stream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamSupport - /// - /// - /// - public partial class StreamSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.stream.StreamSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StreamSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StreamSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Stream/BaseStream.cs b/src/net/JNet/Generated/Java/Util/Stream/BaseStream.cs index 013486147f..b30d2f2465 100644 --- a/src/net/JNet/Generated/Java/Util/Stream/BaseStream.cs +++ b/src/net/JNet/Generated/Java/Util/Stream/BaseStream.cs @@ -25,7 +25,103 @@ namespace Java.Util.Stream { - #region BaseStream + #region BaseStream declaration + /// + /// + /// + public partial class BaseStream : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "java.util.stream.BaseStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BaseStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BaseStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BaseStream declaration + /// + /// + /// + /// + /// + public partial class BaseStream : Java.Lang.AutoCloseable where S : Java.Util.Stream.BaseStream + { + const string _bridgeClassName = "java.util.stream.BaseStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BaseStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BaseStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BaseStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BaseStream implementation public partial class BaseStream { #region Constructors @@ -178,7 +274,7 @@ public partial interface IBaseStream : Java.Lang.IAutoCloseable } #endregion - #region BaseStream + #region BaseStream implementation public partial class BaseStream : Java.Util.Stream.IBaseStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Stream/Collector.cs b/src/net/JNet/Generated/Java/Util/Stream/Collector.cs index f19f8c7cca..e283bb106f 100644 --- a/src/net/JNet/Generated/Java/Util/Stream/Collector.cs +++ b/src/net/JNet/Generated/Java/Util/Stream/Collector.cs @@ -25,7 +25,149 @@ namespace Java.Util.Stream { - #region Collector + #region Collector declaration + /// + /// + /// + public partial class Collector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.stream.Collector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Characteristics declaration + /// + /// + /// + public partial class Characteristics : Java.Lang.Enum + { + const string _bridgeClassName = "java.util.stream.Collector$Characteristics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Characteristics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Characteristics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Collector declaration + /// + /// + /// + /// + /// + /// + public partial class Collector : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "java.util.stream.Collector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Collector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Collector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Collector implementation public partial class Collector { #region Constructors @@ -146,7 +288,7 @@ public Java.Util.Set CharacteristicsMethod() #endregion #region Nested classes - #region Characteristics + #region Characteristics implementation public partial class Characteristics { #region Constructors @@ -282,7 +424,7 @@ public partial interface ICollector } #endregion - #region Collector + #region Collector implementation public partial class Collector : Java.Util.Stream.ICollector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Stream/Collectors.cs b/src/net/JNet/Generated/Java/Util/Stream/Collectors.cs index b63d2c4382..e661b089f4 100644 --- a/src/net/JNet/Generated/Java/Util/Stream/Collectors.cs +++ b/src/net/JNet/Generated/Java/Util/Stream/Collectors.cs @@ -25,7 +25,52 @@ namespace Java.Util.Stream { - #region Collectors + #region Collectors declaration + /// + /// + /// + public partial class Collectors : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.stream.Collectors"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Collectors() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Collectors(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Collectors implementation public partial class Collectors { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Stream/DoubleStream.cs b/src/net/JNet/Generated/Java/Util/Stream/DoubleStream.cs index dedf4055af..dc6c44e5c6 100644 --- a/src/net/JNet/Generated/Java/Util/Stream/DoubleStream.cs +++ b/src/net/JNet/Generated/Java/Util/Stream/DoubleStream.cs @@ -25,6 +25,53 @@ namespace Java.Util.Stream { + #region DoubleStream declaration + /// + /// + /// + public partial class DoubleStream : Java.Util.Stream.BaseStream + { + const string _bridgeClassName = "java.util.stream.DoubleStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DoubleStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DoubleStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DoubleStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DoubleStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDoubleStream /// /// .NET interface for TO BE DEFINED FROM USER @@ -242,7 +289,7 @@ public partial interface IDoubleStream : Java.Util.Stream.IBaseStream + /// + /// + public partial class IntStream : Java.Util.Stream.BaseStream + { + const string _bridgeClassName = "java.util.stream.IntStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IntStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IntStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IIntStream /// /// .NET interface for TO BE DEFINED FROM USER @@ -252,7 +299,7 @@ public partial interface IIntStream : Java.Util.Stream.IBaseStream + /// + /// + public partial class LongStream : Java.Util.Stream.BaseStream + { + const string _bridgeClassName = "java.util.stream.LongStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LongStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LongStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LongStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LongStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILongStream /// /// .NET interface for TO BE DEFINED FROM USER @@ -247,7 +294,7 @@ public partial interface ILongStream : Java.Util.Stream.IBaseStream + /// + /// + public partial class Stream : Java.Util.Stream.BaseStream + { + const string _bridgeClassName = "java.util.stream.Stream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Stream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Stream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Stream declaration + /// + /// + /// + /// + public partial class Stream : Java.Util.Stream.BaseStream> + { + const string _bridgeClassName = "java.util.stream.Stream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Stream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Stream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Stream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Stream implementation public partial class Stream { #region Constructors @@ -689,7 +784,7 @@ public partial interface IStream : Java.Util.Stream.IBaseStream + #region Stream implementation public partial class Stream : Java.Util.Stream.IStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Stream/StreamSupport.cs b/src/net/JNet/Generated/Java/Util/Stream/StreamSupport.cs index 26617958df..ae70c51565 100644 --- a/src/net/JNet/Generated/Java/Util/Stream/StreamSupport.cs +++ b/src/net/JNet/Generated/Java/Util/Stream/StreamSupport.cs @@ -25,7 +25,52 @@ namespace Java.Util.Stream { - #region StreamSupport + #region StreamSupport declaration + /// + /// + /// + public partial class StreamSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.stream.StreamSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StreamSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StreamSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamSupport implementation public partial class StreamSupport { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/StringJoiner.cs b/src/net/JNet/Generated/Java/Util/StringJoiner.cs index cd9fceb4bb..093db696d7 100644 --- a/src/net/JNet/Generated/Java/Util/StringJoiner.cs +++ b/src/net/JNet/Generated/Java/Util/StringJoiner.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region StringJoiner + #region StringJoiner declaration + /// + /// + /// + public partial class StringJoiner : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.StringJoiner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringJoiner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringJoiner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringJoiner implementation public partial class StringJoiner { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/StringTokenizer.cs b/src/net/JNet/Generated/Java/Util/StringTokenizer.cs index c20168a96f..890af8828a 100644 --- a/src/net/JNet/Generated/Java/Util/StringTokenizer.cs +++ b/src/net/JNet/Generated/Java/Util/StringTokenizer.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region StringTokenizer + #region StringTokenizer declaration + /// + /// + /// + public partial class StringTokenizer : Java.Util.Enumeration + { + const string _bridgeClassName = "java.util.StringTokenizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringTokenizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringTokenizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringTokenizer implementation public partial class StringTokenizer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/TimeZone.cs b/src/net/JNet/Generated/Java/Util/TimeZone.cs index 205c22e0cf..b678ddb11f 100644 --- a/src/net/JNet/Generated/Java/Util/TimeZone.cs +++ b/src/net/JNet/Generated/Java/Util/TimeZone.cs @@ -25,7 +25,54 @@ namespace Java.Util { - #region TimeZone + #region TimeZone declaration + /// + /// + /// + public partial class TimeZone : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.TimeZone"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TimeZone class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimeZone() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TimeZone class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimeZone(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TimeZone implementation public partial class TimeZone { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Timer.cs b/src/net/JNet/Generated/Java/Util/Timer.cs index 89d392825e..7cea250416 100644 --- a/src/net/JNet/Generated/Java/Util/Timer.cs +++ b/src/net/JNet/Generated/Java/Util/Timer.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region Timer + #region Timer declaration + /// + /// + /// + public partial class Timer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.Timer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Timer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Timer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Timer implementation public partial class Timer { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/TimerTask.cs b/src/net/JNet/Generated/Java/Util/TimerTask.cs index 0ab448e0a4..799aef49a4 100644 --- a/src/net/JNet/Generated/Java/Util/TimerTask.cs +++ b/src/net/JNet/Generated/Java/Util/TimerTask.cs @@ -25,7 +25,54 @@ namespace Java.Util { - #region TimerTask + #region TimerTask declaration + /// + /// + /// + public partial class TimerTask : Java.Lang.Runnable + { + const string _bridgeClassName = "java.util.TimerTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TimerTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimerTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TimerTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimerTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TimerTask implementation public partial class TimerTask { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/TooManyListenersException.cs b/src/net/JNet/Generated/Java/Util/TooManyListenersException.cs index 0ec12435cc..ab0fbca8f5 100644 --- a/src/net/JNet/Generated/Java/Util/TooManyListenersException.cs +++ b/src/net/JNet/Generated/Java/Util/TooManyListenersException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region TooManyListenersException + #region TooManyListenersException declaration + /// + /// + /// + public partial class TooManyListenersException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.TooManyListenersException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TooManyListenersException implementation public partial class TooManyListenersException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/TreeMap.cs b/src/net/JNet/Generated/Java/Util/TreeMap.cs index d736085eb2..17304e7c50 100644 --- a/src/net/JNet/Generated/Java/Util/TreeMap.cs +++ b/src/net/JNet/Generated/Java/Util/TreeMap.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region TreeMap + #region TreeMap declaration + /// + /// + /// + public partial class TreeMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.TreeMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeMap declaration + /// + /// + /// + /// + /// + public partial class TreeMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.TreeMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeMap implementation public partial class TreeMap { #region Constructors @@ -304,7 +396,7 @@ public object LowerKey(object arg0) } #endregion - #region TreeMap + #region TreeMap implementation public partial class TreeMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/TreeSet.cs b/src/net/JNet/Generated/Java/Util/TreeSet.cs index ff38ec0429..1442bfa222 100644 --- a/src/net/JNet/Generated/Java/Util/TreeSet.cs +++ b/src/net/JNet/Generated/Java/Util/TreeSet.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region TreeSet + #region TreeSet declaration + /// + /// + /// + public partial class TreeSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.TreeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeSet declaration + /// + /// + /// + /// + public partial class TreeSet : Java.Util.AbstractSet + { + const string _bridgeClassName = "java.util.TreeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeSet implementation public partial class TreeSet { #region Constructors @@ -244,7 +335,7 @@ public Java.Util.SortedSet TailSet(object arg0) } #endregion - #region TreeSet + #region TreeSet implementation public partial class TreeSet { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/UUID.cs b/src/net/JNet/Generated/Java/Util/UUID.cs index c073d4f0aa..885c3bd5bc 100644 --- a/src/net/JNet/Generated/Java/Util/UUID.cs +++ b/src/net/JNet/Generated/Java/Util/UUID.cs @@ -25,7 +25,52 @@ namespace Java.Util { - #region UUID + #region UUID declaration + /// + /// + /// + public partial class UUID : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.UUID"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UUID() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UUID(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UUID implementation public partial class UUID { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/UnknownFormatConversionException.cs b/src/net/JNet/Generated/Java/Util/UnknownFormatConversionException.cs index 3c37891118..f24aeadf58 100644 --- a/src/net/JNet/Generated/Java/Util/UnknownFormatConversionException.cs +++ b/src/net/JNet/Generated/Java/Util/UnknownFormatConversionException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region UnknownFormatConversionException + #region UnknownFormatConversionException declaration + /// + /// + /// + public partial class UnknownFormatConversionException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.UnknownFormatConversionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownFormatConversionException implementation public partial class UnknownFormatConversionException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/UnknownFormatFlagsException.cs b/src/net/JNet/Generated/Java/Util/UnknownFormatFlagsException.cs index 038c66a024..c484ed2e7b 100644 --- a/src/net/JNet/Generated/Java/Util/UnknownFormatFlagsException.cs +++ b/src/net/JNet/Generated/Java/Util/UnknownFormatFlagsException.cs @@ -25,7 +25,24 @@ namespace Java.Util { - #region UnknownFormatFlagsException + #region UnknownFormatFlagsException declaration + /// + /// + /// + public partial class UnknownFormatFlagsException : Java.Util.IllegalFormatException + { + const string _bridgeClassName = "java.util.UnknownFormatFlagsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownFormatFlagsException implementation public partial class UnknownFormatFlagsException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Vector.cs b/src/net/JNet/Generated/Java/Util/Vector.cs index 928e13b5c1..e8eccd52fb 100644 --- a/src/net/JNet/Generated/Java/Util/Vector.cs +++ b/src/net/JNet/Generated/Java/Util/Vector.cs @@ -25,7 +25,98 @@ namespace Java.Util { - #region Vector + #region Vector declaration + /// + /// + /// + public partial class Vector : Java.Util.AbstractList + { + const string _bridgeClassName = "java.util.Vector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Vector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Vector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Vector declaration + /// + /// + /// + /// + public partial class Vector : Java.Util.AbstractList + { + const string _bridgeClassName = "java.util.Vector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Vector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Vector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Vector implementation public partial class Vector { #region Constructors @@ -235,7 +326,7 @@ public void TrimToSize() } #endregion - #region Vector + #region Vector implementation public partial class Vector { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/WeakHashMap.cs b/src/net/JNet/Generated/Java/Util/WeakHashMap.cs index 085924292d..17a13a8f36 100644 --- a/src/net/JNet/Generated/Java/Util/WeakHashMap.cs +++ b/src/net/JNet/Generated/Java/Util/WeakHashMap.cs @@ -25,7 +25,99 @@ namespace Java.Util { - #region WeakHashMap + #region WeakHashMap declaration + /// + /// + /// + public partial class WeakHashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.WeakHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WeakHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WeakHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WeakHashMap declaration + /// + /// + /// + /// + /// + public partial class WeakHashMap : Java.Util.AbstractMap + { + const string _bridgeClassName = "java.util.WeakHashMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WeakHashMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WeakHashMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WeakHashMap implementation public partial class WeakHashMap { #region Constructors @@ -81,7 +173,7 @@ public WeakHashMap(Java.Util.Map arg0) } #endregion - #region WeakHashMap + #region WeakHashMap implementation public partial class WeakHashMap { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/Adler32.cs b/src/net/JNet/Generated/Java/Util/Zip/Adler32.cs index 528363882d..177ffdce7b 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/Adler32.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/Adler32.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region Adler32 + #region Adler32 declaration + /// + /// + /// + public partial class Adler32 : Java.Util.Zip.Checksum + { + const string _bridgeClassName = "java.util.zip.Adler32"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Adler32() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Adler32(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Adler32 implementation public partial class Adler32 { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/AllPackageClasses.cs b/src/net/JNet/Generated/Java/Util/Zip/AllPackageClasses.cs deleted file mode 100644 index 9f4300ccec..0000000000 --- a/src/net/JNet/Generated/Java/Util/Zip/AllPackageClasses.cs +++ /dev/null @@ -1,893 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Java.Util.Zip -{ - #region Adler32 - /// - /// - /// - public partial class Adler32 : Java.Util.Zip.Checksum - { - const string _bridgeClassName = "java.util.zip.Adler32"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Adler32() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Adler32(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CheckedInputStream - /// - /// - /// - public partial class CheckedInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.util.zip.CheckedInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CheckedInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CheckedInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CheckedOutputStream - /// - /// - /// - public partial class CheckedOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.util.zip.CheckedOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CheckedOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CheckedOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Checksum - /// - /// - /// - public partial class Checksum : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.zip.Checksum"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Checksum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Checksum() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Checksum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Checksum(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CRC32 - /// - /// - /// - public partial class CRC32 : Java.Util.Zip.Checksum - { - const string _bridgeClassName = "java.util.zip.CRC32"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CRC32() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CRC32(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CRC32C - /// - /// - /// - public partial class CRC32C : Java.Util.Zip.Checksum - { - const string _bridgeClassName = "java.util.zip.CRC32C"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CRC32C() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CRC32C(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataFormatException - /// - /// - /// - public partial class DataFormatException : Java.Lang.Exception - { - const string _bridgeClassName = "java.util.zip.DataFormatException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Deflater - /// - /// - /// - public partial class Deflater : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.zip.Deflater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Deflater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Deflater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DeflaterInputStream - /// - /// - /// - public partial class DeflaterInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.util.zip.DeflaterInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DeflaterInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DeflaterInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DeflaterOutputStream - /// - /// - /// - public partial class DeflaterOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.util.zip.DeflaterOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DeflaterOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DeflaterOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GZIPInputStream - /// - /// - /// - public partial class GZIPInputStream : Java.Util.Zip.InflaterInputStream - { - const string _bridgeClassName = "java.util.zip.GZIPInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GZIPInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GZIPInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GZIPOutputStream - /// - /// - /// - public partial class GZIPOutputStream : Java.Util.Zip.DeflaterOutputStream - { - const string _bridgeClassName = "java.util.zip.GZIPOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GZIPOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GZIPOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Inflater - /// - /// - /// - public partial class Inflater : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.zip.Inflater"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Inflater() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Inflater(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InflaterInputStream - /// - /// - /// - public partial class InflaterInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "java.util.zip.InflaterInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InflaterInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InflaterInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InflaterOutputStream - /// - /// - /// - public partial class InflaterOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "java.util.zip.InflaterOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InflaterOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InflaterOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZipEntry - /// - /// - /// - public partial class ZipEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.zip.ZipEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZipEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZipEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZipError - /// - /// - /// - public partial class ZipError : Java.Lang.InternalError - { - const string _bridgeClassName = "java.util.zip.ZipError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ZipException - /// - /// - /// - public partial class ZipException : Java.Io.IOException - { - const string _bridgeClassName = "java.util.zip.ZipException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ZipFile - /// - /// - /// - public partial class ZipFile : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "java.util.zip.ZipFile"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZipFile() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZipFile(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZipInputStream - /// - /// - /// - public partial class ZipInputStream : Java.Util.Zip.InflaterInputStream - { - const string _bridgeClassName = "java.util.zip.ZipInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZipInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZipInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZipOutputStream - /// - /// - /// - public partial class ZipOutputStream : Java.Util.Zip.DeflaterOutputStream - { - const string _bridgeClassName = "java.util.zip.ZipOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZipOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZipOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Java/Util/Zip/CRC32.cs b/src/net/JNet/Generated/Java/Util/Zip/CRC32.cs index 8727396038..2cb0dff4d8 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/CRC32.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/CRC32.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region CRC32 + #region CRC32 declaration + /// + /// + /// + public partial class CRC32 : Java.Util.Zip.Checksum + { + const string _bridgeClassName = "java.util.zip.CRC32"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CRC32() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CRC32(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CRC32 implementation public partial class CRC32 { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/CRC32C.cs b/src/net/JNet/Generated/Java/Util/Zip/CRC32C.cs index 3c9c96e8d4..920357bf17 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/CRC32C.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/CRC32C.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region CRC32C + #region CRC32C declaration + /// + /// + /// + public partial class CRC32C : Java.Util.Zip.Checksum + { + const string _bridgeClassName = "java.util.zip.CRC32C"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CRC32C() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CRC32C(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CRC32C implementation public partial class CRC32C { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/CheckedInputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/CheckedInputStream.cs index 950a7e15de..044f3c7eef 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/CheckedInputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/CheckedInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region CheckedInputStream + #region CheckedInputStream declaration + /// + /// + /// + public partial class CheckedInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.util.zip.CheckedInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CheckedInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CheckedInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CheckedInputStream implementation public partial class CheckedInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/CheckedOutputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/CheckedOutputStream.cs index 04e6596d25..da99f53041 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/CheckedOutputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/CheckedOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region CheckedOutputStream + #region CheckedOutputStream declaration + /// + /// + /// + public partial class CheckedOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.util.zip.CheckedOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CheckedOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CheckedOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CheckedOutputStream implementation public partial class CheckedOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/Checksum.cs b/src/net/JNet/Generated/Java/Util/Zip/Checksum.cs index 099438ba18..ce84b09aff 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/Checksum.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/Checksum.cs @@ -25,6 +25,53 @@ namespace Java.Util.Zip { + #region Checksum declaration + /// + /// + /// + public partial class Checksum : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.zip.Checksum"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Checksum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Checksum() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Checksum class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Checksum(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IChecksum /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IChecksum } #endregion - #region Checksum + #region Checksum implementation public partial class Checksum : Java.Util.Zip.IChecksum { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/DataFormatException.cs b/src/net/JNet/Generated/Java/Util/Zip/DataFormatException.cs index 065b862f1b..3b9435542a 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/DataFormatException.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/DataFormatException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Zip { - #region DataFormatException + #region DataFormatException declaration + /// + /// + /// + public partial class DataFormatException : Java.Lang.Exception + { + const string _bridgeClassName = "java.util.zip.DataFormatException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DataFormatException implementation public partial class DataFormatException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/Deflater.cs b/src/net/JNet/Generated/Java/Util/Zip/Deflater.cs index d9e4e7a63b..1433390e19 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/Deflater.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/Deflater.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region Deflater + #region Deflater declaration + /// + /// + /// + public partial class Deflater : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.zip.Deflater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Deflater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Deflater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Deflater implementation public partial class Deflater { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/DeflaterInputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/DeflaterInputStream.cs index 73ecc5031e..af705de04d 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/DeflaterInputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/DeflaterInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region DeflaterInputStream + #region DeflaterInputStream declaration + /// + /// + /// + public partial class DeflaterInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.util.zip.DeflaterInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DeflaterInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DeflaterInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DeflaterInputStream implementation public partial class DeflaterInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/DeflaterOutputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/DeflaterOutputStream.cs index 70f8f50f1b..e2658fe6cd 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/DeflaterOutputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/DeflaterOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region DeflaterOutputStream + #region DeflaterOutputStream declaration + /// + /// + /// + public partial class DeflaterOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.util.zip.DeflaterOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DeflaterOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DeflaterOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DeflaterOutputStream implementation public partial class DeflaterOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/GZIPInputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/GZIPInputStream.cs index 8e17cd8a00..73cf908b55 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/GZIPInputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/GZIPInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region GZIPInputStream + #region GZIPInputStream declaration + /// + /// + /// + public partial class GZIPInputStream : Java.Util.Zip.InflaterInputStream + { + const string _bridgeClassName = "java.util.zip.GZIPInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GZIPInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GZIPInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GZIPInputStream implementation public partial class GZIPInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/GZIPOutputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/GZIPOutputStream.cs index c7f9d53973..ce19ccb954 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/GZIPOutputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/GZIPOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region GZIPOutputStream + #region GZIPOutputStream declaration + /// + /// + /// + public partial class GZIPOutputStream : Java.Util.Zip.DeflaterOutputStream + { + const string _bridgeClassName = "java.util.zip.GZIPOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GZIPOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GZIPOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GZIPOutputStream implementation public partial class GZIPOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/Inflater.cs b/src/net/JNet/Generated/Java/Util/Zip/Inflater.cs index 4e585c42ea..f980971799 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/Inflater.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/Inflater.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region Inflater + #region Inflater declaration + /// + /// + /// + public partial class Inflater : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.zip.Inflater"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Inflater() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Inflater(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Inflater implementation public partial class Inflater { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/InflaterInputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/InflaterInputStream.cs index 7e3de4a5ea..bba8c3200c 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/InflaterInputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/InflaterInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region InflaterInputStream + #region InflaterInputStream declaration + /// + /// + /// + public partial class InflaterInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "java.util.zip.InflaterInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InflaterInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InflaterInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InflaterInputStream implementation public partial class InflaterInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/InflaterOutputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/InflaterOutputStream.cs index be139ed167..b66e1500df 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/InflaterOutputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/InflaterOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region InflaterOutputStream + #region InflaterOutputStream declaration + /// + /// + /// + public partial class InflaterOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "java.util.zip.InflaterOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InflaterOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InflaterOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InflaterOutputStream implementation public partial class InflaterOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/ZipEntry.cs b/src/net/JNet/Generated/Java/Util/Zip/ZipEntry.cs index 27d1c118bf..56c7672f65 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/ZipEntry.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/ZipEntry.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region ZipEntry + #region ZipEntry declaration + /// + /// + /// + public partial class ZipEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.zip.ZipEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZipEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZipEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZipEntry implementation public partial class ZipEntry { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/ZipError.cs b/src/net/JNet/Generated/Java/Util/Zip/ZipError.cs index c6280174f2..4213a3e4c3 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/ZipError.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/ZipError.cs @@ -25,7 +25,24 @@ namespace Java.Util.Zip { - #region ZipError + #region ZipError declaration + /// + /// + /// + public partial class ZipError : Java.Lang.InternalError + { + const string _bridgeClassName = "java.util.zip.ZipError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ZipError implementation public partial class ZipError { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/ZipException.cs b/src/net/JNet/Generated/Java/Util/Zip/ZipException.cs index 164d22daa2..a55ed95286 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/ZipException.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/ZipException.cs @@ -25,7 +25,24 @@ namespace Java.Util.Zip { - #region ZipException + #region ZipException declaration + /// + /// + /// + public partial class ZipException : Java.Io.IOException + { + const string _bridgeClassName = "java.util.zip.ZipException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ZipException implementation public partial class ZipException { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/ZipFile.cs b/src/net/JNet/Generated/Java/Util/Zip/ZipFile.cs index b0ff32b845..0428280f29 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/ZipFile.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/ZipFile.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region ZipFile + #region ZipFile declaration + /// + /// + /// + public partial class ZipFile : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "java.util.zip.ZipFile"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZipFile() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZipFile(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZipFile implementation public partial class ZipFile { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/ZipInputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/ZipInputStream.cs index c8ae2ecbfb..a80fcbfd2c 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/ZipInputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/ZipInputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region ZipInputStream + #region ZipInputStream declaration + /// + /// + /// + public partial class ZipInputStream : Java.Util.Zip.InflaterInputStream + { + const string _bridgeClassName = "java.util.zip.ZipInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZipInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZipInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZipInputStream implementation public partial class ZipInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Java/Util/Zip/ZipOutputStream.cs b/src/net/JNet/Generated/Java/Util/Zip/ZipOutputStream.cs index 4a6c65f948..10a07a6da4 100644 --- a/src/net/JNet/Generated/Java/Util/Zip/ZipOutputStream.cs +++ b/src/net/JNet/Generated/Java/Util/Zip/ZipOutputStream.cs @@ -25,7 +25,52 @@ namespace Java.Util.Zip { - #region ZipOutputStream + #region ZipOutputStream declaration + /// + /// + /// + public partial class ZipOutputStream : Java.Util.Zip.DeflaterOutputStream + { + const string _bridgeClassName = "java.util.zip.ZipOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZipOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZipOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZipOutputStream implementation public partial class ZipOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibilityProvider.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibilityProvider.cs index 209ac35de1..b3f139d412 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibilityProvider.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibilityProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Accessibility { - #region AccessibilityProvider + #region AccessibilityProvider declaration + /// + /// + /// + public partial class AccessibilityProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibilityProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibilityProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibilityProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibilityProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibilityProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibilityProvider implementation public partial class AccessibilityProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/Accessible.cs b/src/net/JNet/Generated/Javax/Accessibility/Accessible.cs index 12820bd4bc..ff5b445e26 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/Accessible.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/Accessible.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region Accessible declaration + /// + /// + /// + public partial class Accessible : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.Accessible"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Accessible class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Accessible() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Accessible class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Accessible(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessible /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IAccessible } #endregion - #region Accessible + #region Accessible implementation public partial class Accessible : Javax.Accessibility.IAccessible { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleAction.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleAction.cs index 5e355771bc..861a1ff02a 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleAction.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleAction.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleAction declaration + /// + /// + /// + public partial class AccessibleAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleAction /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IAccessibleAction } #endregion - #region AccessibleAction + #region AccessibleAction implementation public partial class AccessibleAction : Javax.Accessibility.IAccessibleAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleAttributeSequence.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleAttributeSequence.cs index 50c532fd6f..974e7fec17 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleAttributeSequence.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleAttributeSequence.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleAttributeSequence + #region AccessibleAttributeSequence declaration + /// + /// + /// + public partial class AccessibleAttributeSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleAttributeSequence"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleAttributeSequence() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleAttributeSequence(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleAttributeSequence implementation public partial class AccessibleAttributeSequence { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleBundle.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleBundle.cs index b910ace1b9..b6b57ab938 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleBundle.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleBundle.cs @@ -25,7 +25,54 @@ namespace Javax.Accessibility { - #region AccessibleBundle + #region AccessibleBundle declaration + /// + /// + /// + public partial class AccessibleBundle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleBundle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleBundle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleBundle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleBundle implementation public partial class AccessibleBundle { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleComponent.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleComponent.cs index f39c3251b0..4241ffe3f2 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleComponent.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleComponent.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleComponent declaration + /// + /// + /// + public partial class AccessibleComponent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleComponent /// /// .NET interface for TO BE DEFINED FROM USER @@ -137,7 +184,7 @@ public partial interface IAccessibleComponent } #endregion - #region AccessibleComponent + #region AccessibleComponent implementation public partial class AccessibleComponent : Javax.Accessibility.IAccessibleComponent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleContext.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleContext.cs index 906c4393fe..f94f401f37 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleContext.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleContext.cs @@ -25,7 +25,54 @@ namespace Javax.Accessibility { - #region AccessibleContext + #region AccessibleContext declaration + /// + /// + /// + public partial class AccessibleContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleContext implementation public partial class AccessibleContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleEditableText.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleEditableText.cs index 2d878106dd..cf8c4ba356 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleEditableText.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleEditableText.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleEditableText declaration + /// + /// + /// + public partial class AccessibleEditableText : Javax.Accessibility.AccessibleText + { + const string _bridgeClassName = "javax.accessibility.AccessibleEditableText"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleEditableText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleEditableText() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleEditableText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleEditableText(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleEditableText /// /// .NET interface for TO BE DEFINED FROM USER @@ -98,7 +145,7 @@ public partial interface IAccessibleEditableText : Javax.Accessibility.IAccessib } #endregion - #region AccessibleEditableText + #region AccessibleEditableText implementation public partial class AccessibleEditableText : Javax.Accessibility.IAccessibleEditableText { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedComponent.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedComponent.cs index 55d1cab7d5..e6a583084a 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedComponent.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedComponent.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleExtendedComponent declaration + /// + /// + /// + public partial class AccessibleExtendedComponent : Javax.Accessibility.AccessibleComponent + { + const string _bridgeClassName = "javax.accessibility.AccessibleExtendedComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleExtendedComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleExtendedComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleExtendedComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleExtendedComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleExtendedComponent /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IAccessibleExtendedComponent : Javax.Accessibility.IAcc } #endregion - #region AccessibleExtendedComponent + #region AccessibleExtendedComponent implementation public partial class AccessibleExtendedComponent : Javax.Accessibility.IAccessibleExtendedComponent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedTable.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedTable.cs index b400ea4f74..4300ad79be 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedTable.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedTable.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleExtendedTable declaration + /// + /// + /// + public partial class AccessibleExtendedTable : Javax.Accessibility.AccessibleTable + { + const string _bridgeClassName = "javax.accessibility.AccessibleExtendedTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleExtendedTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleExtendedTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleExtendedTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleExtendedTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleExtendedTable /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +109,7 @@ public partial interface IAccessibleExtendedTable : Javax.Accessibility.IAccessi } #endregion - #region AccessibleExtendedTable + #region AccessibleExtendedTable implementation public partial class AccessibleExtendedTable : Javax.Accessibility.IAccessibleExtendedTable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedText.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedText.cs index 588002ce2d..81d76d9997 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedText.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleExtendedText.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleExtendedText declaration + /// + /// + /// + public partial class AccessibleExtendedText : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleExtendedText"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleExtendedText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleExtendedText() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleExtendedText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleExtendedText(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleExtendedText /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface IAccessibleExtendedText } #endregion - #region AccessibleExtendedText + #region AccessibleExtendedText implementation public partial class AccessibleExtendedText : Javax.Accessibility.IAccessibleExtendedText { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleHyperlink.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleHyperlink.cs index e1ef9d2cdc..c38eb43335 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleHyperlink.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleHyperlink.cs @@ -25,7 +25,54 @@ namespace Javax.Accessibility { - #region AccessibleHyperlink + #region AccessibleHyperlink declaration + /// + /// + /// + public partial class AccessibleHyperlink : Javax.Accessibility.AccessibleAction + { + const string _bridgeClassName = "javax.accessibility.AccessibleHyperlink"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleHyperlink class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleHyperlink() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleHyperlink class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleHyperlink(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleHyperlink implementation public partial class AccessibleHyperlink { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleHypertext.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleHypertext.cs index 8ce307008a..ad94650627 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleHypertext.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleHypertext.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleHypertext declaration + /// + /// + /// + public partial class AccessibleHypertext : Javax.Accessibility.AccessibleText + { + const string _bridgeClassName = "javax.accessibility.AccessibleHypertext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleHypertext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleHypertext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleHypertext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleHypertext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleHypertext /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IAccessibleHypertext : Javax.Accessibility.IAccessibleT } #endregion - #region AccessibleHypertext + #region AccessibleHypertext implementation public partial class AccessibleHypertext : Javax.Accessibility.IAccessibleHypertext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleIcon.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleIcon.cs index d4940b51c1..dce2634752 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleIcon.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleIcon.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleIcon declaration + /// + /// + /// + public partial class AccessibleIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleIcon /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IAccessibleIcon } #endregion - #region AccessibleIcon + #region AccessibleIcon implementation public partial class AccessibleIcon : Javax.Accessibility.IAccessibleIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleKeyBinding.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleKeyBinding.cs index 6d91e530b0..6214c9cb7c 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleKeyBinding.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleKeyBinding.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleKeyBinding declaration + /// + /// + /// + public partial class AccessibleKeyBinding : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleKeyBinding"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleKeyBinding class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleKeyBinding() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleKeyBinding class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleKeyBinding(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleKeyBinding /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IAccessibleKeyBinding } #endregion - #region AccessibleKeyBinding + #region AccessibleKeyBinding implementation public partial class AccessibleKeyBinding : Javax.Accessibility.IAccessibleKeyBinding { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelation.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelation.cs index 7a17306e00..9d2ca38da5 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelation.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelation.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleRelation + #region AccessibleRelation declaration + /// + /// + /// + public partial class AccessibleRelation : Javax.Accessibility.AccessibleBundle + { + const string _bridgeClassName = "javax.accessibility.AccessibleRelation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleRelation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleRelation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleRelation implementation public partial class AccessibleRelation { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelationSet.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelationSet.cs index dd40c9ae00..32e3395db7 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelationSet.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleRelationSet.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleRelationSet + #region AccessibleRelationSet declaration + /// + /// + /// + public partial class AccessibleRelationSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleRelationSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleRelationSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleRelationSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleRelationSet implementation public partial class AccessibleRelationSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleRole.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleRole.cs index cc5aeeef60..698085ca00 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleRole.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleRole.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleRole + #region AccessibleRole declaration + /// + /// + /// + public partial class AccessibleRole : Javax.Accessibility.AccessibleBundle + { + const string _bridgeClassName = "javax.accessibility.AccessibleRole"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleRole() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleRole(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleRole implementation public partial class AccessibleRole { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleSelection.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleSelection.cs index e3989b8700..7e674e04bb 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleSelection.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleSelection.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleSelection declaration + /// + /// + /// + public partial class AccessibleSelection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleSelection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleSelection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleSelection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleSelection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleSelection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleSelection /// /// .NET interface for TO BE DEFINED FROM USER @@ -77,7 +124,7 @@ public partial interface IAccessibleSelection } #endregion - #region AccessibleSelection + #region AccessibleSelection implementation public partial class AccessibleSelection : Javax.Accessibility.IAccessibleSelection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleState.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleState.cs index 8e5bfdf5e6..98b6680659 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleState.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleState.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleState + #region AccessibleState declaration + /// + /// + /// + public partial class AccessibleState : Javax.Accessibility.AccessibleBundle + { + const string _bridgeClassName = "javax.accessibility.AccessibleState"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleState() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleState(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleState implementation public partial class AccessibleState { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleStateSet.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleStateSet.cs index fedda546b0..3d59cfe310 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleStateSet.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleStateSet.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleStateSet + #region AccessibleStateSet declaration + /// + /// + /// + public partial class AccessibleStateSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleStateSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleStateSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleStateSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleStateSet implementation public partial class AccessibleStateSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleStreamable.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleStreamable.cs index d0d9a501bc..c0e632bacd 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleStreamable.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleStreamable.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleStreamable declaration + /// + /// + /// + public partial class AccessibleStreamable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleStreamable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleStreamable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleStreamable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleStreamable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleStreamable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleStreamable /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IAccessibleStreamable } #endregion - #region AccessibleStreamable + #region AccessibleStreamable implementation public partial class AccessibleStreamable : Javax.Accessibility.IAccessibleStreamable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleTable.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleTable.cs index 54cce6979c..a7ddcc5817 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleTable.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleTable.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleTable declaration + /// + /// + /// + public partial class AccessibleTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleTable /// /// .NET interface for TO BE DEFINED FROM USER @@ -139,7 +186,7 @@ public partial interface IAccessibleTable } #endregion - #region AccessibleTable + #region AccessibleTable implementation public partial class AccessibleTable : Javax.Accessibility.IAccessibleTable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleTableModelChange.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleTableModelChange.cs index e22598a3b6..1657236743 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleTableModelChange.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleTableModelChange.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleTableModelChange declaration + /// + /// + /// + public partial class AccessibleTableModelChange : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleTableModelChange"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleTableModelChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleTableModelChange() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleTableModelChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleTableModelChange(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleTableModelChange /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IAccessibleTableModelChange } #endregion - #region AccessibleTableModelChange + #region AccessibleTableModelChange implementation public partial class AccessibleTableModelChange : Javax.Accessibility.IAccessibleTableModelChange { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleText.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleText.cs index 1b3017cb58..24d7f80395 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleText.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleText.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleText declaration + /// + /// + /// + public partial class AccessibleText : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleText"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleText() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleText(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleText /// /// .NET interface for TO BE DEFINED FROM USER @@ -102,7 +149,7 @@ public partial interface IAccessibleText } #endregion - #region AccessibleText + #region AccessibleText implementation public partial class AccessibleText : Javax.Accessibility.IAccessibleText { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleTextSequence.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleTextSequence.cs index c291ebbf31..c49cc78c6e 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleTextSequence.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleTextSequence.cs @@ -25,7 +25,52 @@ namespace Javax.Accessibility { - #region AccessibleTextSequence + #region AccessibleTextSequence declaration + /// + /// + /// + public partial class AccessibleTextSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleTextSequence"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleTextSequence() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleTextSequence(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AccessibleTextSequence implementation public partial class AccessibleTextSequence { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AccessibleValue.cs b/src/net/JNet/Generated/Javax/Accessibility/AccessibleValue.cs index 38c1eb6b89..e22cc014b1 100644 --- a/src/net/JNet/Generated/Javax/Accessibility/AccessibleValue.cs +++ b/src/net/JNet/Generated/Javax/Accessibility/AccessibleValue.cs @@ -25,6 +25,53 @@ namespace Javax.Accessibility { + #region AccessibleValue declaration + /// + /// + /// + public partial class AccessibleValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.accessibility.AccessibleValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAccessibleValue /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IAccessibleValue } #endregion - #region AccessibleValue + #region AccessibleValue implementation public partial class AccessibleValue : Javax.Accessibility.IAccessibleValue { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Accessibility/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Accessibility/AllPackageClasses.cs deleted file mode 100644 index 46235255ce..0000000000 --- a/src/net/JNet/Generated/Javax/Accessibility/AllPackageClasses.cs +++ /dev/null @@ -1,1285 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Accessibility -{ - #region AccessibilityProvider - /// - /// - /// - public partial class AccessibilityProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibilityProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibilityProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibilityProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibilityProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibilityProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Accessible - /// - /// - /// - public partial class Accessible : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.Accessible"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Accessible class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Accessible() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Accessible class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Accessible(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleAction - /// - /// - /// - public partial class AccessibleAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleAttributeSequence - /// - /// - /// - public partial class AccessibleAttributeSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleAttributeSequence"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleAttributeSequence() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleAttributeSequence(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleBundle - /// - /// - /// - public partial class AccessibleBundle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleBundle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleBundle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleBundle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleBundle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleComponent - /// - /// - /// - public partial class AccessibleComponent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleContext - /// - /// - /// - public partial class AccessibleContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleEditableText - /// - /// - /// - public partial class AccessibleEditableText : Javax.Accessibility.AccessibleText - { - const string _bridgeClassName = "javax.accessibility.AccessibleEditableText"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleEditableText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleEditableText() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleEditableText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleEditableText(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleExtendedComponent - /// - /// - /// - public partial class AccessibleExtendedComponent : Javax.Accessibility.AccessibleComponent - { - const string _bridgeClassName = "javax.accessibility.AccessibleExtendedComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleExtendedComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleExtendedComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleExtendedComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleExtendedComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleExtendedTable - /// - /// - /// - public partial class AccessibleExtendedTable : Javax.Accessibility.AccessibleTable - { - const string _bridgeClassName = "javax.accessibility.AccessibleExtendedTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleExtendedTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleExtendedTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleExtendedTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleExtendedTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleExtendedText - /// - /// - /// - public partial class AccessibleExtendedText : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleExtendedText"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleExtendedText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleExtendedText() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleExtendedText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleExtendedText(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleHyperlink - /// - /// - /// - public partial class AccessibleHyperlink : Javax.Accessibility.AccessibleAction - { - const string _bridgeClassName = "javax.accessibility.AccessibleHyperlink"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleHyperlink class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleHyperlink() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleHyperlink class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleHyperlink(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleHypertext - /// - /// - /// - public partial class AccessibleHypertext : Javax.Accessibility.AccessibleText - { - const string _bridgeClassName = "javax.accessibility.AccessibleHypertext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleHypertext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleHypertext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleHypertext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleHypertext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleIcon - /// - /// - /// - public partial class AccessibleIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleKeyBinding - /// - /// - /// - public partial class AccessibleKeyBinding : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleKeyBinding"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleKeyBinding class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleKeyBinding() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleKeyBinding class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleKeyBinding(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleRelation - /// - /// - /// - public partial class AccessibleRelation : Javax.Accessibility.AccessibleBundle - { - const string _bridgeClassName = "javax.accessibility.AccessibleRelation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleRelation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleRelation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleRelationSet - /// - /// - /// - public partial class AccessibleRelationSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleRelationSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleRelationSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleRelationSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleRole - /// - /// - /// - public partial class AccessibleRole : Javax.Accessibility.AccessibleBundle - { - const string _bridgeClassName = "javax.accessibility.AccessibleRole"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleRole() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleRole(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleSelection - /// - /// - /// - public partial class AccessibleSelection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleSelection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleSelection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleSelection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleSelection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleSelection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleState - /// - /// - /// - public partial class AccessibleState : Javax.Accessibility.AccessibleBundle - { - const string _bridgeClassName = "javax.accessibility.AccessibleState"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleState() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleState(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleStateSet - /// - /// - /// - public partial class AccessibleStateSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleStateSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleStateSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleStateSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleStreamable - /// - /// - /// - public partial class AccessibleStreamable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleStreamable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleStreamable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleStreamable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleStreamable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleStreamable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleTable - /// - /// - /// - public partial class AccessibleTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleTable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleTableModelChange - /// - /// - /// - public partial class AccessibleTableModelChange : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleTableModelChange"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleTableModelChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleTableModelChange() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleTableModelChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleTableModelChange(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleText - /// - /// - /// - public partial class AccessibleText : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleText"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleText() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleText class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleText(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleTextSequence - /// - /// - /// - public partial class AccessibleTextSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleTextSequence"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleTextSequence() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleTextSequence(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AccessibleValue - /// - /// - /// - public partial class AccessibleValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.accessibility.AccessibleValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/AbstractProcessor.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/AbstractProcessor.cs index 1ac40de7e8..722bb06693 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/AbstractProcessor.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/AbstractProcessor.cs @@ -25,7 +25,54 @@ namespace Javax.Annotation.Processing { - #region AbstractProcessor + #region AbstractProcessor declaration + /// + /// + /// + public partial class AbstractProcessor : Javax.Annotation.Processing.Processor + { + const string _bridgeClassName = "javax.annotation.processing.AbstractProcessor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractProcessor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractProcessor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractProcessor implementation public partial class AbstractProcessor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/AllPackageClasses.cs deleted file mode 100644 index c69c4e9a5a..0000000000 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/AllPackageClasses.cs +++ /dev/null @@ -1,609 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Annotation.Processing -{ - #region AbstractProcessor - /// - /// - /// - public partial class AbstractProcessor : Javax.Annotation.Processing.Processor - { - const string _bridgeClassName = "javax.annotation.processing.AbstractProcessor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractProcessor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractProcessor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractProcessor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Completion - /// - /// - /// - public partial class Completion : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.Completion"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Completion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Completion() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Completion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Completion(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Completions - /// - /// - /// - public partial class Completions : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.Completions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Completions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Completions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Filer - /// - /// - /// - public partial class Filer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.Filer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Filer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Filer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilerException - /// - /// - /// - public partial class FilerException : Java.Io.IOException - { - const string _bridgeClassName = "javax.annotation.processing.FilerException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Generated - /// - /// - /// - public partial class Generated : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.annotation.processing.Generated"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Generated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Generated() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Generated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Generated(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Messager - /// - /// - /// - public partial class Messager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.Messager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Messager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Messager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Messager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Messager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProcessingEnvironment - /// - /// - /// - public partial class ProcessingEnvironment : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.ProcessingEnvironment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProcessingEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessingEnvironment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProcessingEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessingEnvironment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Processor - /// - /// - /// - public partial class Processor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.Processor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Processor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Processor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoundEnvironment - /// - /// - /// - public partial class RoundEnvironment : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.annotation.processing.RoundEnvironment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RoundEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RoundEnvironment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RoundEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RoundEnvironment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SupportedAnnotationTypes - /// - /// - /// - public partial class SupportedAnnotationTypes : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.annotation.processing.SupportedAnnotationTypes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SupportedAnnotationTypes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedAnnotationTypes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SupportedAnnotationTypes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedAnnotationTypes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SupportedOptions - /// - /// - /// - public partial class SupportedOptions : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.annotation.processing.SupportedOptions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SupportedOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedOptions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SupportedOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedOptions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SupportedSourceVersion - /// - /// - /// - public partial class SupportedSourceVersion : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.annotation.processing.SupportedSourceVersion"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SupportedSourceVersion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedSourceVersion() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SupportedSourceVersion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedSourceVersion(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/Completion.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/Completion.cs index 6649bf8e4b..336e3eb494 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/Completion.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/Completion.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region Completion declaration + /// + /// + /// + public partial class Completion : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.Completion"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Completion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Completion() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Completion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Completion(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICompletion /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ICompletion } #endregion - #region Completion + #region Completion implementation public partial class Completion : Javax.Annotation.Processing.ICompletion { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/Completions.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/Completions.cs index e1ae6a7ca6..716776630e 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/Completions.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/Completions.cs @@ -25,7 +25,52 @@ namespace Javax.Annotation.Processing { - #region Completions + #region Completions declaration + /// + /// + /// + public partial class Completions : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.Completions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Completions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Completions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Completions implementation public partial class Completions { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/Filer.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/Filer.cs index fb8acc70b8..3a97675f0e 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/Filer.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/Filer.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region Filer declaration + /// + /// + /// + public partial class Filer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.Filer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Filer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Filer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFiler /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface IFiler } #endregion - #region Filer + #region Filer implementation public partial class Filer : Javax.Annotation.Processing.IFiler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/FilerException.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/FilerException.cs index 327fea088d..e5291da861 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/FilerException.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/FilerException.cs @@ -25,7 +25,24 @@ namespace Javax.Annotation.Processing { - #region FilerException + #region FilerException declaration + /// + /// + /// + public partial class FilerException : Java.Io.IOException + { + const string _bridgeClassName = "javax.annotation.processing.FilerException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FilerException implementation public partial class FilerException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/Generated.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/Generated.cs index 1fb4be0259..836016a957 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/Generated.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/Generated.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region Generated declaration + /// + /// + /// + public partial class Generated : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.annotation.processing.Generated"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Generated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Generated() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Generated class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Generated(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGenerated /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IGenerated : Java.Lang.Annotation.IAnnotation } #endregion - #region Generated + #region Generated implementation public partial class Generated : Javax.Annotation.Processing.IGenerated { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/Messager.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/Messager.cs index d820223e8a..063e07d31f 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/Messager.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/Messager.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region Messager declaration + /// + /// + /// + public partial class Messager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.Messager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Messager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Messager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Messager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Messager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMessager /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IMessager } #endregion - #region Messager + #region Messager implementation public partial class Messager : Javax.Annotation.Processing.IMessager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/ProcessingEnvironment.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/ProcessingEnvironment.cs index fef4ae2ff8..cc887c4af1 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/ProcessingEnvironment.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/ProcessingEnvironment.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region ProcessingEnvironment declaration + /// + /// + /// + public partial class ProcessingEnvironment : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.ProcessingEnvironment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProcessingEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessingEnvironment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProcessingEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessingEnvironment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IProcessingEnvironment /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IProcessingEnvironment } #endregion - #region ProcessingEnvironment + #region ProcessingEnvironment implementation public partial class ProcessingEnvironment : Javax.Annotation.Processing.IProcessingEnvironment { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/Processor.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/Processor.cs index 4dca3d3778..f90fb8489d 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/Processor.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/Processor.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region Processor declaration + /// + /// + /// + public partial class Processor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.Processor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Processor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Processor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Processor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IProcessor /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface IProcessor } #endregion - #region Processor + #region Processor implementation public partial class Processor : Javax.Annotation.Processing.IProcessor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/RoundEnvironment.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/RoundEnvironment.cs index b2fd9ac2a9..0fb79251bd 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/RoundEnvironment.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/RoundEnvironment.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region RoundEnvironment declaration + /// + /// + /// + public partial class RoundEnvironment : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.annotation.processing.RoundEnvironment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RoundEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RoundEnvironment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RoundEnvironment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RoundEnvironment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRoundEnvironment /// /// .NET interface for TO BE DEFINED FROM USER @@ -86,7 +133,7 @@ public partial interface IRoundEnvironment } #endregion - #region RoundEnvironment + #region RoundEnvironment implementation public partial class RoundEnvironment : Javax.Annotation.Processing.IRoundEnvironment { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedAnnotationTypes.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedAnnotationTypes.cs index 27459fdfb1..bf57bce324 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedAnnotationTypes.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedAnnotationTypes.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region SupportedAnnotationTypes declaration + /// + /// + /// + public partial class SupportedAnnotationTypes : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.annotation.processing.SupportedAnnotationTypes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SupportedAnnotationTypes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedAnnotationTypes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SupportedAnnotationTypes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedAnnotationTypes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISupportedAnnotationTypes /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ISupportedAnnotationTypes : Java.Lang.Annotation.IAnnot } #endregion - #region SupportedAnnotationTypes + #region SupportedAnnotationTypes implementation public partial class SupportedAnnotationTypes : Javax.Annotation.Processing.ISupportedAnnotationTypes { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedOptions.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedOptions.cs index 7cf23609a9..dcc7bddf26 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedOptions.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedOptions.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region SupportedOptions declaration + /// + /// + /// + public partial class SupportedOptions : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.annotation.processing.SupportedOptions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SupportedOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedOptions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SupportedOptions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedOptions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISupportedOptions /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ISupportedOptions : Java.Lang.Annotation.IAnnotation } #endregion - #region SupportedOptions + #region SupportedOptions implementation public partial class SupportedOptions : Javax.Annotation.Processing.ISupportedOptions { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedSourceVersion.cs b/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedSourceVersion.cs index 25b48c4f1b..208810133d 100644 --- a/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedSourceVersion.cs +++ b/src/net/JNet/Generated/Javax/Annotation/Processing/SupportedSourceVersion.cs @@ -25,6 +25,53 @@ namespace Javax.Annotation.Processing { + #region SupportedSourceVersion declaration + /// + /// + /// + public partial class SupportedSourceVersion : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.annotation.processing.SupportedSourceVersion"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SupportedSourceVersion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedSourceVersion() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SupportedSourceVersion class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedSourceVersion(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISupportedSourceVersion /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ISupportedSourceVersion : Java.Lang.Annotation.IAnnotat } #endregion - #region SupportedSourceVersion + #region SupportedSourceVersion implementation public partial class SupportedSourceVersion : Javax.Annotation.Processing.ISupportedSourceVersion { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/AEADBadTagException.cs b/src/net/JNet/Generated/Javax/Crypto/AEADBadTagException.cs index 4d85345f61..c63592f973 100644 --- a/src/net/JNet/Generated/Javax/Crypto/AEADBadTagException.cs +++ b/src/net/JNet/Generated/Javax/Crypto/AEADBadTagException.cs @@ -25,7 +25,24 @@ namespace Javax.Crypto { - #region AEADBadTagException + #region AEADBadTagException declaration + /// + /// + /// + public partial class AEADBadTagException : Javax.Crypto.BadPaddingException + { + const string _bridgeClassName = "javax.crypto.AEADBadTagException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AEADBadTagException implementation public partial class AEADBadTagException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Crypto/AllPackageClasses.cs deleted file mode 100644 index 434fbc4fe8..0000000000 --- a/src/net/JNet/Generated/Javax/Crypto/AllPackageClasses.cs +++ /dev/null @@ -1,956 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Crypto -{ - #region AEADBadTagException - /// - /// - /// - public partial class AEADBadTagException : Javax.Crypto.BadPaddingException - { - const string _bridgeClassName = "javax.crypto.AEADBadTagException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region BadPaddingException - /// - /// - /// - public partial class BadPaddingException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "javax.crypto.BadPaddingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Cipher - /// - /// - /// - public partial class Cipher : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.Cipher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Cipher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Cipher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CipherInputStream - /// - /// - /// - public partial class CipherInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "javax.crypto.CipherInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CipherInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CipherInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CipherOutputStream - /// - /// - /// - public partial class CipherOutputStream : Java.Io.FilterOutputStream - { - const string _bridgeClassName = "javax.crypto.CipherOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CipherOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CipherOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CipherSpi - /// - /// - /// - public partial class CipherSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.CipherSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CipherSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CipherSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CipherSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CipherSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EncryptedPrivateKeyInfo - /// - /// - /// - public partial class EncryptedPrivateKeyInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.EncryptedPrivateKeyInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EncryptedPrivateKeyInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EncryptedPrivateKeyInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExemptionMechanism - /// - /// - /// - public partial class ExemptionMechanism : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.ExemptionMechanism"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExemptionMechanism() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExemptionMechanism(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExemptionMechanismException - /// - /// - /// - public partial class ExemptionMechanismException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "javax.crypto.ExemptionMechanismException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ExemptionMechanismSpi - /// - /// - /// - public partial class ExemptionMechanismSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.ExemptionMechanismSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExemptionMechanismSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExemptionMechanismSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExemptionMechanismSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExemptionMechanismSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IllegalBlockSizeException - /// - /// - /// - public partial class IllegalBlockSizeException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "javax.crypto.IllegalBlockSizeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeyAgreement - /// - /// - /// - public partial class KeyAgreement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.KeyAgreement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyAgreement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyAgreement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyAgreementSpi - /// - /// - /// - public partial class KeyAgreementSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.KeyAgreementSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyAgreementSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyAgreementSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyAgreementSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyAgreementSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyGenerator - /// - /// - /// - public partial class KeyGenerator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.KeyGenerator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyGenerator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyGenerator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyGeneratorSpi - /// - /// - /// - public partial class KeyGeneratorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.KeyGeneratorSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyGeneratorSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyGeneratorSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Mac - /// - /// - /// - public partial class Mac : Java.Lang.Cloneable - { - const string _bridgeClassName = "javax.crypto.Mac"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Mac() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Mac(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MacSpi - /// - /// - /// - public partial class MacSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.MacSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MacSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MacSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MacSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MacSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchPaddingException - /// - /// - /// - public partial class NoSuchPaddingException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "javax.crypto.NoSuchPaddingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NullCipher - /// - /// - /// - public partial class NullCipher : Javax.Crypto.Cipher - { - const string _bridgeClassName = "javax.crypto.NullCipher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NullCipher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NullCipher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SealedObject - /// - /// - /// - public partial class SealedObject : Java.Io.Serializable - { - const string _bridgeClassName = "javax.crypto.SealedObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SealedObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SealedObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecretKey - /// - /// - /// - public partial class SecretKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.SecretKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecretKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecretKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecretKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecretKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecretKeyFactory - /// - /// - /// - public partial class SecretKeyFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.SecretKeyFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecretKeyFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecretKeyFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecretKeyFactorySpi - /// - /// - /// - public partial class SecretKeyFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.SecretKeyFactorySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SecretKeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecretKeyFactorySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SecretKeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SecretKeyFactorySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ShortBufferException - /// - /// - /// - public partial class ShortBufferException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "javax.crypto.ShortBufferException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Crypto/BadPaddingException.cs b/src/net/JNet/Generated/Javax/Crypto/BadPaddingException.cs index 4df8eba8ed..7808ae44b2 100644 --- a/src/net/JNet/Generated/Javax/Crypto/BadPaddingException.cs +++ b/src/net/JNet/Generated/Javax/Crypto/BadPaddingException.cs @@ -25,7 +25,24 @@ namespace Javax.Crypto { - #region BadPaddingException + #region BadPaddingException declaration + /// + /// + /// + public partial class BadPaddingException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "javax.crypto.BadPaddingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BadPaddingException implementation public partial class BadPaddingException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Cipher.cs b/src/net/JNet/Generated/Javax/Crypto/Cipher.cs index 22366cce7f..e1dd4dcdf0 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Cipher.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Cipher.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region Cipher + #region Cipher declaration + /// + /// + /// + public partial class Cipher : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.Cipher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Cipher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Cipher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Cipher implementation public partial class Cipher { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/CipherInputStream.cs b/src/net/JNet/Generated/Javax/Crypto/CipherInputStream.cs index 7a2038b366..45641f3ba7 100644 --- a/src/net/JNet/Generated/Javax/Crypto/CipherInputStream.cs +++ b/src/net/JNet/Generated/Javax/Crypto/CipherInputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region CipherInputStream + #region CipherInputStream declaration + /// + /// + /// + public partial class CipherInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "javax.crypto.CipherInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CipherInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CipherInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CipherInputStream implementation public partial class CipherInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/CipherOutputStream.cs b/src/net/JNet/Generated/Javax/Crypto/CipherOutputStream.cs index 4dc02bc56b..05e0fa88ff 100644 --- a/src/net/JNet/Generated/Javax/Crypto/CipherOutputStream.cs +++ b/src/net/JNet/Generated/Javax/Crypto/CipherOutputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region CipherOutputStream + #region CipherOutputStream declaration + /// + /// + /// + public partial class CipherOutputStream : Java.Io.FilterOutputStream + { + const string _bridgeClassName = "javax.crypto.CipherOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CipherOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CipherOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CipherOutputStream implementation public partial class CipherOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/CipherSpi.cs b/src/net/JNet/Generated/Javax/Crypto/CipherSpi.cs index a3bba41f88..640a047669 100644 --- a/src/net/JNet/Generated/Javax/Crypto/CipherSpi.cs +++ b/src/net/JNet/Generated/Javax/Crypto/CipherSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Crypto { - #region CipherSpi + #region CipherSpi declaration + /// + /// + /// + public partial class CipherSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.CipherSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CipherSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CipherSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CipherSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CipherSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CipherSpi implementation public partial class CipherSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/EncryptedPrivateKeyInfo.cs b/src/net/JNet/Generated/Javax/Crypto/EncryptedPrivateKeyInfo.cs index 9a3a140312..43f821c0d9 100644 --- a/src/net/JNet/Generated/Javax/Crypto/EncryptedPrivateKeyInfo.cs +++ b/src/net/JNet/Generated/Javax/Crypto/EncryptedPrivateKeyInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region EncryptedPrivateKeyInfo + #region EncryptedPrivateKeyInfo declaration + /// + /// + /// + public partial class EncryptedPrivateKeyInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.EncryptedPrivateKeyInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EncryptedPrivateKeyInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EncryptedPrivateKeyInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EncryptedPrivateKeyInfo implementation public partial class EncryptedPrivateKeyInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanism.cs b/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanism.cs index 92765ab4be..9171bd272c 100644 --- a/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanism.cs +++ b/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanism.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region ExemptionMechanism + #region ExemptionMechanism declaration + /// + /// + /// + public partial class ExemptionMechanism : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.ExemptionMechanism"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExemptionMechanism() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExemptionMechanism(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExemptionMechanism implementation public partial class ExemptionMechanism { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismException.cs b/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismException.cs index 4612caf412..0f8bf07b65 100644 --- a/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismException.cs +++ b/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismException.cs @@ -25,7 +25,24 @@ namespace Javax.Crypto { - #region ExemptionMechanismException + #region ExemptionMechanismException declaration + /// + /// + /// + public partial class ExemptionMechanismException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "javax.crypto.ExemptionMechanismException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ExemptionMechanismException implementation public partial class ExemptionMechanismException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismSpi.cs b/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismSpi.cs index 968499f8d7..2e33555770 100644 --- a/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismSpi.cs +++ b/src/net/JNet/Generated/Javax/Crypto/ExemptionMechanismSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Crypto { - #region ExemptionMechanismSpi + #region ExemptionMechanismSpi declaration + /// + /// + /// + public partial class ExemptionMechanismSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.ExemptionMechanismSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExemptionMechanismSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExemptionMechanismSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExemptionMechanismSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExemptionMechanismSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExemptionMechanismSpi implementation public partial class ExemptionMechanismSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/IllegalBlockSizeException.cs b/src/net/JNet/Generated/Javax/Crypto/IllegalBlockSizeException.cs index a1569bb008..f06c06619b 100644 --- a/src/net/JNet/Generated/Javax/Crypto/IllegalBlockSizeException.cs +++ b/src/net/JNet/Generated/Javax/Crypto/IllegalBlockSizeException.cs @@ -25,7 +25,24 @@ namespace Javax.Crypto { - #region IllegalBlockSizeException + #region IllegalBlockSizeException declaration + /// + /// + /// + public partial class IllegalBlockSizeException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "javax.crypto.IllegalBlockSizeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IllegalBlockSizeException implementation public partial class IllegalBlockSizeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Interfaces/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Crypto/Interfaces/AllPackageClasses.cs deleted file mode 100644 index 931c918dab..0000000000 --- a/src/net/JNet/Generated/Javax/Crypto/Interfaces/AllPackageClasses.cs +++ /dev/null @@ -1,218 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Crypto.Interfaces -{ - #region DHKey - /// - /// - /// - public partial class DHKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.interfaces.DHKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DHKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DHKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DHKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DHKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DHPrivateKey - /// - /// - /// - public partial class DHPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.interfaces.DHPrivateKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DHPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DHPrivateKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DHPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DHPrivateKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DHPublicKey - /// - /// - /// - public partial class DHPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.interfaces.DHPublicKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DHPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DHPublicKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DHPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DHPublicKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PBEKey - /// - /// - /// - public partial class PBEKey : Javax.Crypto.SecretKey - { - const string _bridgeClassName = "javax.crypto.interfaces.PBEKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PBEKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PBEKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PBEKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PBEKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHKey.cs b/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHKey.cs index cfcb74e5c1..cc8e0c4923 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHKey.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHKey.cs @@ -25,6 +25,53 @@ namespace Javax.Crypto.Interfaces { + #region DHKey declaration + /// + /// + /// + public partial class DHKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.interfaces.DHKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DHKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DHKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DHKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DHKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDHKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDHKey } #endregion - #region DHKey + #region DHKey implementation public partial class DHKey : Javax.Crypto.Interfaces.IDHKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPrivateKey.cs b/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPrivateKey.cs index 356aa62401..0f88ba1abf 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPrivateKey.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPrivateKey.cs @@ -25,6 +25,53 @@ namespace Javax.Crypto.Interfaces { + #region DHPrivateKey declaration + /// + /// + /// + public partial class DHPrivateKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.interfaces.DHPrivateKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DHPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DHPrivateKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DHPrivateKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DHPrivateKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDHPrivateKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDHPrivateKey } #endregion - #region DHPrivateKey + #region DHPrivateKey implementation public partial class DHPrivateKey : Javax.Crypto.Interfaces.IDHPrivateKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPublicKey.cs b/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPublicKey.cs index 488614bdd8..90b3441e2f 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPublicKey.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Interfaces/DHPublicKey.cs @@ -25,6 +25,53 @@ namespace Javax.Crypto.Interfaces { + #region DHPublicKey declaration + /// + /// + /// + public partial class DHPublicKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.interfaces.DHPublicKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DHPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DHPublicKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DHPublicKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DHPublicKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDHPublicKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDHPublicKey } #endregion - #region DHPublicKey + #region DHPublicKey implementation public partial class DHPublicKey : Javax.Crypto.Interfaces.IDHPublicKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Interfaces/PBEKey.cs b/src/net/JNet/Generated/Javax/Crypto/Interfaces/PBEKey.cs index 8b4125fd88..9f7c2f57da 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Interfaces/PBEKey.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Interfaces/PBEKey.cs @@ -25,6 +25,53 @@ namespace Javax.Crypto.Interfaces { + #region PBEKey declaration + /// + /// + /// + public partial class PBEKey : Javax.Crypto.SecretKey + { + const string _bridgeClassName = "javax.crypto.interfaces.PBEKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PBEKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PBEKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PBEKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PBEKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPBEKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IPBEKey : Javax.Crypto.ISecretKey } #endregion - #region PBEKey + #region PBEKey implementation public partial class PBEKey : Javax.Crypto.Interfaces.IPBEKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/KeyAgreement.cs b/src/net/JNet/Generated/Javax/Crypto/KeyAgreement.cs index c964d55cbd..30bdbce153 100644 --- a/src/net/JNet/Generated/Javax/Crypto/KeyAgreement.cs +++ b/src/net/JNet/Generated/Javax/Crypto/KeyAgreement.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region KeyAgreement + #region KeyAgreement declaration + /// + /// + /// + public partial class KeyAgreement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.KeyAgreement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyAgreement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyAgreement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyAgreement implementation public partial class KeyAgreement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/KeyAgreementSpi.cs b/src/net/JNet/Generated/Javax/Crypto/KeyAgreementSpi.cs index 62815d3cc4..02febdce6e 100644 --- a/src/net/JNet/Generated/Javax/Crypto/KeyAgreementSpi.cs +++ b/src/net/JNet/Generated/Javax/Crypto/KeyAgreementSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Crypto { - #region KeyAgreementSpi + #region KeyAgreementSpi declaration + /// + /// + /// + public partial class KeyAgreementSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.KeyAgreementSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyAgreementSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyAgreementSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyAgreementSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyAgreementSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyAgreementSpi implementation public partial class KeyAgreementSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/KeyGenerator.cs b/src/net/JNet/Generated/Javax/Crypto/KeyGenerator.cs index e1ec776d02..b36d9db61b 100644 --- a/src/net/JNet/Generated/Javax/Crypto/KeyGenerator.cs +++ b/src/net/JNet/Generated/Javax/Crypto/KeyGenerator.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region KeyGenerator + #region KeyGenerator declaration + /// + /// + /// + public partial class KeyGenerator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.KeyGenerator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyGenerator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyGenerator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyGenerator implementation public partial class KeyGenerator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/KeyGeneratorSpi.cs b/src/net/JNet/Generated/Javax/Crypto/KeyGeneratorSpi.cs index 175ddbe70a..17d02d6ebf 100644 --- a/src/net/JNet/Generated/Javax/Crypto/KeyGeneratorSpi.cs +++ b/src/net/JNet/Generated/Javax/Crypto/KeyGeneratorSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Crypto { - #region KeyGeneratorSpi + #region KeyGeneratorSpi declaration + /// + /// + /// + public partial class KeyGeneratorSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.KeyGeneratorSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyGeneratorSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyGeneratorSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyGeneratorSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyGeneratorSpi implementation public partial class KeyGeneratorSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Mac.cs b/src/net/JNet/Generated/Javax/Crypto/Mac.cs index 309cbae6ea..3347c16573 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Mac.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Mac.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region Mac + #region Mac declaration + /// + /// + /// + public partial class Mac : Java.Lang.Cloneable + { + const string _bridgeClassName = "javax.crypto.Mac"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Mac() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Mac(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Mac implementation public partial class Mac { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/MacSpi.cs b/src/net/JNet/Generated/Javax/Crypto/MacSpi.cs index 40819b65e7..c796aa3bf0 100644 --- a/src/net/JNet/Generated/Javax/Crypto/MacSpi.cs +++ b/src/net/JNet/Generated/Javax/Crypto/MacSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Crypto { - #region MacSpi + #region MacSpi declaration + /// + /// + /// + public partial class MacSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.MacSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MacSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MacSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MacSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MacSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MacSpi implementation public partial class MacSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/NoSuchPaddingException.cs b/src/net/JNet/Generated/Javax/Crypto/NoSuchPaddingException.cs index d63557f3ab..6aac613f23 100644 --- a/src/net/JNet/Generated/Javax/Crypto/NoSuchPaddingException.cs +++ b/src/net/JNet/Generated/Javax/Crypto/NoSuchPaddingException.cs @@ -25,7 +25,24 @@ namespace Javax.Crypto { - #region NoSuchPaddingException + #region NoSuchPaddingException declaration + /// + /// + /// + public partial class NoSuchPaddingException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "javax.crypto.NoSuchPaddingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchPaddingException implementation public partial class NoSuchPaddingException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/NullCipher.cs b/src/net/JNet/Generated/Javax/Crypto/NullCipher.cs index c35bc00ada..f3a9176ce1 100644 --- a/src/net/JNet/Generated/Javax/Crypto/NullCipher.cs +++ b/src/net/JNet/Generated/Javax/Crypto/NullCipher.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region NullCipher + #region NullCipher declaration + /// + /// + /// + public partial class NullCipher : Javax.Crypto.Cipher + { + const string _bridgeClassName = "javax.crypto.NullCipher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NullCipher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NullCipher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NullCipher implementation public partial class NullCipher { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/SealedObject.cs b/src/net/JNet/Generated/Javax/Crypto/SealedObject.cs index 7ba65a0e43..af8c73c720 100644 --- a/src/net/JNet/Generated/Javax/Crypto/SealedObject.cs +++ b/src/net/JNet/Generated/Javax/Crypto/SealedObject.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region SealedObject + #region SealedObject declaration + /// + /// + /// + public partial class SealedObject : Java.Io.Serializable + { + const string _bridgeClassName = "javax.crypto.SealedObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SealedObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SealedObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SealedObject implementation public partial class SealedObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/SecretKey.cs b/src/net/JNet/Generated/Javax/Crypto/SecretKey.cs index 91b4e722fe..edaa1e159f 100644 --- a/src/net/JNet/Generated/Javax/Crypto/SecretKey.cs +++ b/src/net/JNet/Generated/Javax/Crypto/SecretKey.cs @@ -25,6 +25,53 @@ namespace Javax.Crypto { + #region SecretKey declaration + /// + /// + /// + public partial class SecretKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.SecretKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecretKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecretKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecretKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecretKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISecretKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISecretKey } #endregion - #region SecretKey + #region SecretKey implementation public partial class SecretKey : Javax.Crypto.ISecretKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactory.cs b/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactory.cs index 385423cfef..bc51d5cd52 100644 --- a/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactory.cs +++ b/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto { - #region SecretKeyFactory + #region SecretKeyFactory declaration + /// + /// + /// + public partial class SecretKeyFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.SecretKeyFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecretKeyFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecretKeyFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecretKeyFactory implementation public partial class SecretKeyFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactorySpi.cs b/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactorySpi.cs index 69d03a4369..a809f6192b 100644 --- a/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactorySpi.cs +++ b/src/net/JNet/Generated/Javax/Crypto/SecretKeyFactorySpi.cs @@ -25,7 +25,54 @@ namespace Javax.Crypto { - #region SecretKeyFactorySpi + #region SecretKeyFactorySpi declaration + /// + /// + /// + public partial class SecretKeyFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.SecretKeyFactorySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SecretKeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecretKeyFactorySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SecretKeyFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SecretKeyFactorySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecretKeyFactorySpi implementation public partial class SecretKeyFactorySpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/ShortBufferException.cs b/src/net/JNet/Generated/Javax/Crypto/ShortBufferException.cs index e92e4a9e5f..ed17303749 100644 --- a/src/net/JNet/Generated/Javax/Crypto/ShortBufferException.cs +++ b/src/net/JNet/Generated/Javax/Crypto/ShortBufferException.cs @@ -25,7 +25,24 @@ namespace Javax.Crypto { - #region ShortBufferException + #region ShortBufferException declaration + /// + /// + /// + public partial class ShortBufferException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "javax.crypto.ShortBufferException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ShortBufferException implementation public partial class ShortBufferException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/AllPackageClasses.cs deleted file mode 100644 index 962e333377..0000000000 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/AllPackageClasses.cs +++ /dev/null @@ -1,795 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Crypto.Spec -{ - #region ChaCha20ParameterSpec - /// - /// - /// - public partial class ChaCha20ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.ChaCha20ParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChaCha20ParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChaCha20ParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DESedeKeySpec - /// - /// - /// - public partial class DESedeKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "javax.crypto.spec.DESedeKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DESedeKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DESedeKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DESKeySpec - /// - /// - /// - public partial class DESKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "javax.crypto.spec.DESKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DESKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DESKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DHGenParameterSpec - /// - /// - /// - public partial class DHGenParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.DHGenParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DHGenParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DHGenParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DHParameterSpec - /// - /// - /// - public partial class DHParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.DHParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DHParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DHParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DHPrivateKeySpec - /// - /// - /// - public partial class DHPrivateKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "javax.crypto.spec.DHPrivateKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DHPrivateKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DHPrivateKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DHPublicKeySpec - /// - /// - /// - public partial class DHPublicKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "javax.crypto.spec.DHPublicKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DHPublicKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DHPublicKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GCMParameterSpec - /// - /// - /// - public partial class GCMParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.GCMParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GCMParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GCMParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IvParameterSpec - /// - /// - /// - public partial class IvParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.IvParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IvParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IvParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OAEPParameterSpec - /// - /// - /// - public partial class OAEPParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.OAEPParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OAEPParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OAEPParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PBEKeySpec - /// - /// - /// - public partial class PBEKeySpec : Java.Security.Spec.KeySpec - { - const string _bridgeClassName = "javax.crypto.spec.PBEKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PBEKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PBEKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PBEParameterSpec - /// - /// - /// - public partial class PBEParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.PBEParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PBEParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PBEParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PSource - /// - /// - /// - public partial class PSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.spec.PSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PSpecified - /// - /// - /// - public partial class PSpecified : Javax.Crypto.Spec.PSource - { - const string _bridgeClassName = "javax.crypto.spec.PSource$PSpecified"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PSpecified() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PSpecified(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region RC2ParameterSpec - /// - /// - /// - public partial class RC2ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.RC2ParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RC2ParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RC2ParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RC5ParameterSpec - /// - /// - /// - public partial class RC5ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.crypto.spec.RC5ParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RC5ParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RC5ParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SecretKeySpec - /// - /// - /// - public partial class SecretKeySpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.crypto.spec.SecretKeySpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SecretKeySpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SecretKeySpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/ChaCha20ParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/ChaCha20ParameterSpec.cs index ae0b088dff..1ac873a3c6 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/ChaCha20ParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/ChaCha20ParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region ChaCha20ParameterSpec + #region ChaCha20ParameterSpec declaration + /// + /// + /// + public partial class ChaCha20ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.ChaCha20ParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChaCha20ParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChaCha20ParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChaCha20ParameterSpec implementation public partial class ChaCha20ParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/DESKeySpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/DESKeySpec.cs index 2c4fd1c9bc..396d9c865f 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/DESKeySpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/DESKeySpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region DESKeySpec + #region DESKeySpec declaration + /// + /// + /// + public partial class DESKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "javax.crypto.spec.DESKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DESKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DESKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DESKeySpec implementation public partial class DESKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/DESedeKeySpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/DESedeKeySpec.cs index 99dd21b607..42790a80f5 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/DESedeKeySpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/DESedeKeySpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region DESedeKeySpec + #region DESedeKeySpec declaration + /// + /// + /// + public partial class DESedeKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "javax.crypto.spec.DESedeKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DESedeKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DESedeKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DESedeKeySpec implementation public partial class DESedeKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/DHGenParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/DHGenParameterSpec.cs index 3fc32420e4..736bbbb675 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/DHGenParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/DHGenParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region DHGenParameterSpec + #region DHGenParameterSpec declaration + /// + /// + /// + public partial class DHGenParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.DHGenParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DHGenParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DHGenParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DHGenParameterSpec implementation public partial class DHGenParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/DHParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/DHParameterSpec.cs index 216dc730c9..4a4282dcde 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/DHParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/DHParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region DHParameterSpec + #region DHParameterSpec declaration + /// + /// + /// + public partial class DHParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.DHParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DHParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DHParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DHParameterSpec implementation public partial class DHParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/DHPrivateKeySpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/DHPrivateKeySpec.cs index 7a3e6831f5..56e713ea68 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/DHPrivateKeySpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/DHPrivateKeySpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region DHPrivateKeySpec + #region DHPrivateKeySpec declaration + /// + /// + /// + public partial class DHPrivateKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "javax.crypto.spec.DHPrivateKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DHPrivateKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DHPrivateKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DHPrivateKeySpec implementation public partial class DHPrivateKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/DHPublicKeySpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/DHPublicKeySpec.cs index 2646b67710..f79098d195 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/DHPublicKeySpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/DHPublicKeySpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region DHPublicKeySpec + #region DHPublicKeySpec declaration + /// + /// + /// + public partial class DHPublicKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "javax.crypto.spec.DHPublicKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DHPublicKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DHPublicKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DHPublicKeySpec implementation public partial class DHPublicKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/GCMParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/GCMParameterSpec.cs index 6c2cab9239..55c58b7763 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/GCMParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/GCMParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region GCMParameterSpec + #region GCMParameterSpec declaration + /// + /// + /// + public partial class GCMParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.GCMParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GCMParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GCMParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GCMParameterSpec implementation public partial class GCMParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/IvParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/IvParameterSpec.cs index 1df2fdd257..7fbb6a1780 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/IvParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/IvParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region IvParameterSpec + #region IvParameterSpec declaration + /// + /// + /// + public partial class IvParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.IvParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IvParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IvParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IvParameterSpec implementation public partial class IvParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/OAEPParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/OAEPParameterSpec.cs index e35c822121..d8f4081997 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/OAEPParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/OAEPParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region OAEPParameterSpec + #region OAEPParameterSpec declaration + /// + /// + /// + public partial class OAEPParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.OAEPParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OAEPParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OAEPParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OAEPParameterSpec implementation public partial class OAEPParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/PBEKeySpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/PBEKeySpec.cs index 502e731004..aac645dec0 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/PBEKeySpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/PBEKeySpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region PBEKeySpec + #region PBEKeySpec declaration + /// + /// + /// + public partial class PBEKeySpec : Java.Security.Spec.KeySpec + { + const string _bridgeClassName = "javax.crypto.spec.PBEKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PBEKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PBEKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PBEKeySpec implementation public partial class PBEKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/PBEParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/PBEParameterSpec.cs index 376a5bf85b..98d2be5a92 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/PBEParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/PBEParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region PBEParameterSpec + #region PBEParameterSpec declaration + /// + /// + /// + public partial class PBEParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.PBEParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PBEParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PBEParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PBEParameterSpec implementation public partial class PBEParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/PSource.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/PSource.cs index 9c657487cb..f6fe9ee6c7 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/PSource.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/PSource.cs @@ -25,7 +25,97 @@ namespace Javax.Crypto.Spec { - #region PSource + #region PSource declaration + /// + /// + /// + public partial class PSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.spec.PSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PSpecified declaration + /// + /// + /// + public partial class PSpecified : Javax.Crypto.Spec.PSource + { + const string _bridgeClassName = "javax.crypto.spec.PSource$PSpecified"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PSpecified() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PSpecified(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region PSource implementation public partial class PSource { #region Constructors @@ -56,7 +146,7 @@ public Java.Lang.String Algorithm #endregion #region Nested classes - #region PSpecified + #region PSpecified implementation public partial class PSpecified { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/RC2ParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/RC2ParameterSpec.cs index dce18e1502..3df071f60f 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/RC2ParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/RC2ParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region RC2ParameterSpec + #region RC2ParameterSpec declaration + /// + /// + /// + public partial class RC2ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.RC2ParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RC2ParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RC2ParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RC2ParameterSpec implementation public partial class RC2ParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/RC5ParameterSpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/RC5ParameterSpec.cs index c8f4873906..863e612774 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/RC5ParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/RC5ParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region RC5ParameterSpec + #region RC5ParameterSpec declaration + /// + /// + /// + public partial class RC5ParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.crypto.spec.RC5ParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RC5ParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RC5ParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RC5ParameterSpec implementation public partial class RC5ParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Crypto/Spec/SecretKeySpec.cs b/src/net/JNet/Generated/Javax/Crypto/Spec/SecretKeySpec.cs index 7ad9c8ce37..4a8f382041 100644 --- a/src/net/JNet/Generated/Javax/Crypto/Spec/SecretKeySpec.cs +++ b/src/net/JNet/Generated/Javax/Crypto/Spec/SecretKeySpec.cs @@ -25,7 +25,52 @@ namespace Javax.Crypto.Spec { - #region SecretKeySpec + #region SecretKeySpec declaration + /// + /// + /// + public partial class SecretKeySpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.crypto.spec.SecretKeySpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SecretKeySpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SecretKeySpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SecretKeySpec implementation public partial class SecretKeySpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/AllPackageClasses.cs deleted file mode 100644 index fc946ad9bb..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/AllPackageClasses.cs +++ /dev/null @@ -1,507 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio -{ - #region IIOException - /// - /// - /// - public partial class IIOException : Java.Io.IOException - { - const string _bridgeClassName = "javax.imageio.IIOException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IIOImage - /// - /// - /// - public partial class IIOImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.IIOImage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOImage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IIOImage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOParam - /// - /// - /// - public partial class IIOParam : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.IIOParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOParam class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOParam class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOParamController - /// - /// - /// - public partial class IIOParamController : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.IIOParamController"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOParamController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOParamController() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOParamController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOParamController(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageIO - /// - /// - /// - public partial class ImageIO : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.ImageIO"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageIO() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageIO(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageReader - /// - /// - /// - public partial class ImageReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.ImageReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageReadParam - /// - /// - /// - public partial class ImageReadParam : Javax.Imageio.IIOParam - { - const string _bridgeClassName = "javax.imageio.ImageReadParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageReadParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageReadParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageTranscoder - /// - /// - /// - public partial class ImageTranscoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.ImageTranscoder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageTranscoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageTranscoder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageTranscoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageTranscoder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageTypeSpecifier - /// - /// - /// - public partial class ImageTypeSpecifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.ImageTypeSpecifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageTypeSpecifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageTypeSpecifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageWriteParam - /// - /// - /// - public partial class ImageWriteParam : Javax.Imageio.IIOParam - { - const string _bridgeClassName = "javax.imageio.ImageWriteParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageWriteParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageWriteParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageWriter - /// - /// - /// - public partial class ImageWriter : Javax.Imageio.ImageTranscoder - { - const string _bridgeClassName = "javax.imageio.ImageWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Event/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Event/AllPackageClasses.cs deleted file mode 100644 index 5fab898edc..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Event/AllPackageClasses.cs +++ /dev/null @@ -1,365 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Event -{ - #region IIOReadProgressListener - /// - /// - /// - public partial class IIOReadProgressListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOReadProgressListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOReadProgressListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IIOReadProgressListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IIOReadProgressListenerDirect : IIOReadProgressListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.imageio.event.IIOReadProgressListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IIOReadUpdateListener - /// - /// - /// - public partial class IIOReadUpdateListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOReadUpdateListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOReadUpdateListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IIOReadUpdateListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IIOReadUpdateListenerDirect : IIOReadUpdateListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.imageio.event.IIOReadUpdateListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IIOReadWarningListener - /// - /// - /// - public partial class IIOReadWarningListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOReadWarningListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOReadWarningListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IIOReadWarningListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IIOReadWarningListenerDirect : IIOReadWarningListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.imageio.event.IIOReadWarningListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IIOWriteProgressListener - /// - /// - /// - public partial class IIOWriteProgressListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOWriteProgressListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOWriteProgressListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IIOWriteProgressListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IIOWriteProgressListenerDirect : IIOWriteProgressListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.imageio.event.IIOWriteProgressListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region IIOWriteWarningListener - /// - /// - /// - public partial class IIOWriteWarningListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOWriteWarningListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOWriteWarningListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region IIOWriteWarningListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class IIOWriteWarningListenerDirect : IIOWriteWarningListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.imageio.event.IIOWriteWarningListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadProgressListener.cs b/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadProgressListener.cs index b23586e354..7ad8fde175 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadProgressListener.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadProgressListener.cs @@ -25,6 +25,73 @@ namespace Javax.Imageio.Event { + #region IIOReadProgressListener declaration + /// + /// + /// + public partial class IIOReadProgressListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOReadProgressListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOReadProgressListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IIOReadProgressListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IIOReadProgressListenerDirect : IIOReadProgressListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.imageio.event.IIOReadProgressListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIIOReadProgressListener /// /// .NET interface for org.mases.jnet.generated.javax.imageio.event.IIOReadProgressListener implementing @@ -94,7 +161,7 @@ public partial interface IIIOReadProgressListener } #endregion - #region IIOReadProgressListener + #region IIOReadProgressListener implementation public partial class IIOReadProgressListener : Javax.Imageio.Event.IIIOReadProgressListener { #region Constructors @@ -336,7 +403,7 @@ public virtual void ThumbnailStarted(Javax.Imageio.ImageReader arg0, int arg1, i } #endregion - #region IIOReadProgressListenerDirect + #region IIOReadProgressListenerDirect implementation public partial class IIOReadProgressListenerDirect : Javax.Imageio.Event.IIIOReadProgressListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadUpdateListener.cs b/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadUpdateListener.cs index 42d007ee0a..366f45dcb0 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadUpdateListener.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadUpdateListener.cs @@ -25,6 +25,73 @@ namespace Javax.Imageio.Event { + #region IIOReadUpdateListener declaration + /// + /// + /// + public partial class IIOReadUpdateListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOReadUpdateListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOReadUpdateListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IIOReadUpdateListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IIOReadUpdateListenerDirect : IIOReadUpdateListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.imageio.event.IIOReadUpdateListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIIOReadUpdateListener /// /// .NET interface for org.mases.jnet.generated.javax.imageio.event.IIOReadUpdateListener implementing @@ -109,7 +176,7 @@ public partial interface IIIOReadUpdateListener } #endregion - #region IIOReadUpdateListener + #region IIOReadUpdateListener implementation public partial class IIOReadUpdateListener : Javax.Imageio.Event.IIIOReadUpdateListener { #region Constructors @@ -315,7 +382,7 @@ public virtual void ThumbnailUpdate(Javax.Imageio.ImageReader arg0, Java.Awt.Ima } #endregion - #region IIOReadUpdateListenerDirect + #region IIOReadUpdateListenerDirect implementation public partial class IIOReadUpdateListenerDirect : Javax.Imageio.Event.IIIOReadUpdateListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadWarningListener.cs b/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadWarningListener.cs index 03c5197517..65f609a555 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadWarningListener.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Event/IIOReadWarningListener.cs @@ -25,6 +25,73 @@ namespace Javax.Imageio.Event { + #region IIOReadWarningListener declaration + /// + /// + /// + public partial class IIOReadWarningListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOReadWarningListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOReadWarningListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IIOReadWarningListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IIOReadWarningListenerDirect : IIOReadWarningListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.imageio.event.IIOReadWarningListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIIOReadWarningListener /// /// .NET interface for org.mases.jnet.generated.javax.imageio.event.IIOReadWarningListener implementing @@ -49,7 +116,7 @@ public partial interface IIIOReadWarningListener } #endregion - #region IIOReadWarningListener + #region IIOReadWarningListener implementation public partial class IIOReadWarningListener : Javax.Imageio.Event.IIIOReadWarningListener { #region Constructors @@ -110,7 +177,7 @@ public virtual void WarningOccurred(Javax.Imageio.ImageReader arg0, Java.Lang.St } #endregion - #region IIOReadWarningListenerDirect + #region IIOReadWarningListenerDirect implementation public partial class IIOReadWarningListenerDirect : Javax.Imageio.Event.IIIOReadWarningListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteProgressListener.cs b/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteProgressListener.cs index 879262ac38..beb7ca45f3 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteProgressListener.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteProgressListener.cs @@ -25,6 +25,73 @@ namespace Javax.Imageio.Event { + #region IIOWriteProgressListener declaration + /// + /// + /// + public partial class IIOWriteProgressListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOWriteProgressListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOWriteProgressListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IIOWriteProgressListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IIOWriteProgressListenerDirect : IIOWriteProgressListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.imageio.event.IIOWriteProgressListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIIOWriteProgressListener /// /// .NET interface for org.mases.jnet.generated.javax.imageio.event.IIOWriteProgressListener implementing @@ -83,7 +150,7 @@ public partial interface IIIOWriteProgressListener } #endregion - #region IIOWriteProgressListener + #region IIOWriteProgressListener implementation public partial class IIOWriteProgressListener : Javax.Imageio.Event.IIIOWriteProgressListener { #region Constructors @@ -280,7 +347,7 @@ public virtual void WriteAborted(Javax.Imageio.ImageWriter arg0) } #endregion - #region IIOWriteProgressListenerDirect + #region IIOWriteProgressListenerDirect implementation public partial class IIOWriteProgressListenerDirect : Javax.Imageio.Event.IIIOWriteProgressListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteWarningListener.cs b/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteWarningListener.cs index 277a5a4a9f..f3b5af871c 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteWarningListener.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Event/IIOWriteWarningListener.cs @@ -25,6 +25,73 @@ namespace Javax.Imageio.Event { + #region IIOWriteWarningListener declaration + /// + /// + /// + public partial class IIOWriteWarningListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOWriteWarningListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.imageio.event.IIOWriteWarningListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region IIOWriteWarningListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class IIOWriteWarningListenerDirect : IIOWriteWarningListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.imageio.event.IIOWriteWarningListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IIIOWriteWarningListener /// /// .NET interface for org.mases.jnet.generated.javax.imageio.event.IIOWriteWarningListener implementing @@ -50,7 +117,7 @@ public partial interface IIIOWriteWarningListener } #endregion - #region IIOWriteWarningListener + #region IIOWriteWarningListener implementation public partial class IIOWriteWarningListener : Javax.Imageio.Event.IIIOWriteWarningListener { #region Constructors @@ -112,7 +179,7 @@ public virtual void WarningOccurred(Javax.Imageio.ImageWriter arg0, int arg1, Ja } #endregion - #region IIOWriteWarningListenerDirect + #region IIOWriteWarningListenerDirect implementation public partial class IIOWriteWarningListenerDirect : Javax.Imageio.Event.IIIOWriteWarningListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/IIOException.cs b/src/net/JNet/Generated/Javax/Imageio/IIOException.cs index 55b88a9e6c..fe94847ad0 100644 --- a/src/net/JNet/Generated/Javax/Imageio/IIOException.cs +++ b/src/net/JNet/Generated/Javax/Imageio/IIOException.cs @@ -25,7 +25,24 @@ namespace Javax.Imageio { - #region IIOException + #region IIOException declaration + /// + /// + /// + public partial class IIOException : Java.Io.IOException + { + const string _bridgeClassName = "javax.imageio.IIOException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IIOException implementation public partial class IIOException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/IIOImage.cs b/src/net/JNet/Generated/Javax/Imageio/IIOImage.cs index 2b5bceec1e..727754745f 100644 --- a/src/net/JNet/Generated/Javax/Imageio/IIOImage.cs +++ b/src/net/JNet/Generated/Javax/Imageio/IIOImage.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio { - #region IIOImage + #region IIOImage declaration + /// + /// + /// + public partial class IIOImage : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.IIOImage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOImage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IIOImage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOImage implementation public partial class IIOImage { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/IIOParam.cs b/src/net/JNet/Generated/Javax/Imageio/IIOParam.cs index f23f42094a..48fc15439b 100644 --- a/src/net/JNet/Generated/Javax/Imageio/IIOParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/IIOParam.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio { - #region IIOParam + #region IIOParam declaration + /// + /// + /// + public partial class IIOParam : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.IIOParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOParam class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOParam class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOParam implementation public partial class IIOParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/IIOParamController.cs b/src/net/JNet/Generated/Javax/Imageio/IIOParamController.cs index 50b3fb7395..d28ee5807b 100644 --- a/src/net/JNet/Generated/Javax/Imageio/IIOParamController.cs +++ b/src/net/JNet/Generated/Javax/Imageio/IIOParamController.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio { + #region IIOParamController declaration + /// + /// + /// + public partial class IIOParamController : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.IIOParamController"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOParamController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOParamController() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOParamController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOParamController(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IIIOParamController /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IIIOParamController } #endregion - #region IIOParamController + #region IIOParamController implementation public partial class IIOParamController : Javax.Imageio.IIIOParamController { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageIO.cs b/src/net/JNet/Generated/Javax/Imageio/ImageIO.cs index e4e5298e72..cb19a6bd0a 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageIO.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageIO.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio { - #region ImageIO + #region ImageIO declaration + /// + /// + /// + public partial class ImageIO : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.ImageIO"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageIO() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageIO(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageIO implementation public partial class ImageIO { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageReadParam.cs b/src/net/JNet/Generated/Javax/Imageio/ImageReadParam.cs index 8b30f43fcf..5244eb1846 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageReadParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageReadParam.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio { - #region ImageReadParam + #region ImageReadParam declaration + /// + /// + /// + public partial class ImageReadParam : Javax.Imageio.IIOParam + { + const string _bridgeClassName = "javax.imageio.ImageReadParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageReadParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageReadParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageReadParam implementation public partial class ImageReadParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageReader.cs b/src/net/JNet/Generated/Javax/Imageio/ImageReader.cs index b4d94af60e..4e2595875b 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageReader.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageReader.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio { - #region ImageReader + #region ImageReader declaration + /// + /// + /// + public partial class ImageReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.ImageReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageReader implementation public partial class ImageReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageTranscoder.cs b/src/net/JNet/Generated/Javax/Imageio/ImageTranscoder.cs index 73e094dbd0..278c9808c0 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageTranscoder.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageTranscoder.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio { + #region ImageTranscoder declaration + /// + /// + /// + public partial class ImageTranscoder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.ImageTranscoder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageTranscoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageTranscoder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageTranscoder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageTranscoder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IImageTranscoder /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IImageTranscoder } #endregion - #region ImageTranscoder + #region ImageTranscoder implementation public partial class ImageTranscoder : Javax.Imageio.IImageTranscoder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageTypeSpecifier.cs b/src/net/JNet/Generated/Javax/Imageio/ImageTypeSpecifier.cs index 2be4aa82ad..e87ed344bc 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageTypeSpecifier.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageTypeSpecifier.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio { - #region ImageTypeSpecifier + #region ImageTypeSpecifier declaration + /// + /// + /// + public partial class ImageTypeSpecifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.ImageTypeSpecifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageTypeSpecifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageTypeSpecifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageTypeSpecifier implementation public partial class ImageTypeSpecifier { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageWriteParam.cs b/src/net/JNet/Generated/Javax/Imageio/ImageWriteParam.cs index 5888055d9e..e0b1a8279c 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageWriteParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageWriteParam.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio { - #region ImageWriteParam + #region ImageWriteParam declaration + /// + /// + /// + public partial class ImageWriteParam : Javax.Imageio.IIOParam + { + const string _bridgeClassName = "javax.imageio.ImageWriteParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageWriteParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageWriteParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageWriteParam implementation public partial class ImageWriteParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/ImageWriter.cs b/src/net/JNet/Generated/Javax/Imageio/ImageWriter.cs index d495c4350a..1414c39284 100644 --- a/src/net/JNet/Generated/Javax/Imageio/ImageWriter.cs +++ b/src/net/JNet/Generated/Javax/Imageio/ImageWriter.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio { - #region ImageWriter + #region ImageWriter declaration + /// + /// + /// + public partial class ImageWriter : Javax.Imageio.ImageTranscoder + { + const string _bridgeClassName = "javax.imageio.ImageWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageWriter implementation public partial class ImageWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/AllPackageClasses.cs deleted file mode 100644 index 87a77dce27..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/AllPackageClasses.cs +++ /dev/null @@ -1,280 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Metadata -{ - #region IIOInvalidTreeException - /// - /// - /// - public partial class IIOInvalidTreeException : Javax.Imageio.IIOException - { - const string _bridgeClassName = "javax.imageio.metadata.IIOInvalidTreeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IIOMetadata - /// - /// - /// - public partial class IIOMetadata : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.metadata.IIOMetadata"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOMetadata class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadata() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOMetadata class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadata(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOMetadataController - /// - /// - /// - public partial class IIOMetadataController : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataController"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOMetadataController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadataController() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOMetadataController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadataController(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOMetadataFormat - /// - /// - /// - public partial class IIOMetadataFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOMetadataFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadataFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOMetadataFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadataFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOMetadataFormatImpl - /// - /// - /// - public partial class IIOMetadataFormatImpl : Javax.Imageio.Metadata.IIOMetadataFormat - { - const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataFormatImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOMetadataFormatImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadataFormatImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOMetadataFormatImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOMetadataFormatImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOMetadataNode - /// - /// - /// - public partial class IIOMetadataNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataNode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOMetadataNode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IIOMetadataNode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOInvalidTreeException.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOInvalidTreeException.cs index 763d4124d5..e749b469e5 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOInvalidTreeException.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOInvalidTreeException.cs @@ -25,7 +25,24 @@ namespace Javax.Imageio.Metadata { - #region IIOInvalidTreeException + #region IIOInvalidTreeException declaration + /// + /// + /// + public partial class IIOInvalidTreeException : Javax.Imageio.IIOException + { + const string _bridgeClassName = "javax.imageio.metadata.IIOInvalidTreeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IIOInvalidTreeException implementation public partial class IIOInvalidTreeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadata.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadata.cs index 9f8a454d2f..b081e1d63e 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadata.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadata.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Metadata { - #region IIOMetadata + #region IIOMetadata declaration + /// + /// + /// + public partial class IIOMetadata : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.metadata.IIOMetadata"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOMetadata class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadata() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOMetadata class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadata(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOMetadata implementation public partial class IIOMetadata { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataController.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataController.cs index babab6a488..5d966e62aa 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataController.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataController.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio.Metadata { + #region IIOMetadataController declaration + /// + /// + /// + public partial class IIOMetadataController : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataController"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOMetadataController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadataController() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOMetadataController class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadataController(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IIIOMetadataController /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IIIOMetadataController } #endregion - #region IIOMetadataController + #region IIOMetadataController implementation public partial class IIOMetadataController : Javax.Imageio.Metadata.IIIOMetadataController { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormat.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormat.cs index 789a8ecf92..55d7fbeb5c 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormat.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormat.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio.Metadata { + #region IIOMetadataFormat declaration + /// + /// + /// + public partial class IIOMetadataFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOMetadataFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadataFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOMetadataFormat class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadataFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IIIOMetadataFormat /// /// .NET interface for TO BE DEFINED FROM USER @@ -210,7 +257,7 @@ public partial interface IIIOMetadataFormat } #endregion - #region IIOMetadataFormat + #region IIOMetadataFormat implementation public partial class IIOMetadataFormat : Javax.Imageio.Metadata.IIIOMetadataFormat { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormatImpl.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormatImpl.cs index e1f8b95513..671c09a070 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormatImpl.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataFormatImpl.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Metadata { - #region IIOMetadataFormatImpl + #region IIOMetadataFormatImpl declaration + /// + /// + /// + public partial class IIOMetadataFormatImpl : Javax.Imageio.Metadata.IIOMetadataFormat + { + const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataFormatImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOMetadataFormatImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadataFormatImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOMetadataFormatImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOMetadataFormatImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOMetadataFormatImpl implementation public partial class IIOMetadataFormatImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataNode.cs b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataNode.cs index cdc56f5a2d..970fac1679 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataNode.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Metadata/IIOMetadataNode.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Metadata { - #region IIOMetadataNode + #region IIOMetadataNode declaration + /// + /// + /// + public partial class IIOMetadataNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.metadata.IIOMetadataNode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOMetadataNode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IIOMetadataNode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOMetadataNode implementation public partial class IIOMetadataNode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/AllPackageClasses.cs deleted file mode 100644 index 978fb27441..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/AllPackageClasses.cs +++ /dev/null @@ -1,75 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Plugins.Bmp -{ - #region BMPImageWriteParam - /// - /// - /// - public partial class BMPImageWriteParam : Javax.Imageio.ImageWriteParam - { - const string _bridgeClassName = "javax.imageio.plugins.bmp.BMPImageWriteParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BMPImageWriteParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BMPImageWriteParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/BMPImageWriteParam.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/BMPImageWriteParam.cs index f7b27bc6a8..cca7bdf84f 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/BMPImageWriteParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Bmp/BMPImageWriteParam.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Bmp { - #region BMPImageWriteParam + #region BMPImageWriteParam declaration + /// + /// + /// + public partial class BMPImageWriteParam : Javax.Imageio.ImageWriteParam + { + const string _bridgeClassName = "javax.imageio.plugins.bmp.BMPImageWriteParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BMPImageWriteParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BMPImageWriteParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BMPImageWriteParam implementation public partial class BMPImageWriteParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/AllPackageClasses.cs deleted file mode 100644 index d8347ae9c5..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/AllPackageClasses.cs +++ /dev/null @@ -1,210 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Plugins.Jpeg -{ - #region JPEGHuffmanTable - /// - /// - /// - public partial class JPEGHuffmanTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGHuffmanTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPEGHuffmanTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPEGHuffmanTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JPEGImageReadParam - /// - /// - /// - public partial class JPEGImageReadParam : Javax.Imageio.ImageReadParam - { - const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGImageReadParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPEGImageReadParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPEGImageReadParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JPEGImageWriteParam - /// - /// - /// - public partial class JPEGImageWriteParam : Javax.Imageio.ImageWriteParam - { - const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGImageWriteParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPEGImageWriteParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPEGImageWriteParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JPEGQTable - /// - /// - /// - public partial class JPEGQTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGQTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPEGQTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPEGQTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGHuffmanTable.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGHuffmanTable.cs index bdc58449e2..b62cc17e56 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGHuffmanTable.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGHuffmanTable.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Jpeg { - #region JPEGHuffmanTable + #region JPEGHuffmanTable declaration + /// + /// + /// + public partial class JPEGHuffmanTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGHuffmanTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPEGHuffmanTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPEGHuffmanTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JPEGHuffmanTable implementation public partial class JPEGHuffmanTable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageReadParam.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageReadParam.cs index 6c9a96ecba..d8860a2524 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageReadParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageReadParam.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Jpeg { - #region JPEGImageReadParam + #region JPEGImageReadParam declaration + /// + /// + /// + public partial class JPEGImageReadParam : Javax.Imageio.ImageReadParam + { + const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGImageReadParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPEGImageReadParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPEGImageReadParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JPEGImageReadParam implementation public partial class JPEGImageReadParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageWriteParam.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageWriteParam.cs index 41e281d6a2..e44854eca1 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageWriteParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGImageWriteParam.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Jpeg { - #region JPEGImageWriteParam + #region JPEGImageWriteParam declaration + /// + /// + /// + public partial class JPEGImageWriteParam : Javax.Imageio.ImageWriteParam + { + const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGImageWriteParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPEGImageWriteParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPEGImageWriteParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JPEGImageWriteParam implementation public partial class JPEGImageWriteParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGQTable.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGQTable.cs index 62c387713e..40c966fd5f 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGQTable.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Jpeg/JPEGQTable.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Jpeg { - #region JPEGQTable + #region JPEGQTable declaration + /// + /// + /// + public partial class JPEGQTable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.plugins.jpeg.JPEGQTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPEGQTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPEGQTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JPEGQTable implementation public partial class JPEGQTable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/AllPackageClasses.cs deleted file mode 100644 index 7d6552899d..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/AllPackageClasses.cs +++ /dev/null @@ -1,570 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Plugins.Tiff -{ - #region BaselineTIFFTagSet - /// - /// - /// - public partial class BaselineTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.BaselineTIFFTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BaselineTIFFTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BaselineTIFFTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExifGPSTagSet - /// - /// - /// - public partial class ExifGPSTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifGPSTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExifGPSTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExifGPSTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExifInteroperabilityTagSet - /// - /// - /// - public partial class ExifInteroperabilityTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifInteroperabilityTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExifInteroperabilityTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExifInteroperabilityTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExifParentTIFFTagSet - /// - /// - /// - public partial class ExifParentTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifParentTIFFTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExifParentTIFFTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExifParentTIFFTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExifTIFFTagSet - /// - /// - /// - public partial class ExifTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifTIFFTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExifTIFFTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExifTIFFTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FaxTIFFTagSet - /// - /// - /// - public partial class FaxTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.FaxTIFFTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FaxTIFFTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FaxTIFFTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GeoTIFFTagSet - /// - /// - /// - public partial class GeoTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.GeoTIFFTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GeoTIFFTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GeoTIFFTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TIFFDirectory - /// - /// - /// - public partial class TIFFDirectory : Java.Lang.Cloneable - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFDirectory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TIFFDirectory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TIFFDirectory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TIFFField - /// - /// - /// - public partial class TIFFField : Java.Lang.Cloneable - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TIFFField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TIFFField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TIFFImageReadParam - /// - /// - /// - public partial class TIFFImageReadParam : Javax.Imageio.ImageReadParam - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFImageReadParam"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TIFFImageReadParam() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TIFFImageReadParam(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TIFFTag - /// - /// - /// - public partial class TIFFTag : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFTag"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TIFFTag() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TIFFTag(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TIFFTagSet - /// - /// - /// - public partial class TIFFTagSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFTagSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TIFFTagSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TIFFTagSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/BaselineTIFFTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/BaselineTIFFTagSet.cs index 558b0b39ec..0850185988 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/BaselineTIFFTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/BaselineTIFFTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region BaselineTIFFTagSet + #region BaselineTIFFTagSet declaration + /// + /// + /// + public partial class BaselineTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.BaselineTIFFTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BaselineTIFFTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BaselineTIFFTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BaselineTIFFTagSet implementation public partial class BaselineTIFFTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifGPSTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifGPSTagSet.cs index cdca2d6354..d34ff733c3 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifGPSTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifGPSTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region ExifGPSTagSet + #region ExifGPSTagSet declaration + /// + /// + /// + public partial class ExifGPSTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifGPSTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExifGPSTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExifGPSTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExifGPSTagSet implementation public partial class ExifGPSTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifInteroperabilityTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifInteroperabilityTagSet.cs index 5d59f258bd..71da07e165 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifInteroperabilityTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifInteroperabilityTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region ExifInteroperabilityTagSet + #region ExifInteroperabilityTagSet declaration + /// + /// + /// + public partial class ExifInteroperabilityTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifInteroperabilityTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExifInteroperabilityTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExifInteroperabilityTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExifInteroperabilityTagSet implementation public partial class ExifInteroperabilityTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifParentTIFFTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifParentTIFFTagSet.cs index 63818209ac..72891e6176 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifParentTIFFTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifParentTIFFTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region ExifParentTIFFTagSet + #region ExifParentTIFFTagSet declaration + /// + /// + /// + public partial class ExifParentTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifParentTIFFTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExifParentTIFFTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExifParentTIFFTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExifParentTIFFTagSet implementation public partial class ExifParentTIFFTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifTIFFTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifTIFFTagSet.cs index c8fe70531f..272a5e94ff 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifTIFFTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/ExifTIFFTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region ExifTIFFTagSet + #region ExifTIFFTagSet declaration + /// + /// + /// + public partial class ExifTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.ExifTIFFTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExifTIFFTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExifTIFFTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExifTIFFTagSet implementation public partial class ExifTIFFTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/FaxTIFFTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/FaxTIFFTagSet.cs index 4a5fbec189..8be564c014 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/FaxTIFFTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/FaxTIFFTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region FaxTIFFTagSet + #region FaxTIFFTagSet declaration + /// + /// + /// + public partial class FaxTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.FaxTIFFTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FaxTIFFTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FaxTIFFTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FaxTIFFTagSet implementation public partial class FaxTIFFTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/GeoTIFFTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/GeoTIFFTagSet.cs index a4be820c8d..7baf4c1137 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/GeoTIFFTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/GeoTIFFTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region GeoTIFFTagSet + #region GeoTIFFTagSet declaration + /// + /// + /// + public partial class GeoTIFFTagSet : Javax.Imageio.Plugins.Tiff.TIFFTagSet + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.GeoTIFFTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GeoTIFFTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GeoTIFFTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GeoTIFFTagSet implementation public partial class GeoTIFFTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFDirectory.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFDirectory.cs index 3c210043d3..da0f7aee70 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFDirectory.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFDirectory.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region TIFFDirectory + #region TIFFDirectory declaration + /// + /// + /// + public partial class TIFFDirectory : Java.Lang.Cloneable + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFDirectory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TIFFDirectory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TIFFDirectory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TIFFDirectory implementation public partial class TIFFDirectory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFField.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFField.cs index 37e40a83a1..7ab9a6641a 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFField.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFField.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region TIFFField + #region TIFFField declaration + /// + /// + /// + public partial class TIFFField : Java.Lang.Cloneable + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TIFFField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TIFFField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TIFFField implementation public partial class TIFFField { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFImageReadParam.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFImageReadParam.cs index e703630ce1..d408d121fe 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFImageReadParam.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFImageReadParam.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region TIFFImageReadParam + #region TIFFImageReadParam declaration + /// + /// + /// + public partial class TIFFImageReadParam : Javax.Imageio.ImageReadParam + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFImageReadParam"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TIFFImageReadParam() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TIFFImageReadParam(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TIFFImageReadParam implementation public partial class TIFFImageReadParam { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTag.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTag.cs index 0defe16ed3..7793fe6d37 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTag.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTag.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region TIFFTag + #region TIFFTag declaration + /// + /// + /// + public partial class TIFFTag : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFTag"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TIFFTag() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TIFFTag(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TIFFTag implementation public partial class TIFFTag { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTagSet.cs b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTagSet.cs index d1358111f4..aff815d08e 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTagSet.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Plugins/Tiff/TIFFTagSet.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Plugins.Tiff { - #region TIFFTagSet + #region TIFFTagSet declaration + /// + /// + /// + public partial class TIFFTagSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.plugins.tiff.TIFFTagSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TIFFTagSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TIFFTagSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TIFFTagSet implementation public partial class TIFFTagSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/AllPackageClasses.cs deleted file mode 100644 index 62c2f2e692..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,543 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Spi -{ - #region IIORegistry - /// - /// - /// - public partial class IIORegistry : Javax.Imageio.Spi.ServiceRegistry - { - const string _bridgeClassName = "javax.imageio.spi.IIORegistry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIORegistry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IIORegistry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOServiceProvider - /// - /// - /// - public partial class IIOServiceProvider : Javax.Imageio.Spi.RegisterableService - { - const string _bridgeClassName = "javax.imageio.spi.IIOServiceProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IIOServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOServiceProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IIOServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IIOServiceProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageInputStreamSpi - /// - /// - /// - public partial class ImageInputStreamSpi : Javax.Imageio.Spi.IIOServiceProvider - { - const string _bridgeClassName = "javax.imageio.spi.ImageInputStreamSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageInputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageInputStreamSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageInputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageInputStreamSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageOutputStreamSpi - /// - /// - /// - public partial class ImageOutputStreamSpi : Javax.Imageio.Spi.IIOServiceProvider - { - const string _bridgeClassName = "javax.imageio.spi.ImageOutputStreamSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageOutputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageOutputStreamSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageOutputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageOutputStreamSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageReaderSpi - /// - /// - /// - public partial class ImageReaderSpi : Javax.Imageio.Spi.ImageReaderWriterSpi - { - const string _bridgeClassName = "javax.imageio.spi.ImageReaderSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageReaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageReaderSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageReaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageReaderSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageReaderWriterSpi - /// - /// - /// - public partial class ImageReaderWriterSpi : Javax.Imageio.Spi.IIOServiceProvider - { - const string _bridgeClassName = "javax.imageio.spi.ImageReaderWriterSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageReaderWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageReaderWriterSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageReaderWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageReaderWriterSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageTranscoderSpi - /// - /// - /// - public partial class ImageTranscoderSpi : Javax.Imageio.Spi.IIOServiceProvider - { - const string _bridgeClassName = "javax.imageio.spi.ImageTranscoderSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageTranscoderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageTranscoderSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageTranscoderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageTranscoderSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageWriterSpi - /// - /// - /// - public partial class ImageWriterSpi : Javax.Imageio.Spi.ImageReaderWriterSpi - { - const string _bridgeClassName = "javax.imageio.spi.ImageWriterSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageWriterSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageWriterSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RegisterableService - /// - /// - /// - public partial class RegisterableService : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.spi.RegisterableService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RegisterableService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RegisterableService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RegisterableService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RegisterableService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServiceRegistry - /// - /// - /// - public partial class ServiceRegistry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.spi.ServiceRegistry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ServiceRegistry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ServiceRegistry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Filter - /// - /// - /// - public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.spi.ServiceRegistry$Filter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Filter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/IIORegistry.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/IIORegistry.cs index f2c6e7203a..94f0ca1ae3 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/IIORegistry.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/IIORegistry.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Spi { - #region IIORegistry + #region IIORegistry declaration + /// + /// + /// + public partial class IIORegistry : Javax.Imageio.Spi.ServiceRegistry + { + const string _bridgeClassName = "javax.imageio.spi.IIORegistry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIORegistry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IIORegistry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIORegistry implementation public partial class IIORegistry { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/IIOServiceProvider.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/IIOServiceProvider.cs index e602b9385f..3d36378ddc 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/IIOServiceProvider.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/IIOServiceProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region IIOServiceProvider + #region IIOServiceProvider declaration + /// + /// + /// + public partial class IIOServiceProvider : Javax.Imageio.Spi.RegisterableService + { + const string _bridgeClassName = "javax.imageio.spi.IIOServiceProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IIOServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOServiceProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IIOServiceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IIOServiceProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOServiceProvider implementation public partial class IIOServiceProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageInputStreamSpi.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageInputStreamSpi.cs index b0653057cb..c35260c802 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageInputStreamSpi.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageInputStreamSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region ImageInputStreamSpi + #region ImageInputStreamSpi declaration + /// + /// + /// + public partial class ImageInputStreamSpi : Javax.Imageio.Spi.IIOServiceProvider + { + const string _bridgeClassName = "javax.imageio.spi.ImageInputStreamSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageInputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageInputStreamSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageInputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageInputStreamSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageInputStreamSpi implementation public partial class ImageInputStreamSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageOutputStreamSpi.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageOutputStreamSpi.cs index 07a967d996..019551b55a 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageOutputStreamSpi.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageOutputStreamSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region ImageOutputStreamSpi + #region ImageOutputStreamSpi declaration + /// + /// + /// + public partial class ImageOutputStreamSpi : Javax.Imageio.Spi.IIOServiceProvider + { + const string _bridgeClassName = "javax.imageio.spi.ImageOutputStreamSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageOutputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageOutputStreamSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageOutputStreamSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageOutputStreamSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageOutputStreamSpi implementation public partial class ImageOutputStreamSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderSpi.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderSpi.cs index d73013e218..eb9015c438 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderSpi.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region ImageReaderSpi + #region ImageReaderSpi declaration + /// + /// + /// + public partial class ImageReaderSpi : Javax.Imageio.Spi.ImageReaderWriterSpi + { + const string _bridgeClassName = "javax.imageio.spi.ImageReaderSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageReaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageReaderSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageReaderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageReaderSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageReaderSpi implementation public partial class ImageReaderSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderWriterSpi.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderWriterSpi.cs index 9e286d47cb..bc5be1982d 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderWriterSpi.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageReaderWriterSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region ImageReaderWriterSpi + #region ImageReaderWriterSpi declaration + /// + /// + /// + public partial class ImageReaderWriterSpi : Javax.Imageio.Spi.IIOServiceProvider + { + const string _bridgeClassName = "javax.imageio.spi.ImageReaderWriterSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageReaderWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageReaderWriterSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageReaderWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageReaderWriterSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageReaderWriterSpi implementation public partial class ImageReaderWriterSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageTranscoderSpi.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageTranscoderSpi.cs index 29964ac1cf..9c63ad24f4 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageTranscoderSpi.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageTranscoderSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region ImageTranscoderSpi + #region ImageTranscoderSpi declaration + /// + /// + /// + public partial class ImageTranscoderSpi : Javax.Imageio.Spi.IIOServiceProvider + { + const string _bridgeClassName = "javax.imageio.spi.ImageTranscoderSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageTranscoderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageTranscoderSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageTranscoderSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageTranscoderSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageTranscoderSpi implementation public partial class ImageTranscoderSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageWriterSpi.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageWriterSpi.cs index 1604ef8df8..ad17fc3adb 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ImageWriterSpi.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ImageWriterSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Spi { - #region ImageWriterSpi + #region ImageWriterSpi declaration + /// + /// + /// + public partial class ImageWriterSpi : Javax.Imageio.Spi.ImageReaderWriterSpi + { + const string _bridgeClassName = "javax.imageio.spi.ImageWriterSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageWriterSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageWriterSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageWriterSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageWriterSpi implementation public partial class ImageWriterSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/RegisterableService.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/RegisterableService.cs index 43a34ad895..9b5b463085 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/RegisterableService.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/RegisterableService.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio.Spi { + #region RegisterableService declaration + /// + /// + /// + public partial class RegisterableService : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.spi.RegisterableService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RegisterableService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RegisterableService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RegisterableService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RegisterableService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRegisterableService /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IRegisterableService } #endregion - #region RegisterableService + #region RegisterableService implementation public partial class RegisterableService : Javax.Imageio.Spi.IRegisterableService { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Spi/ServiceRegistry.cs b/src/net/JNet/Generated/Javax/Imageio/Spi/ServiceRegistry.cs index 6686a9e436..50a5eb3be9 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Spi/ServiceRegistry.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Spi/ServiceRegistry.cs @@ -25,7 +25,99 @@ namespace Javax.Imageio.Spi { - #region ServiceRegistry + #region ServiceRegistry declaration + /// + /// + /// + public partial class ServiceRegistry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.spi.ServiceRegistry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ServiceRegistry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ServiceRegistry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Filter declaration + /// + /// + /// + public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.spi.ServiceRegistry$Filter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Filter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Filter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ServiceRegistry implementation public partial class ServiceRegistry { #region Constructors @@ -212,7 +304,7 @@ public void RegisterServiceProviders(Java.Util.Iterator arg0) #endregion #region Nested classes - #region Filter + #region Filter implementation public partial class Filter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/AllPackageClasses.cs deleted file mode 100644 index 25a7960b6e..0000000000 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/AllPackageClasses.cs +++ /dev/null @@ -1,533 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Imageio.Stream -{ - #region FileCacheImageInputStream - /// - /// - /// - public partial class FileCacheImageInputStream : Javax.Imageio.Stream.ImageInputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.FileCacheImageInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileCacheImageInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileCacheImageInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileCacheImageOutputStream - /// - /// - /// - public partial class FileCacheImageOutputStream : Javax.Imageio.Stream.ImageOutputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.FileCacheImageOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileCacheImageOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileCacheImageOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileImageInputStream - /// - /// - /// - public partial class FileImageInputStream : Javax.Imageio.Stream.ImageInputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.FileImageInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileImageInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileImageInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileImageOutputStream - /// - /// - /// - public partial class FileImageOutputStream : Javax.Imageio.Stream.ImageOutputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.FileImageOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileImageOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileImageOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IIOByteBuffer - /// - /// - /// - public partial class IIOByteBuffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.stream.IIOByteBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IIOByteBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IIOByteBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageInputStream - /// - /// - /// - public partial class ImageInputStream : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.stream.ImageInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageInputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageInputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageInputStreamImpl - /// - /// - /// - public partial class ImageInputStreamImpl : Javax.Imageio.Stream.ImageInputStream - { - const string _bridgeClassName = "javax.imageio.stream.ImageInputStreamImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageInputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageInputStreamImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageInputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageInputStreamImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageOutputStream - /// - /// - /// - public partial class ImageOutputStream : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.imageio.stream.ImageOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageOutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageOutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageOutputStreamImpl - /// - /// - /// - public partial class ImageOutputStreamImpl : Javax.Imageio.Stream.ImageInputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.ImageOutputStreamImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ImageOutputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageOutputStreamImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ImageOutputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ImageOutputStreamImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryCacheImageInputStream - /// - /// - /// - public partial class MemoryCacheImageInputStream : Javax.Imageio.Stream.ImageInputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.MemoryCacheImageInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryCacheImageInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryCacheImageInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MemoryCacheImageOutputStream - /// - /// - /// - public partial class MemoryCacheImageOutputStream : Javax.Imageio.Stream.ImageOutputStreamImpl - { - const string _bridgeClassName = "javax.imageio.stream.MemoryCacheImageOutputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MemoryCacheImageOutputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MemoryCacheImageOutputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageInputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageInputStream.cs index 27ce258409..526cf06137 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageInputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageInputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region FileCacheImageInputStream + #region FileCacheImageInputStream declaration + /// + /// + /// + public partial class FileCacheImageInputStream : Javax.Imageio.Stream.ImageInputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.FileCacheImageInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileCacheImageInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileCacheImageInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileCacheImageInputStream implementation public partial class FileCacheImageInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageOutputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageOutputStream.cs index b2f1e657b4..2e9c1a93e8 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageOutputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/FileCacheImageOutputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region FileCacheImageOutputStream + #region FileCacheImageOutputStream declaration + /// + /// + /// + public partial class FileCacheImageOutputStream : Javax.Imageio.Stream.ImageOutputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.FileCacheImageOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileCacheImageOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileCacheImageOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileCacheImageOutputStream implementation public partial class FileCacheImageOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageInputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageInputStream.cs index 0a77317975..52a743232e 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageInputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageInputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region FileImageInputStream + #region FileImageInputStream declaration + /// + /// + /// + public partial class FileImageInputStream : Javax.Imageio.Stream.ImageInputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.FileImageInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileImageInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileImageInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileImageInputStream implementation public partial class FileImageInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageOutputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageOutputStream.cs index 7cef795625..76dfbc00a8 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageOutputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/FileImageOutputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region FileImageOutputStream + #region FileImageOutputStream declaration + /// + /// + /// + public partial class FileImageOutputStream : Javax.Imageio.Stream.ImageOutputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.FileImageOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileImageOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileImageOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileImageOutputStream implementation public partial class FileImageOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/IIOByteBuffer.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/IIOByteBuffer.cs index 6eaf9364b9..f72cd8a8bd 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/IIOByteBuffer.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/IIOByteBuffer.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region IIOByteBuffer + #region IIOByteBuffer declaration + /// + /// + /// + public partial class IIOByteBuffer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.stream.IIOByteBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IIOByteBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IIOByteBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IIOByteBuffer implementation public partial class IIOByteBuffer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStream.cs index 79225a7e57..93a58de6f0 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStream.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio.Stream { + #region ImageInputStream declaration + /// + /// + /// + public partial class ImageInputStream : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.stream.ImageInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageInputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageInputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IImageInputStream /// /// .NET interface for TO BE DEFINED FROM USER @@ -307,7 +354,7 @@ public partial interface IImageInputStream } #endregion - #region ImageInputStream + #region ImageInputStream implementation public partial class ImageInputStream : Javax.Imageio.Stream.IImageInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStreamImpl.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStreamImpl.cs index dd1ad00f41..6f28a226c4 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStreamImpl.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageInputStreamImpl.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Stream { - #region ImageInputStreamImpl + #region ImageInputStreamImpl declaration + /// + /// + /// + public partial class ImageInputStreamImpl : Javax.Imageio.Stream.ImageInputStream + { + const string _bridgeClassName = "javax.imageio.stream.ImageInputStreamImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageInputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageInputStreamImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageInputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageInputStreamImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageInputStreamImpl implementation public partial class ImageInputStreamImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStream.cs index 2488dc1d16..e59d77a602 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStream.cs @@ -25,6 +25,53 @@ namespace Javax.Imageio.Stream { + #region ImageOutputStream declaration + /// + /// + /// + public partial class ImageOutputStream : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.imageio.stream.ImageOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageOutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageOutputStream class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IImageOutputStream /// /// .NET interface for TO BE DEFINED FROM USER @@ -196,7 +243,7 @@ public partial interface IImageOutputStream } #endregion - #region ImageOutputStream + #region ImageOutputStream implementation public partial class ImageOutputStream : Javax.Imageio.Stream.IImageOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStreamImpl.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStreamImpl.cs index 3878063eac..0a8447dfa6 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStreamImpl.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/ImageOutputStreamImpl.cs @@ -25,7 +25,54 @@ namespace Javax.Imageio.Stream { - #region ImageOutputStreamImpl + #region ImageOutputStreamImpl declaration + /// + /// + /// + public partial class ImageOutputStreamImpl : Javax.Imageio.Stream.ImageInputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.ImageOutputStreamImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ImageOutputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageOutputStreamImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ImageOutputStreamImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ImageOutputStreamImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageOutputStreamImpl implementation public partial class ImageOutputStreamImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageInputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageInputStream.cs index ab45a87ed4..72e099d578 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageInputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageInputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region MemoryCacheImageInputStream + #region MemoryCacheImageInputStream declaration + /// + /// + /// + public partial class MemoryCacheImageInputStream : Javax.Imageio.Stream.ImageInputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.MemoryCacheImageInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryCacheImageInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryCacheImageInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryCacheImageInputStream implementation public partial class MemoryCacheImageInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageOutputStream.cs b/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageOutputStream.cs index 76dab6cfc9..0aee543905 100644 --- a/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageOutputStream.cs +++ b/src/net/JNet/Generated/Javax/Imageio/Stream/MemoryCacheImageOutputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Imageio.Stream { - #region MemoryCacheImageOutputStream + #region MemoryCacheImageOutputStream declaration + /// + /// + /// + public partial class MemoryCacheImageOutputStream : Javax.Imageio.Stream.ImageOutputStreamImpl + { + const string _bridgeClassName = "javax.imageio.stream.MemoryCacheImageOutputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MemoryCacheImageOutputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MemoryCacheImageOutputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MemoryCacheImageOutputStream implementation public partial class MemoryCacheImageOutputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Lang/Model/AllPackageClasses.cs deleted file mode 100644 index dce1bf7d29..0000000000 --- a/src/net/JNet/Generated/Javax/Lang/Model/AllPackageClasses.cs +++ /dev/null @@ -1,139 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Lang.Model -{ - #region AnnotatedConstruct - /// - /// - /// - public partial class AnnotatedConstruct : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.AnnotatedConstruct"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotatedConstruct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedConstruct() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotatedConstruct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotatedConstruct(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SourceVersion - /// - /// - /// - public partial class SourceVersion : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.SourceVersion"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SourceVersion() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SourceVersion(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnknownEntityException - /// - /// - /// - public partial class UnknownEntityException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.lang.model.UnknownEntityException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Lang/Model/AnnotatedConstruct.cs b/src/net/JNet/Generated/Javax/Lang/Model/AnnotatedConstruct.cs index cb6586b036..6b8da6363b 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/AnnotatedConstruct.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/AnnotatedConstruct.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model { + #region AnnotatedConstruct declaration + /// + /// + /// + public partial class AnnotatedConstruct : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.AnnotatedConstruct"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotatedConstruct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedConstruct() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotatedConstruct class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotatedConstruct(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotatedConstruct /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IAnnotatedConstruct } #endregion - #region AnnotatedConstruct + #region AnnotatedConstruct implementation public partial class AnnotatedConstruct : Javax.Lang.Model.IAnnotatedConstruct { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/AllPackageClasses.cs deleted file mode 100644 index 3ca9801261..0000000000 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/AllPackageClasses.cs +++ /dev/null @@ -1,1395 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Lang.Model.Element -{ - #region AnnotationMirror - /// - /// - /// - public partial class AnnotationMirror : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.AnnotationMirror"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotationMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationMirror() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotationMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationMirror(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotationValue - /// - /// - /// - public partial class AnnotationValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.AnnotationValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotationValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotationValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotationValueVisitor - /// - /// - /// - public partial class AnnotationValueVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.AnnotationValueVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationValueVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationValueVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AnnotationValueVisitor - /// - /// - /// - /// - /// - public partial class AnnotationValueVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.lang.model.element.AnnotationValueVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationValueVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AnnotationValueVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Element - /// - /// - /// - public partial class Element : Javax.Lang.Model.AnnotatedConstruct - { - const string _bridgeClassName = "javax.lang.model.element.Element"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Element() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Element(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKind - /// - /// - /// - public partial class ElementKind : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.element.ElementKind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementVisitor - /// - /// - /// - public partial class ElementVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.ElementVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementVisitor - /// - /// - /// - /// - /// - public partial class ElementVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.lang.model.element.ElementVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExecutableElement - /// - /// - /// - public partial class ExecutableElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.ExecutableElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExecutableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExecutableElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExecutableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExecutableElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Modifier - /// - /// - /// - public partial class Modifier : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.element.Modifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Modifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Modifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModuleElement - /// - /// - /// - public partial class ModuleElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModuleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModuleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModuleElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Directive - /// - /// - /// - public partial class Directive : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$Directive"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Directive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Directive() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Directive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Directive(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DirectiveKind - /// - /// - /// - public partial class DirectiveKind : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$DirectiveKind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DirectiveKind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DirectiveKind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DirectiveVisitor - /// - /// - /// - public partial class DirectiveVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$DirectiveVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectiveVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectiveVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DirectiveVisitor - /// - /// - /// - /// - /// - public partial class DirectiveVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$DirectiveVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectiveVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirectiveVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ExportsDirective - /// - /// - /// - public partial class ExportsDirective : Javax.Lang.Model.Element.ModuleElement.Directive - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$ExportsDirective"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExportsDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExportsDirective() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExportsDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExportsDirective(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OpensDirective - /// - /// - /// - public partial class OpensDirective : Javax.Lang.Model.Element.ModuleElement.Directive - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$OpensDirective"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpensDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpensDirective() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpensDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpensDirective(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ProvidesDirective - /// - /// - /// - public partial class ProvidesDirective : Javax.Lang.Model.Element.ModuleElement.Directive - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$ProvidesDirective"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProvidesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProvidesDirective() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProvidesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProvidesDirective(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region RequiresDirective - /// - /// - /// - public partial class RequiresDirective : Javax.Lang.Model.Element.ModuleElement.Directive - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$RequiresDirective"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RequiresDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RequiresDirective() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RequiresDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RequiresDirective(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region UsesDirective - /// - /// - /// - public partial class UsesDirective : Javax.Lang.Model.Element.ModuleElement.Directive - { - const string _bridgeClassName = "javax.lang.model.element.ModuleElement$UsesDirective"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UsesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UsesDirective() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UsesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UsesDirective(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Name - /// - /// - /// - public partial class Name : Java.Lang.CharSequence - { - const string _bridgeClassName = "javax.lang.model.element.Name"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Name() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Name(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NestingKind - /// - /// - /// - public partial class NestingKind : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.element.NestingKind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NestingKind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NestingKind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PackageElement - /// - /// - /// - public partial class PackageElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.PackageElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PackageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PackageElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PackageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PackageElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Parameterizable - /// - /// - /// - public partial class Parameterizable : Javax.Lang.Model.Element.Element - { - const string _bridgeClassName = "javax.lang.model.element.Parameterizable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Parameterizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parameterizable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Parameterizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parameterizable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QualifiedNameable - /// - /// - /// - public partial class QualifiedNameable : Javax.Lang.Model.Element.Element - { - const string _bridgeClassName = "javax.lang.model.element.QualifiedNameable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("QualifiedNameable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QualifiedNameable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("QualifiedNameable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QualifiedNameable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeElement - /// - /// - /// - public partial class TypeElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.element.TypeElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeParameterElement - /// - /// - /// - public partial class TypeParameterElement : Javax.Lang.Model.Element.Element - { - const string _bridgeClassName = "javax.lang.model.element.TypeParameterElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeParameterElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeParameterElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeParameterElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeParameterElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnknownAnnotationValueException - /// - /// - /// - public partial class UnknownAnnotationValueException : Javax.Lang.Model.UnknownEntityException - { - const string _bridgeClassName = "javax.lang.model.element.UnknownAnnotationValueException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownDirectiveException - /// - /// - /// - public partial class UnknownDirectiveException : Javax.Lang.Model.UnknownEntityException - { - const string _bridgeClassName = "javax.lang.model.element.UnknownDirectiveException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region UnknownElementException - /// - /// - /// - public partial class UnknownElementException : Javax.Lang.Model.UnknownEntityException - { - const string _bridgeClassName = "javax.lang.model.element.UnknownElementException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region VariableElement - /// - /// - /// - public partial class VariableElement : Javax.Lang.Model.Element.Element - { - const string _bridgeClassName = "javax.lang.model.element.VariableElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("VariableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public VariableElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("VariableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public VariableElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationMirror.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationMirror.cs index b8075977ab..f435b35e7a 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationMirror.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationMirror.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region AnnotationMirror declaration + /// + /// + /// + public partial class AnnotationMirror : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.AnnotationMirror"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotationMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationMirror() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotationMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationMirror(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotationMirror /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAnnotationMirror } #endregion - #region AnnotationMirror + #region AnnotationMirror implementation public partial class AnnotationMirror : Javax.Lang.Model.Element.IAnnotationMirror { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValue.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValue.cs index 65aa914401..245bb7e651 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValue.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValue.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region AnnotationValue declaration + /// + /// + /// + public partial class AnnotationValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.AnnotationValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotationValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotationValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAnnotationValue /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface IAnnotationValue } #endregion - #region AnnotationValue + #region AnnotationValue implementation public partial class AnnotationValue : Javax.Lang.Model.Element.IAnnotationValue { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValueVisitor.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValueVisitor.cs index 87cb02fa38..bbb882ed2e 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValueVisitor.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/AnnotationValueVisitor.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Element { - #region AnnotationValueVisitor + #region AnnotationValueVisitor declaration + /// + /// + /// + public partial class AnnotationValueVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.AnnotationValueVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationValueVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationValueVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AnnotationValueVisitor declaration + /// + /// + /// + /// + /// + public partial class AnnotationValueVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.lang.model.element.AnnotationValueVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationValueVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AnnotationValueVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AnnotationValueVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AnnotationValueVisitor implementation public partial class AnnotationValueVisitor { #region Constructors @@ -345,7 +441,7 @@ public partial interface IAnnotationValueVisitor } #endregion - #region AnnotationValueVisitor + #region AnnotationValueVisitor implementation public partial class AnnotationValueVisitor : Javax.Lang.Model.Element.IAnnotationValueVisitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/Element.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/Element.cs index 6ed2e843aa..8861a021f6 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/Element.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/Element.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region Element declaration + /// + /// + /// + public partial class Element : Javax.Lang.Model.AnnotatedConstruct + { + const string _bridgeClassName = "javax.lang.model.element.Element"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Element() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Element(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +135,7 @@ public partial interface IElement : Javax.Lang.Model.IAnnotatedConstruct } #endregion - #region Element + #region Element implementation public partial class Element : Javax.Lang.Model.Element.IElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementKind.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementKind.cs index 831d6e9f36..8defd8c793 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementKind.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementKind.cs @@ -25,7 +25,52 @@ namespace Javax.Lang.Model.Element { - #region ElementKind + #region ElementKind declaration + /// + /// + /// + public partial class ElementKind : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.element.ElementKind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKind implementation public partial class ElementKind { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementVisitor.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementVisitor.cs index e28f26dec9..fe92b6a103 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementVisitor.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/ElementVisitor.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Element { - #region ElementVisitor + #region ElementVisitor declaration + /// + /// + /// + public partial class ElementVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.ElementVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementVisitor declaration + /// + /// + /// + /// + /// + public partial class ElementVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.lang.model.element.ElementVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ElementVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementVisitor implementation public partial class ElementVisitor { #region Constructors @@ -225,7 +321,7 @@ public partial interface IElementVisitor } #endregion - #region ElementVisitor + #region ElementVisitor implementation public partial class ElementVisitor : Javax.Lang.Model.Element.IElementVisitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/ExecutableElement.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/ExecutableElement.cs index 7113ed0c9b..5f2eb31abf 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/ExecutableElement.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/ExecutableElement.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region ExecutableElement declaration + /// + /// + /// + public partial class ExecutableElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.ExecutableElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExecutableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExecutableElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExecutableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExecutableElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExecutableElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IExecutableElement } #endregion - #region ExecutableElement + #region ExecutableElement implementation public partial class ExecutableElement : Javax.Lang.Model.Element.IExecutableElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/Modifier.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/Modifier.cs index 332970bd4a..70063a85ab 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/Modifier.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/Modifier.cs @@ -25,7 +25,52 @@ namespace Javax.Lang.Model.Element { - #region Modifier + #region Modifier declaration + /// + /// + /// + public partial class Modifier : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.element.Modifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Modifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Modifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Modifier implementation public partial class Modifier { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/ModuleElement.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/ModuleElement.cs index bd23f022e4..e276c241fc 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/ModuleElement.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/ModuleElement.cs @@ -25,6 +25,476 @@ namespace Javax.Lang.Model.Element { + #region ModuleElement declaration + /// + /// + /// + public partial class ModuleElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModuleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModuleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModuleElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Directive declaration + /// + /// + /// + public partial class Directive : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$Directive"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Directive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Directive() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Directive class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Directive(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DirectiveKind declaration + /// + /// + /// + public partial class DirectiveKind : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$DirectiveKind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DirectiveKind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DirectiveKind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DirectiveVisitor declaration + /// + /// + /// + public partial class DirectiveVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$DirectiveVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectiveVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectiveVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DirectiveVisitor declaration + /// + /// + /// + /// + /// + public partial class DirectiveVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$DirectiveVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectiveVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirectiveVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirectiveVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ExportsDirective declaration + /// + /// + /// + public partial class ExportsDirective : Javax.Lang.Model.Element.ModuleElement.Directive + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$ExportsDirective"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExportsDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExportsDirective() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExportsDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExportsDirective(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OpensDirective declaration + /// + /// + /// + public partial class OpensDirective : Javax.Lang.Model.Element.ModuleElement.Directive + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$OpensDirective"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpensDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpensDirective() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpensDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpensDirective(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ProvidesDirective declaration + /// + /// + /// + public partial class ProvidesDirective : Javax.Lang.Model.Element.ModuleElement.Directive + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$ProvidesDirective"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProvidesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProvidesDirective() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProvidesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProvidesDirective(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region RequiresDirective declaration + /// + /// + /// + public partial class RequiresDirective : Javax.Lang.Model.Element.ModuleElement.Directive + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$RequiresDirective"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RequiresDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RequiresDirective() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RequiresDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RequiresDirective(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region UsesDirective declaration + /// + /// + /// + public partial class UsesDirective : Javax.Lang.Model.Element.ModuleElement.Directive + { + const string _bridgeClassName = "javax.lang.model.element.ModuleElement$UsesDirective"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UsesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UsesDirective() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UsesDirective class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UsesDirective(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IModuleElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +543,7 @@ public partial interface IModuleElement } #endregion - #region ModuleElement + #region ModuleElement implementation public partial class ModuleElement : Javax.Lang.Model.Element.IModuleElement { #region Constructors @@ -156,7 +626,7 @@ public bool IsUnnamed() #endregion #region Nested classes - #region Directive + #region Directive implementation public partial class Directive { #region Constructors @@ -206,7 +676,7 @@ public R Accept(Javax.Lang.Model.Element.ModuleElement.DirectiveVisitor + #region DirectiveVisitor implementation public partial class DirectiveVisitor { #region Constructors @@ -508,7 +978,7 @@ public R VisitUnknown(Javax.Lang.Model.Element.ModuleElement.Directive arg0, P a } #endregion - #region ExportsDirective + #region ExportsDirective implementation public partial class ExportsDirective { #region Constructors @@ -553,7 +1023,7 @@ public Java.Util.List TargetModules } #endregion - #region OpensDirective + #region OpensDirective implementation public partial class OpensDirective { #region Constructors @@ -598,7 +1068,7 @@ public Java.Util.List TargetModules } #endregion - #region ProvidesDirective + #region ProvidesDirective implementation public partial class ProvidesDirective { #region Constructors @@ -643,7 +1113,7 @@ public Javax.Lang.Model.Element.TypeElement Service } #endregion - #region RequiresDirective + #region RequiresDirective implementation public partial class RequiresDirective { #region Constructors @@ -697,7 +1167,7 @@ public bool IsTransitive() } #endregion - #region UsesDirective + #region UsesDirective implementation public partial class UsesDirective { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/Name.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/Name.cs index f0136e783c..534e9c6081 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/Name.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/Name.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region Name declaration + /// + /// + /// + public partial class Name : Java.Lang.CharSequence + { + const string _bridgeClassName = "javax.lang.model.element.Name"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Name() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Name(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IName /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IName : Java.Lang.ICharSequence } #endregion - #region Name + #region Name implementation public partial class Name : Javax.Lang.Model.Element.IName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/NestingKind.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/NestingKind.cs index 4ea0c87f46..c7f72cd033 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/NestingKind.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/NestingKind.cs @@ -25,7 +25,52 @@ namespace Javax.Lang.Model.Element { - #region NestingKind + #region NestingKind declaration + /// + /// + /// + public partial class NestingKind : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.element.NestingKind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NestingKind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NestingKind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NestingKind implementation public partial class NestingKind { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/PackageElement.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/PackageElement.cs index 6f8df080e7..caed9dd25c 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/PackageElement.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/PackageElement.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region PackageElement declaration + /// + /// + /// + public partial class PackageElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.PackageElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PackageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PackageElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PackageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PackageElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPackageElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface IPackageElement } #endregion - #region PackageElement + #region PackageElement implementation public partial class PackageElement : Javax.Lang.Model.Element.IPackageElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/Parameterizable.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/Parameterizable.cs index 219196c2e8..107250cc1a 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/Parameterizable.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/Parameterizable.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region Parameterizable declaration + /// + /// + /// + public partial class Parameterizable : Javax.Lang.Model.Element.Element + { + const string _bridgeClassName = "javax.lang.model.element.Parameterizable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Parameterizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parameterizable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Parameterizable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parameterizable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IParameterizable /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IParameterizable : Javax.Lang.Model.Element.IElement } #endregion - #region Parameterizable + #region Parameterizable implementation public partial class Parameterizable : Javax.Lang.Model.Element.IParameterizable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/QualifiedNameable.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/QualifiedNameable.cs index 15b32fb453..278348b0ee 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/QualifiedNameable.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/QualifiedNameable.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region QualifiedNameable declaration + /// + /// + /// + public partial class QualifiedNameable : Javax.Lang.Model.Element.Element + { + const string _bridgeClassName = "javax.lang.model.element.QualifiedNameable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("QualifiedNameable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QualifiedNameable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("QualifiedNameable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QualifiedNameable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IQualifiedNameable /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IQualifiedNameable : Javax.Lang.Model.Element.IElement } #endregion - #region QualifiedNameable + #region QualifiedNameable implementation public partial class QualifiedNameable : Javax.Lang.Model.Element.IQualifiedNameable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeElement.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeElement.cs index 4d8c9ce516..c09396def0 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeElement.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeElement.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region TypeElement declaration + /// + /// + /// + public partial class TypeElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.element.TypeElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITypeElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface ITypeElement } #endregion - #region TypeElement + #region TypeElement implementation public partial class TypeElement : Javax.Lang.Model.Element.ITypeElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeParameterElement.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeParameterElement.cs index b6e49703b7..44be3dcfcd 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeParameterElement.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/TypeParameterElement.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region TypeParameterElement declaration + /// + /// + /// + public partial class TypeParameterElement : Javax.Lang.Model.Element.Element + { + const string _bridgeClassName = "javax.lang.model.element.TypeParameterElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeParameterElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeParameterElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeParameterElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeParameterElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITypeParameterElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ITypeParameterElement : Javax.Lang.Model.Element.IEleme } #endregion - #region TypeParameterElement + #region TypeParameterElement implementation public partial class TypeParameterElement : Javax.Lang.Model.Element.ITypeParameterElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownAnnotationValueException.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownAnnotationValueException.cs index 2c28a2e7bc..c1e99a89ca 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownAnnotationValueException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownAnnotationValueException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model.Element { - #region UnknownAnnotationValueException + #region UnknownAnnotationValueException declaration + /// + /// + /// + public partial class UnknownAnnotationValueException : Javax.Lang.Model.UnknownEntityException + { + const string _bridgeClassName = "javax.lang.model.element.UnknownAnnotationValueException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownAnnotationValueException implementation public partial class UnknownAnnotationValueException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownDirectiveException.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownDirectiveException.cs index 1967bcbd52..6d4b12d81e 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownDirectiveException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownDirectiveException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model.Element { - #region UnknownDirectiveException + #region UnknownDirectiveException declaration + /// + /// + /// + public partial class UnknownDirectiveException : Javax.Lang.Model.UnknownEntityException + { + const string _bridgeClassName = "javax.lang.model.element.UnknownDirectiveException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownDirectiveException implementation public partial class UnknownDirectiveException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownElementException.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownElementException.cs index 94ba841d48..f9bf1b80ee 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownElementException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/UnknownElementException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model.Element { - #region UnknownElementException + #region UnknownElementException declaration + /// + /// + /// + public partial class UnknownElementException : Javax.Lang.Model.UnknownEntityException + { + const string _bridgeClassName = "javax.lang.model.element.UnknownElementException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownElementException implementation public partial class UnknownElementException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Element/VariableElement.cs b/src/net/JNet/Generated/Javax/Lang/Model/Element/VariableElement.cs index 520aed7e35..44184fadab 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Element/VariableElement.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Element/VariableElement.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Element { + #region VariableElement declaration + /// + /// + /// + public partial class VariableElement : Javax.Lang.Model.Element.Element + { + const string _bridgeClassName = "javax.lang.model.element.VariableElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("VariableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public VariableElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("VariableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public VariableElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IVariableElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IVariableElement : Javax.Lang.Model.Element.IElement } #endregion - #region VariableElement + #region VariableElement implementation public partial class VariableElement : Javax.Lang.Model.Element.IVariableElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/SourceVersion.cs b/src/net/JNet/Generated/Javax/Lang/Model/SourceVersion.cs index faf03b7137..926f9f7903 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/SourceVersion.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/SourceVersion.cs @@ -25,7 +25,52 @@ namespace Javax.Lang.Model { - #region SourceVersion + #region SourceVersion declaration + /// + /// + /// + public partial class SourceVersion : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.SourceVersion"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SourceVersion() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SourceVersion(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SourceVersion implementation public partial class SourceVersion { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/AllPackageClasses.cs deleted file mode 100644 index 4613850e35..0000000000 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/AllPackageClasses.cs +++ /dev/null @@ -1,833 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Lang.Model.Type -{ - #region ArrayType - /// - /// - /// - public partial class ArrayType : Javax.Lang.Model.Type.ReferenceType - { - const string _bridgeClassName = "javax.lang.model.type.ArrayType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ArrayType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ArrayType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DeclaredType - /// - /// - /// - public partial class DeclaredType : Javax.Lang.Model.Type.ReferenceType - { - const string _bridgeClassName = "javax.lang.model.type.DeclaredType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DeclaredType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DeclaredType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DeclaredType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DeclaredType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ErrorType - /// - /// - /// - public partial class ErrorType : Javax.Lang.Model.Type.DeclaredType - { - const string _bridgeClassName = "javax.lang.model.type.ErrorType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ErrorType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ErrorType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ErrorType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ErrorType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExecutableType - /// - /// - /// - public partial class ExecutableType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.ExecutableType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExecutableType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExecutableType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExecutableType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExecutableType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IntersectionType - /// - /// - /// - public partial class IntersectionType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.IntersectionType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IntersectionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntersectionType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IntersectionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntersectionType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MirroredTypeException - /// - /// - /// - public partial class MirroredTypeException : Javax.Lang.Model.Type.MirroredTypesException - { - const string _bridgeClassName = "javax.lang.model.type.MirroredTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MirroredTypesException - /// - /// - /// - public partial class MirroredTypesException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.lang.model.type.MirroredTypesException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoType - /// - /// - /// - public partial class NoType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.NoType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NoType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NoType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NoType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NoType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NullType - /// - /// - /// - public partial class NullType : Javax.Lang.Model.Type.ReferenceType - { - const string _bridgeClassName = "javax.lang.model.type.NullType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NullType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NullType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NullType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NullType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrimitiveType - /// - /// - /// - public partial class PrimitiveType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.PrimitiveType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrimitiveType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrimitiveType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrimitiveType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrimitiveType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReferenceType - /// - /// - /// - public partial class ReferenceType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.ReferenceType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ReferenceType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ReferenceType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ReferenceType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ReferenceType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKind - /// - /// - /// - public partial class TypeKind : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.type.TypeKind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeMirror - /// - /// - /// - public partial class TypeMirror : Javax.Lang.Model.AnnotatedConstruct - { - const string _bridgeClassName = "javax.lang.model.type.TypeMirror"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeMirror() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeMirror(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeVariable - /// - /// - /// - public partial class TypeVariable : Javax.Lang.Model.Type.ReferenceType - { - const string _bridgeClassName = "javax.lang.model.type.TypeVariable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVariable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVariable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeVisitor - /// - /// - /// - public partial class TypeVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.type.TypeVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeVisitor - /// - /// - /// - /// - /// - public partial class TypeVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.lang.model.type.TypeVisitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVisitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeVisitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnionType - /// - /// - /// - public partial class UnionType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.UnionType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UnionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UnionType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UnionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UnionType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnknownTypeException - /// - /// - /// - public partial class UnknownTypeException : Javax.Lang.Model.UnknownEntityException - { - const string _bridgeClassName = "javax.lang.model.type.UnknownTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region WildcardType - /// - /// - /// - public partial class WildcardType : Javax.Lang.Model.Type.TypeMirror - { - const string _bridgeClassName = "javax.lang.model.type.WildcardType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WildcardType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WildcardType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/ArrayType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/ArrayType.cs index 7e4a9e8bd2..9e8d6d72bc 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/ArrayType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/ArrayType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region ArrayType declaration + /// + /// + /// + public partial class ArrayType : Javax.Lang.Model.Type.ReferenceType + { + const string _bridgeClassName = "javax.lang.model.type.ArrayType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ArrayType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ArrayType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ArrayType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IArrayType /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IArrayType : Javax.Lang.Model.Type.IReferenceType } #endregion - #region ArrayType + #region ArrayType implementation public partial class ArrayType : Javax.Lang.Model.Type.IArrayType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/DeclaredType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/DeclaredType.cs index f2bc581adf..be768afbd0 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/DeclaredType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/DeclaredType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region DeclaredType declaration + /// + /// + /// + public partial class DeclaredType : Javax.Lang.Model.Type.ReferenceType + { + const string _bridgeClassName = "javax.lang.model.type.DeclaredType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DeclaredType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DeclaredType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DeclaredType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DeclaredType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDeclaredType /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface IDeclaredType : Javax.Lang.Model.Type.IReferenceType } #endregion - #region DeclaredType + #region DeclaredType implementation public partial class DeclaredType : Javax.Lang.Model.Type.IDeclaredType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/ErrorType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/ErrorType.cs index b2d226361f..2b32a0c33c 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/ErrorType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/ErrorType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region ErrorType declaration + /// + /// + /// + public partial class ErrorType : Javax.Lang.Model.Type.DeclaredType + { + const string _bridgeClassName = "javax.lang.model.type.ErrorType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ErrorType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ErrorType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ErrorType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ErrorType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IErrorType /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IErrorType : Javax.Lang.Model.Type.IDeclaredType } #endregion - #region ErrorType + #region ErrorType implementation public partial class ErrorType : Javax.Lang.Model.Type.IErrorType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/ExecutableType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/ExecutableType.cs index f01fced8dd..1d8b1cc82e 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/ExecutableType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/ExecutableType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region ExecutableType declaration + /// + /// + /// + public partial class ExecutableType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.ExecutableType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExecutableType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExecutableType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExecutableType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExecutableType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExecutableType /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IExecutableType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region ExecutableType + #region ExecutableType implementation public partial class ExecutableType : Javax.Lang.Model.Type.IExecutableType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/IntersectionType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/IntersectionType.cs index a3ea956597..1b3eef345b 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/IntersectionType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/IntersectionType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region IntersectionType declaration + /// + /// + /// + public partial class IntersectionType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.IntersectionType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IntersectionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntersectionType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IntersectionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntersectionType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IIntersectionType /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IIntersectionType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region IntersectionType + #region IntersectionType implementation public partial class IntersectionType : Javax.Lang.Model.Type.IIntersectionType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypeException.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypeException.cs index b9fb49afb6..78299ff04f 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypeException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypeException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model.Type { - #region MirroredTypeException + #region MirroredTypeException declaration + /// + /// + /// + public partial class MirroredTypeException : Javax.Lang.Model.Type.MirroredTypesException + { + const string _bridgeClassName = "javax.lang.model.type.MirroredTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MirroredTypeException implementation public partial class MirroredTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypesException.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypesException.cs index 72fd4208d5..c7108ceaea 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypesException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/MirroredTypesException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model.Type { - #region MirroredTypesException + #region MirroredTypesException declaration + /// + /// + /// + public partial class MirroredTypesException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.lang.model.type.MirroredTypesException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MirroredTypesException implementation public partial class MirroredTypesException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/NoType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/NoType.cs index 468d0c1a4b..9e73b612f2 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/NoType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/NoType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region NoType declaration + /// + /// + /// + public partial class NoType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.NoType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NoType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NoType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NoType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NoType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INoType /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface INoType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region NoType + #region NoType implementation public partial class NoType : Javax.Lang.Model.Type.INoType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/NullType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/NullType.cs index 444fbc8f61..ae63791ced 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/NullType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/NullType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region NullType declaration + /// + /// + /// + public partial class NullType : Javax.Lang.Model.Type.ReferenceType + { + const string _bridgeClassName = "javax.lang.model.type.NullType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NullType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NullType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NullType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NullType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INullType /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface INullType : Javax.Lang.Model.Type.IReferenceType } #endregion - #region NullType + #region NullType implementation public partial class NullType : Javax.Lang.Model.Type.INullType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/PrimitiveType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/PrimitiveType.cs index 52aa497b9b..a5333405e8 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/PrimitiveType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/PrimitiveType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region PrimitiveType declaration + /// + /// + /// + public partial class PrimitiveType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.PrimitiveType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrimitiveType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrimitiveType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrimitiveType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrimitiveType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrimitiveType /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPrimitiveType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region PrimitiveType + #region PrimitiveType implementation public partial class PrimitiveType : Javax.Lang.Model.Type.IPrimitiveType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/ReferenceType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/ReferenceType.cs index 2dc10455b9..0f48597802 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/ReferenceType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/ReferenceType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region ReferenceType declaration + /// + /// + /// + public partial class ReferenceType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.ReferenceType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ReferenceType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ReferenceType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ReferenceType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ReferenceType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReferenceType /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IReferenceType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region ReferenceType + #region ReferenceType implementation public partial class ReferenceType : Javax.Lang.Model.Type.IReferenceType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeKind.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeKind.cs index 0a1b3f069e..63d4dca902 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeKind.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeKind.cs @@ -25,7 +25,52 @@ namespace Javax.Lang.Model.Type { - #region TypeKind + #region TypeKind declaration + /// + /// + /// + public partial class TypeKind : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.type.TypeKind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKind implementation public partial class TypeKind { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeMirror.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeMirror.cs index 6b8ff4087e..286e72b987 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeMirror.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeMirror.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region TypeMirror declaration + /// + /// + /// + public partial class TypeMirror : Javax.Lang.Model.AnnotatedConstruct + { + const string _bridgeClassName = "javax.lang.model.type.TypeMirror"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeMirror() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeMirror class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeMirror(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITypeMirror /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface ITypeMirror : Javax.Lang.Model.IAnnotatedConstruct } #endregion - #region TypeMirror + #region TypeMirror implementation public partial class TypeMirror : Javax.Lang.Model.Type.ITypeMirror { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVariable.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVariable.cs index 73424e1315..e0edaa6c04 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVariable.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVariable.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region TypeVariable declaration + /// + /// + /// + public partial class TypeVariable : Javax.Lang.Model.Type.ReferenceType + { + const string _bridgeClassName = "javax.lang.model.type.TypeVariable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVariable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeVariable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVariable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITypeVariable /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface ITypeVariable : Javax.Lang.Model.Type.IReferenceType } #endregion - #region TypeVariable + #region TypeVariable implementation public partial class TypeVariable : Javax.Lang.Model.Type.ITypeVariable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVisitor.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVisitor.cs index 8f6e0f6a7b..912c2a30e8 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVisitor.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/TypeVisitor.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Type { - #region TypeVisitor + #region TypeVisitor declaration + /// + /// + /// + public partial class TypeVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.type.TypeVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeVisitor declaration + /// + /// + /// + /// + /// + public partial class TypeVisitor : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.lang.model.type.TypeVisitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVisitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeVisitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeVisitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeVisitor implementation public partial class TypeVisitor { #region Constructors @@ -310,7 +406,7 @@ public partial interface ITypeVisitor } #endregion - #region TypeVisitor + #region TypeVisitor implementation public partial class TypeVisitor : Javax.Lang.Model.Type.ITypeVisitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/UnionType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/UnionType.cs index 9ba39bbd4e..516c0638b6 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/UnionType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/UnionType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region UnionType declaration + /// + /// + /// + public partial class UnionType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.UnionType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UnionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UnionType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UnionType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UnionType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUnionType /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IUnionType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region UnionType + #region UnionType implementation public partial class UnionType : Javax.Lang.Model.Type.IUnionType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/UnknownTypeException.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/UnknownTypeException.cs index cae4ba3422..51d1444cc1 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/UnknownTypeException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/UnknownTypeException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model.Type { - #region UnknownTypeException + #region UnknownTypeException declaration + /// + /// + /// + public partial class UnknownTypeException : Javax.Lang.Model.UnknownEntityException + { + const string _bridgeClassName = "javax.lang.model.type.UnknownTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownTypeException implementation public partial class UnknownTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Type/WildcardType.cs b/src/net/JNet/Generated/Javax/Lang/Model/Type/WildcardType.cs index 8e660b71dd..b6b64ec002 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Type/WildcardType.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Type/WildcardType.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Type { + #region WildcardType declaration + /// + /// + /// + public partial class WildcardType : Javax.Lang.Model.Type.TypeMirror + { + const string _bridgeClassName = "javax.lang.model.type.WildcardType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WildcardType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WildcardType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WildcardType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWildcardType /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IWildcardType : Javax.Lang.Model.Type.ITypeMirror } #endregion - #region WildcardType + #region WildcardType implementation public partial class WildcardType : Javax.Lang.Model.Type.IWildcardType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/UnknownEntityException.cs b/src/net/JNet/Generated/Javax/Lang/Model/UnknownEntityException.cs index e7fc8b36b1..ac21dac333 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/UnknownEntityException.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/UnknownEntityException.cs @@ -25,7 +25,24 @@ namespace Javax.Lang.Model { - #region UnknownEntityException + #region UnknownEntityException declaration + /// + /// + /// + public partial class UnknownEntityException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.lang.model.UnknownEntityException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnknownEntityException implementation public partial class UnknownEntityException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor6.cs index a4e6ab1466..4109f509c6 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor6.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractAnnotationValueVisitor6 + #region AbstractAnnotationValueVisitor6 declaration + /// + /// + /// + public partial class AbstractAnnotationValueVisitor6 : Javax.Lang.Model.Element.AnnotationValueVisitor + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor6 declaration + /// + /// + /// + /// + /// + public partial class AbstractAnnotationValueVisitor6 : Javax.Lang.Model.Element.AnnotationValueVisitor + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor6 implementation public partial class AbstractAnnotationValueVisitor6 { #region Constructors @@ -85,7 +181,7 @@ public object VisitUnknown(Javax.Lang.Model.Element.AnnotationValue arg0, object } #endregion - #region AbstractAnnotationValueVisitor6 + #region AbstractAnnotationValueVisitor6 implementation public partial class AbstractAnnotationValueVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor7.cs index 30c86dcce5..e0bf7faed3 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor7.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractAnnotationValueVisitor7 + #region AbstractAnnotationValueVisitor7 declaration + /// + /// + /// + public partial class AbstractAnnotationValueVisitor7 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor7 declaration + /// + /// + /// + /// + /// + public partial class AbstractAnnotationValueVisitor7 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor7 implementation public partial class AbstractAnnotationValueVisitor7 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractAnnotationValueVisitor7 } #endregion - #region AbstractAnnotationValueVisitor7 + #region AbstractAnnotationValueVisitor7 implementation public partial class AbstractAnnotationValueVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor8.cs index 152877a890..b61774ebb7 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor8.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractAnnotationValueVisitor8 + #region AbstractAnnotationValueVisitor8 declaration + /// + /// + /// + public partial class AbstractAnnotationValueVisitor8 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor8 declaration + /// + /// + /// + /// + /// + public partial class AbstractAnnotationValueVisitor8 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor8 implementation public partial class AbstractAnnotationValueVisitor8 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractAnnotationValueVisitor8 } #endregion - #region AbstractAnnotationValueVisitor8 + #region AbstractAnnotationValueVisitor8 implementation public partial class AbstractAnnotationValueVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor9.cs index ba32641a1b..9d39012683 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractAnnotationValueVisitor9.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractAnnotationValueVisitor9 + #region AbstractAnnotationValueVisitor9 declaration + /// + /// + /// + public partial class AbstractAnnotationValueVisitor9 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor9 declaration + /// + /// + /// + /// + /// + public partial class AbstractAnnotationValueVisitor9 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAnnotationValueVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAnnotationValueVisitor9 implementation public partial class AbstractAnnotationValueVisitor9 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractAnnotationValueVisitor9 } #endregion - #region AbstractAnnotationValueVisitor9 + #region AbstractAnnotationValueVisitor9 implementation public partial class AbstractAnnotationValueVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor6.cs index f1e3e5b409..ad7e627e53 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor6.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractElementVisitor6 + #region AbstractElementVisitor6 declaration + /// + /// + /// + public partial class AbstractElementVisitor6 : Javax.Lang.Model.Element.ElementVisitor + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor6 declaration + /// + /// + /// + /// + /// + public partial class AbstractElementVisitor6 : Javax.Lang.Model.Element.ElementVisitor + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor6 implementation public partial class AbstractElementVisitor6 { #region Constructors @@ -95,7 +191,7 @@ public object VisitUnknown(Javax.Lang.Model.Element.Element arg0, object arg1) } #endregion - #region AbstractElementVisitor6 + #region AbstractElementVisitor6 implementation public partial class AbstractElementVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor7.cs index 966feeffd8..c28633b9e8 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor7.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractElementVisitor7 + #region AbstractElementVisitor7 declaration + /// + /// + /// + public partial class AbstractElementVisitor7 : Javax.Lang.Model.Util.AbstractElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor7 declaration + /// + /// + /// + /// + /// + public partial class AbstractElementVisitor7 : Javax.Lang.Model.Util.AbstractElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor7 implementation public partial class AbstractElementVisitor7 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractElementVisitor7 } #endregion - #region AbstractElementVisitor7 + #region AbstractElementVisitor7 implementation public partial class AbstractElementVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor8.cs index 638b5a4736..a47e34c4e3 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor8.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractElementVisitor8 + #region AbstractElementVisitor8 declaration + /// + /// + /// + public partial class AbstractElementVisitor8 : Javax.Lang.Model.Util.AbstractElementVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor8 declaration + /// + /// + /// + /// + /// + public partial class AbstractElementVisitor8 : Javax.Lang.Model.Util.AbstractElementVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor8 implementation public partial class AbstractElementVisitor8 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractElementVisitor8 } #endregion - #region AbstractElementVisitor8 + #region AbstractElementVisitor8 implementation public partial class AbstractElementVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor9.cs index 3c007852eb..0e3fcab586 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractElementVisitor9.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractElementVisitor9 + #region AbstractElementVisitor9 declaration + /// + /// + /// + public partial class AbstractElementVisitor9 : Javax.Lang.Model.Util.AbstractElementVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor9 declaration + /// + /// + /// + /// + /// + public partial class AbstractElementVisitor9 : Javax.Lang.Model.Util.AbstractElementVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElementVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractElementVisitor9 implementation public partial class AbstractElementVisitor9 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractElementVisitor9 } #endregion - #region AbstractElementVisitor9 + #region AbstractElementVisitor9 implementation public partial class AbstractElementVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor6.cs index ebda74a881..27c9b18d04 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor6.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractTypeVisitor6 + #region AbstractTypeVisitor6 declaration + /// + /// + /// + public partial class AbstractTypeVisitor6 : Javax.Lang.Model.Type.TypeVisitor + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor6 declaration + /// + /// + /// + /// + /// + public partial class AbstractTypeVisitor6 : Javax.Lang.Model.Type.TypeVisitor + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor6 implementation public partial class AbstractTypeVisitor6 { #region Constructors @@ -105,7 +201,7 @@ public object VisitUnknown(Javax.Lang.Model.Type.TypeMirror arg0, object arg1) } #endregion - #region AbstractTypeVisitor6 + #region AbstractTypeVisitor6 implementation public partial class AbstractTypeVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor7.cs index 7a1d8cc34d..d5f1d36e53 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor7.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractTypeVisitor7 + #region AbstractTypeVisitor7 declaration + /// + /// + /// + public partial class AbstractTypeVisitor7 : Javax.Lang.Model.Util.AbstractTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor7 declaration + /// + /// + /// + /// + /// + public partial class AbstractTypeVisitor7 : Javax.Lang.Model.Util.AbstractTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor7 implementation public partial class AbstractTypeVisitor7 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractTypeVisitor7 } #endregion - #region AbstractTypeVisitor7 + #region AbstractTypeVisitor7 implementation public partial class AbstractTypeVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor8.cs index cdd954a8e7..e785895a96 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor8.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractTypeVisitor8 + #region AbstractTypeVisitor8 declaration + /// + /// + /// + public partial class AbstractTypeVisitor8 : Javax.Lang.Model.Util.AbstractTypeVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor8 declaration + /// + /// + /// + /// + /// + public partial class AbstractTypeVisitor8 : Javax.Lang.Model.Util.AbstractTypeVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor8 implementation public partial class AbstractTypeVisitor8 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractTypeVisitor8 } #endregion - #region AbstractTypeVisitor8 + #region AbstractTypeVisitor8 implementation public partial class AbstractTypeVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor9.cs index 9e9ab93b13..d32fce8493 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/AbstractTypeVisitor9.cs @@ -25,7 +25,103 @@ namespace Javax.Lang.Model.Util { - #region AbstractTypeVisitor9 + #region AbstractTypeVisitor9 declaration + /// + /// + /// + public partial class AbstractTypeVisitor9 : Javax.Lang.Model.Util.AbstractTypeVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor9 declaration + /// + /// + /// + /// + /// + public partial class AbstractTypeVisitor9 : Javax.Lang.Model.Util.AbstractTypeVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTypeVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTypeVisitor9 implementation public partial class AbstractTypeVisitor9 { #region Constructors @@ -56,7 +152,7 @@ public partial class AbstractTypeVisitor9 } #endregion - #region AbstractTypeVisitor9 + #region AbstractTypeVisitor9 implementation public partial class AbstractTypeVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/AllPackageClasses.cs deleted file mode 100644 index f19485bf5a..0000000000 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/AllPackageClasses.cs +++ /dev/null @@ -1,3574 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Lang.Model.Util -{ - #region AbstractAnnotationValueVisitor6 - /// - /// - /// - public partial class AbstractAnnotationValueVisitor6 : Javax.Lang.Model.Element.AnnotationValueVisitor - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor6 - /// - /// - /// - /// - /// - public partial class AbstractAnnotationValueVisitor6 : Javax.Lang.Model.Element.AnnotationValueVisitor - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor7 - /// - /// - /// - public partial class AbstractAnnotationValueVisitor7 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor7 - /// - /// - /// - /// - /// - public partial class AbstractAnnotationValueVisitor7 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor8 - /// - /// - /// - public partial class AbstractAnnotationValueVisitor8 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor8 - /// - /// - /// - /// - /// - public partial class AbstractAnnotationValueVisitor8 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor9 - /// - /// - /// - public partial class AbstractAnnotationValueVisitor9 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractAnnotationValueVisitor9 - /// - /// - /// - /// - /// - public partial class AbstractAnnotationValueVisitor9 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractAnnotationValueVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAnnotationValueVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAnnotationValueVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor6 - /// - /// - /// - public partial class AbstractElementVisitor6 : Javax.Lang.Model.Element.ElementVisitor - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor6 - /// - /// - /// - /// - /// - public partial class AbstractElementVisitor6 : Javax.Lang.Model.Element.ElementVisitor - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor7 - /// - /// - /// - public partial class AbstractElementVisitor7 : Javax.Lang.Model.Util.AbstractElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor7 - /// - /// - /// - /// - /// - public partial class AbstractElementVisitor7 : Javax.Lang.Model.Util.AbstractElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor8 - /// - /// - /// - public partial class AbstractElementVisitor8 : Javax.Lang.Model.Util.AbstractElementVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor8 - /// - /// - /// - /// - /// - public partial class AbstractElementVisitor8 : Javax.Lang.Model.Util.AbstractElementVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor9 - /// - /// - /// - public partial class AbstractElementVisitor9 : Javax.Lang.Model.Util.AbstractElementVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractElementVisitor9 - /// - /// - /// - /// - /// - public partial class AbstractElementVisitor9 : Javax.Lang.Model.Util.AbstractElementVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractElementVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElementVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElementVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor6 - /// - /// - /// - public partial class AbstractTypeVisitor6 : Javax.Lang.Model.Type.TypeVisitor - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor6 - /// - /// - /// - /// - /// - public partial class AbstractTypeVisitor6 : Javax.Lang.Model.Type.TypeVisitor - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor6 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor7 - /// - /// - /// - public partial class AbstractTypeVisitor7 : Javax.Lang.Model.Util.AbstractTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor7 - /// - /// - /// - /// - /// - public partial class AbstractTypeVisitor7 : Javax.Lang.Model.Util.AbstractTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor7 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor8 - /// - /// - /// - public partial class AbstractTypeVisitor8 : Javax.Lang.Model.Util.AbstractTypeVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor8 - /// - /// - /// - /// - /// - public partial class AbstractTypeVisitor8 : Javax.Lang.Model.Util.AbstractTypeVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor8 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor9 - /// - /// - /// - public partial class AbstractTypeVisitor9 : Javax.Lang.Model.Util.AbstractTypeVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractTypeVisitor9 - /// - /// - /// - /// - /// - public partial class AbstractTypeVisitor9 : Javax.Lang.Model.Util.AbstractTypeVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.AbstractTypeVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTypeVisitor9 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTypeVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementFilter - /// - /// - /// - public partial class ElementFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.util.ElementFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor6 - /// - /// - /// - public partial class ElementKindVisitor6 : Javax.Lang.Model.Util.SimpleElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor6 - /// - /// - /// - /// - /// - public partial class ElementKindVisitor6 : Javax.Lang.Model.Util.SimpleElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor7 - /// - /// - /// - public partial class ElementKindVisitor7 : Javax.Lang.Model.Util.ElementKindVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor7 - /// - /// - /// - /// - /// - public partial class ElementKindVisitor7 : Javax.Lang.Model.Util.ElementKindVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor8 - /// - /// - /// - public partial class ElementKindVisitor8 : Javax.Lang.Model.Util.ElementKindVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor8 - /// - /// - /// - /// - /// - public partial class ElementKindVisitor8 : Javax.Lang.Model.Util.ElementKindVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor9 - /// - /// - /// - public partial class ElementKindVisitor9 : Javax.Lang.Model.Util.ElementKindVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementKindVisitor9 - /// - /// - /// - /// - /// - public partial class ElementKindVisitor9 : Javax.Lang.Model.Util.ElementKindVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementKindVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementKindVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Elements - /// - /// - /// - public partial class Elements : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.util.Elements"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Elements class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Elements() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Elements class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Elements(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Origin - /// - /// - /// - public partial class Origin : Java.Lang.Enum - { - const string _bridgeClassName = "javax.lang.model.util.Elements$Origin"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Origin() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Origin(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ElementScanner6 - /// - /// - /// - public partial class ElementScanner6 : Javax.Lang.Model.Util.AbstractElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner6 - /// - /// - /// - /// - /// - public partial class ElementScanner6 : Javax.Lang.Model.Util.AbstractElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner7 - /// - /// - /// - public partial class ElementScanner7 : Javax.Lang.Model.Util.ElementScanner6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner7 - /// - /// - /// - /// - /// - public partial class ElementScanner7 : Javax.Lang.Model.Util.ElementScanner6 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner8 - /// - /// - /// - public partial class ElementScanner8 : Javax.Lang.Model.Util.ElementScanner7 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner8 - /// - /// - /// - /// - /// - public partial class ElementScanner8 : Javax.Lang.Model.Util.ElementScanner7 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner9 - /// - /// - /// - public partial class ElementScanner9 : Javax.Lang.Model.Util.ElementScanner8 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementScanner9 - /// - /// - /// - /// - /// - public partial class ElementScanner9 : Javax.Lang.Model.Util.ElementScanner8 - { - const string _bridgeClassName = "javax.lang.model.util.ElementScanner9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementScanner9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementScanner9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor6 - /// - /// - /// - public partial class SimpleAnnotationValueVisitor6 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor6 - /// - /// - /// - /// - /// - public partial class SimpleAnnotationValueVisitor6 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor7 - /// - /// - /// - public partial class SimpleAnnotationValueVisitor7 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor7 - /// - /// - /// - /// - /// - public partial class SimpleAnnotationValueVisitor7 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor8 - /// - /// - /// - public partial class SimpleAnnotationValueVisitor8 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor8 - /// - /// - /// - /// - /// - public partial class SimpleAnnotationValueVisitor8 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor9 - /// - /// - /// - public partial class SimpleAnnotationValueVisitor9 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAnnotationValueVisitor9 - /// - /// - /// - /// - /// - public partial class SimpleAnnotationValueVisitor9 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAnnotationValueVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAnnotationValueVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor6 - /// - /// - /// - public partial class SimpleElementVisitor6 : Javax.Lang.Model.Util.AbstractElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor6 - /// - /// - /// - /// - /// - public partial class SimpleElementVisitor6 : Javax.Lang.Model.Util.AbstractElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor7 - /// - /// - /// - public partial class SimpleElementVisitor7 : Javax.Lang.Model.Util.SimpleElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor7 - /// - /// - /// - /// - /// - public partial class SimpleElementVisitor7 : Javax.Lang.Model.Util.SimpleElementVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor8 - /// - /// - /// - public partial class SimpleElementVisitor8 : Javax.Lang.Model.Util.SimpleElementVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor8 - /// - /// - /// - /// - /// - public partial class SimpleElementVisitor8 : Javax.Lang.Model.Util.SimpleElementVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor9 - /// - /// - /// - public partial class SimpleElementVisitor9 : Javax.Lang.Model.Util.SimpleElementVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleElementVisitor9 - /// - /// - /// - /// - /// - public partial class SimpleElementVisitor9 : Javax.Lang.Model.Util.SimpleElementVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleElementVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleElementVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor6 - /// - /// - /// - public partial class SimpleTypeVisitor6 : Javax.Lang.Model.Util.AbstractTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor6 - /// - /// - /// - /// - /// - public partial class SimpleTypeVisitor6 : Javax.Lang.Model.Util.AbstractTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor7 - /// - /// - /// - public partial class SimpleTypeVisitor7 : Javax.Lang.Model.Util.SimpleTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor7 - /// - /// - /// - /// - /// - public partial class SimpleTypeVisitor7 : Javax.Lang.Model.Util.SimpleTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor8 - /// - /// - /// - public partial class SimpleTypeVisitor8 : Javax.Lang.Model.Util.SimpleTypeVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor8 - /// - /// - /// - /// - /// - public partial class SimpleTypeVisitor8 : Javax.Lang.Model.Util.SimpleTypeVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor9 - /// - /// - /// - public partial class SimpleTypeVisitor9 : Javax.Lang.Model.Util.SimpleTypeVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleTypeVisitor9 - /// - /// - /// - /// - /// - public partial class SimpleTypeVisitor9 : Javax.Lang.Model.Util.SimpleTypeVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleTypeVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleTypeVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor6 - /// - /// - /// - public partial class TypeKindVisitor6 : Javax.Lang.Model.Util.SimpleTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor6 - /// - /// - /// - /// - /// - public partial class TypeKindVisitor6 : Javax.Lang.Model.Util.SimpleTypeVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor6"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor6() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor6(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor7 - /// - /// - /// - public partial class TypeKindVisitor7 : Javax.Lang.Model.Util.TypeKindVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor7 - /// - /// - /// - /// - /// - public partial class TypeKindVisitor7 : Javax.Lang.Model.Util.TypeKindVisitor6 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor7"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor7() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor7(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor8 - /// - /// - /// - public partial class TypeKindVisitor8 : Javax.Lang.Model.Util.TypeKindVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor8 - /// - /// - /// - /// - /// - public partial class TypeKindVisitor8 : Javax.Lang.Model.Util.TypeKindVisitor7 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor8"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor8() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor8(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor9 - /// - /// - /// - public partial class TypeKindVisitor9 : Javax.Lang.Model.Util.TypeKindVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeKindVisitor9 - /// - /// - /// - /// - /// - public partial class TypeKindVisitor9 : Javax.Lang.Model.Util.TypeKindVisitor8 - { - const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor9"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TypeKindVisitor9() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TypeKindVisitor9(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Types - /// - /// - /// - public partial class Types : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.lang.model.util.Types"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Types class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Types() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Types class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Types(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementFilter.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementFilter.cs index 2cce7a9e33..1df1e66ed8 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementFilter.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementFilter.cs @@ -25,7 +25,52 @@ namespace Javax.Lang.Model.Util { - #region ElementFilter + #region ElementFilter declaration + /// + /// + /// + public partial class ElementFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.util.ElementFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementFilter implementation public partial class ElementFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor6.cs index d7b1333103..4a235345a8 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor6.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementKindVisitor6 + #region ElementKindVisitor6 declaration + /// + /// + /// + public partial class ElementKindVisitor6 : Javax.Lang.Model.Util.SimpleElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor6 declaration + /// + /// + /// + /// + /// + public partial class ElementKindVisitor6 : Javax.Lang.Model.Util.SimpleElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor6 implementation public partial class ElementKindVisitor6 { #region Constructors @@ -196,7 +288,7 @@ public object VisitVariableAsResourceVariable(Javax.Lang.Model.Element.VariableE } #endregion - #region ElementKindVisitor6 + #region ElementKindVisitor6 implementation public partial class ElementKindVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor7.cs index 3e1199c712..67f10b24a6 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor7.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementKindVisitor7 + #region ElementKindVisitor7 declaration + /// + /// + /// + public partial class ElementKindVisitor7 : Javax.Lang.Model.Util.ElementKindVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor7 declaration + /// + /// + /// + /// + /// + public partial class ElementKindVisitor7 : Javax.Lang.Model.Util.ElementKindVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor7 implementation public partial class ElementKindVisitor7 { #region Constructors @@ -56,7 +148,7 @@ public partial class ElementKindVisitor7 } #endregion - #region ElementKindVisitor7 + #region ElementKindVisitor7 implementation public partial class ElementKindVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor8.cs index 4ba0c08d82..09ffbd5ceb 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor8.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementKindVisitor8 + #region ElementKindVisitor8 declaration + /// + /// + /// + public partial class ElementKindVisitor8 : Javax.Lang.Model.Util.ElementKindVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor8 declaration + /// + /// + /// + /// + /// + public partial class ElementKindVisitor8 : Javax.Lang.Model.Util.ElementKindVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor8 implementation public partial class ElementKindVisitor8 { #region Constructors @@ -56,7 +148,7 @@ public partial class ElementKindVisitor8 } #endregion - #region ElementKindVisitor8 + #region ElementKindVisitor8 implementation public partial class ElementKindVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor9.cs index 5402f39a62..e6c595f0f6 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementKindVisitor9.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementKindVisitor9 + #region ElementKindVisitor9 declaration + /// + /// + /// + public partial class ElementKindVisitor9 : Javax.Lang.Model.Util.ElementKindVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor9 declaration + /// + /// + /// + /// + /// + public partial class ElementKindVisitor9 : Javax.Lang.Model.Util.ElementKindVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.ElementKindVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementKindVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementKindVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementKindVisitor9 implementation public partial class ElementKindVisitor9 { #region Constructors @@ -56,7 +148,7 @@ public partial class ElementKindVisitor9 } #endregion - #region ElementKindVisitor9 + #region ElementKindVisitor9 implementation public partial class ElementKindVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner6.cs index 47ff662fea..4c3571248c 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner6.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementScanner6 + #region ElementScanner6 declaration + /// + /// + /// + public partial class ElementScanner6 : Javax.Lang.Model.Util.AbstractElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner6 declaration + /// + /// + /// + /// + /// + public partial class ElementScanner6 : Javax.Lang.Model.Util.AbstractElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner6 implementation public partial class ElementScanner6 { #region Constructors @@ -85,7 +177,7 @@ public object Scan(Javax.Lang.Model.Element.Element arg0, object arg1) } #endregion - #region ElementScanner6 + #region ElementScanner6 implementation public partial class ElementScanner6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner7.cs index 66c27e9750..5c818b0705 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner7.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementScanner7 + #region ElementScanner7 declaration + /// + /// + /// + public partial class ElementScanner7 : Javax.Lang.Model.Util.ElementScanner6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner7 declaration + /// + /// + /// + /// + /// + public partial class ElementScanner7 : Javax.Lang.Model.Util.ElementScanner6 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner7 implementation public partial class ElementScanner7 { #region Constructors @@ -56,7 +148,7 @@ public partial class ElementScanner7 } #endregion - #region ElementScanner7 + #region ElementScanner7 implementation public partial class ElementScanner7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner8.cs index 8db330085b..794ab673fb 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner8.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementScanner8 + #region ElementScanner8 declaration + /// + /// + /// + public partial class ElementScanner8 : Javax.Lang.Model.Util.ElementScanner7 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner8 declaration + /// + /// + /// + /// + /// + public partial class ElementScanner8 : Javax.Lang.Model.Util.ElementScanner7 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner8 implementation public partial class ElementScanner8 { #region Constructors @@ -56,7 +148,7 @@ public partial class ElementScanner8 } #endregion - #region ElementScanner8 + #region ElementScanner8 implementation public partial class ElementScanner8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner9.cs index 666db27783..6ad7b22658 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/ElementScanner9.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region ElementScanner9 + #region ElementScanner9 declaration + /// + /// + /// + public partial class ElementScanner9 : Javax.Lang.Model.Util.ElementScanner8 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner9 declaration + /// + /// + /// + /// + /// + public partial class ElementScanner9 : Javax.Lang.Model.Util.ElementScanner8 + { + const string _bridgeClassName = "javax.lang.model.util.ElementScanner9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementScanner9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementScanner9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementScanner9 implementation public partial class ElementScanner9 { #region Constructors @@ -56,7 +148,7 @@ public partial class ElementScanner9 } #endregion - #region ElementScanner9 + #region ElementScanner9 implementation public partial class ElementScanner9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/Elements.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/Elements.cs index 6e459d84f1..afe8b7e2ae 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/Elements.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/Elements.cs @@ -25,6 +25,98 @@ namespace Javax.Lang.Model.Util { + #region Elements declaration + /// + /// + /// + public partial class Elements : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.util.Elements"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Elements class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Elements() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Elements class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Elements(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Origin declaration + /// + /// + /// + public partial class Origin : Java.Lang.Enum + { + const string _bridgeClassName = "javax.lang.model.util.Elements$Origin"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Origin() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Origin(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IElements /// /// .NET interface for TO BE DEFINED FROM USER @@ -210,7 +302,7 @@ public partial interface IElements } #endregion - #region Elements + #region Elements implementation public partial class Elements : Javax.Lang.Model.Util.IElements { #region Constructors @@ -479,7 +571,7 @@ public Javax.Lang.Model.Util.Elements.Origin GetOrigin(Javax.Lang.Model.Element. #endregion #region Nested classes - #region Origin + #region Origin implementation public partial class Origin { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor6.cs index 0bb5b032ff..db5ebf7ca5 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor6.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleAnnotationValueVisitor6 + #region SimpleAnnotationValueVisitor6 declaration + /// + /// + /// + public partial class SimpleAnnotationValueVisitor6 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor6 declaration + /// + /// + /// + /// + /// + public partial class SimpleAnnotationValueVisitor6 : Javax.Lang.Model.Util.AbstractAnnotationValueVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor6 implementation public partial class SimpleAnnotationValueVisitor6 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleAnnotationValueVisitor6 } #endregion - #region SimpleAnnotationValueVisitor6 + #region SimpleAnnotationValueVisitor6 implementation public partial class SimpleAnnotationValueVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor7.cs index fe6acd693b..327e2f8685 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor7.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleAnnotationValueVisitor7 + #region SimpleAnnotationValueVisitor7 declaration + /// + /// + /// + public partial class SimpleAnnotationValueVisitor7 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor7 declaration + /// + /// + /// + /// + /// + public partial class SimpleAnnotationValueVisitor7 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor7 implementation public partial class SimpleAnnotationValueVisitor7 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleAnnotationValueVisitor7 } #endregion - #region SimpleAnnotationValueVisitor7 + #region SimpleAnnotationValueVisitor7 implementation public partial class SimpleAnnotationValueVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor8.cs index 56f95e67c0..123c8fc3ca 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor8.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleAnnotationValueVisitor8 + #region SimpleAnnotationValueVisitor8 declaration + /// + /// + /// + public partial class SimpleAnnotationValueVisitor8 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor8 declaration + /// + /// + /// + /// + /// + public partial class SimpleAnnotationValueVisitor8 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor8 implementation public partial class SimpleAnnotationValueVisitor8 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleAnnotationValueVisitor8 } #endregion - #region SimpleAnnotationValueVisitor8 + #region SimpleAnnotationValueVisitor8 implementation public partial class SimpleAnnotationValueVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor9.cs index b804419708..272410f921 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleAnnotationValueVisitor9.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleAnnotationValueVisitor9 + #region SimpleAnnotationValueVisitor9 declaration + /// + /// + /// + public partial class SimpleAnnotationValueVisitor9 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor9 declaration + /// + /// + /// + /// + /// + public partial class SimpleAnnotationValueVisitor9 : Javax.Lang.Model.Util.SimpleAnnotationValueVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleAnnotationValueVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAnnotationValueVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAnnotationValueVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAnnotationValueVisitor9 implementation public partial class SimpleAnnotationValueVisitor9 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleAnnotationValueVisitor9 } #endregion - #region SimpleAnnotationValueVisitor9 + #region SimpleAnnotationValueVisitor9 implementation public partial class SimpleAnnotationValueVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor6.cs index 974a7fcec2..f331e28430 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor6.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleElementVisitor6 + #region SimpleElementVisitor6 declaration + /// + /// + /// + public partial class SimpleElementVisitor6 : Javax.Lang.Model.Util.AbstractElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor6 declaration + /// + /// + /// + /// + /// + public partial class SimpleElementVisitor6 : Javax.Lang.Model.Util.AbstractElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor6 implementation public partial class SimpleElementVisitor6 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleElementVisitor6 } #endregion - #region SimpleElementVisitor6 + #region SimpleElementVisitor6 implementation public partial class SimpleElementVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor7.cs index 18be4d0451..4ee78b623f 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor7.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleElementVisitor7 + #region SimpleElementVisitor7 declaration + /// + /// + /// + public partial class SimpleElementVisitor7 : Javax.Lang.Model.Util.SimpleElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor7 declaration + /// + /// + /// + /// + /// + public partial class SimpleElementVisitor7 : Javax.Lang.Model.Util.SimpleElementVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor7 implementation public partial class SimpleElementVisitor7 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleElementVisitor7 } #endregion - #region SimpleElementVisitor7 + #region SimpleElementVisitor7 implementation public partial class SimpleElementVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor8.cs index a5dbef4b9e..e05ee736e1 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor8.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleElementVisitor8 + #region SimpleElementVisitor8 declaration + /// + /// + /// + public partial class SimpleElementVisitor8 : Javax.Lang.Model.Util.SimpleElementVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor8 declaration + /// + /// + /// + /// + /// + public partial class SimpleElementVisitor8 : Javax.Lang.Model.Util.SimpleElementVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor8 implementation public partial class SimpleElementVisitor8 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleElementVisitor8 } #endregion - #region SimpleElementVisitor8 + #region SimpleElementVisitor8 implementation public partial class SimpleElementVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor9.cs index 9849f6a76a..a4b6f8efbf 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleElementVisitor9.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleElementVisitor9 + #region SimpleElementVisitor9 declaration + /// + /// + /// + public partial class SimpleElementVisitor9 : Javax.Lang.Model.Util.SimpleElementVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor9 declaration + /// + /// + /// + /// + /// + public partial class SimpleElementVisitor9 : Javax.Lang.Model.Util.SimpleElementVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleElementVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleElementVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleElementVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleElementVisitor9 implementation public partial class SimpleElementVisitor9 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleElementVisitor9 } #endregion - #region SimpleElementVisitor9 + #region SimpleElementVisitor9 implementation public partial class SimpleElementVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor6.cs index ba9fe03159..e3aad112e1 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor6.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleTypeVisitor6 + #region SimpleTypeVisitor6 declaration + /// + /// + /// + public partial class SimpleTypeVisitor6 : Javax.Lang.Model.Util.AbstractTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor6 declaration + /// + /// + /// + /// + /// + public partial class SimpleTypeVisitor6 : Javax.Lang.Model.Util.AbstractTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor6 implementation public partial class SimpleTypeVisitor6 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleTypeVisitor6 } #endregion - #region SimpleTypeVisitor6 + #region SimpleTypeVisitor6 implementation public partial class SimpleTypeVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor7.cs index 44909399c7..26ed8f8609 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor7.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleTypeVisitor7 + #region SimpleTypeVisitor7 declaration + /// + /// + /// + public partial class SimpleTypeVisitor7 : Javax.Lang.Model.Util.SimpleTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor7 declaration + /// + /// + /// + /// + /// + public partial class SimpleTypeVisitor7 : Javax.Lang.Model.Util.SimpleTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor7 implementation public partial class SimpleTypeVisitor7 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleTypeVisitor7 } #endregion - #region SimpleTypeVisitor7 + #region SimpleTypeVisitor7 implementation public partial class SimpleTypeVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor8.cs index 7854b6d2b2..79e39e13e8 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor8.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleTypeVisitor8 + #region SimpleTypeVisitor8 declaration + /// + /// + /// + public partial class SimpleTypeVisitor8 : Javax.Lang.Model.Util.SimpleTypeVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor8 declaration + /// + /// + /// + /// + /// + public partial class SimpleTypeVisitor8 : Javax.Lang.Model.Util.SimpleTypeVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor8 implementation public partial class SimpleTypeVisitor8 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleTypeVisitor8 } #endregion - #region SimpleTypeVisitor8 + #region SimpleTypeVisitor8 implementation public partial class SimpleTypeVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor9.cs index 9a0e6a9a71..633a3ee66b 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/SimpleTypeVisitor9.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region SimpleTypeVisitor9 + #region SimpleTypeVisitor9 declaration + /// + /// + /// + public partial class SimpleTypeVisitor9 : Javax.Lang.Model.Util.SimpleTypeVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor9 declaration + /// + /// + /// + /// + /// + public partial class SimpleTypeVisitor9 : Javax.Lang.Model.Util.SimpleTypeVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.SimpleTypeVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleTypeVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleTypeVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleTypeVisitor9 implementation public partial class SimpleTypeVisitor9 { #region Constructors @@ -56,7 +148,7 @@ public partial class SimpleTypeVisitor9 } #endregion - #region SimpleTypeVisitor9 + #region SimpleTypeVisitor9 implementation public partial class SimpleTypeVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor6.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor6.cs index 3d9beca04d..b55e6edd43 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor6.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor6.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region TypeKindVisitor6 + #region TypeKindVisitor6 declaration + /// + /// + /// + public partial class TypeKindVisitor6 : Javax.Lang.Model.Util.SimpleTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor6 declaration + /// + /// + /// + /// + /// + public partial class TypeKindVisitor6 : Javax.Lang.Model.Util.SimpleTypeVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor6"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor6() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor6(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor6 implementation public partial class TypeKindVisitor6 { #region Constructors @@ -176,7 +268,7 @@ public object VisitPrimitiveAsShort(Javax.Lang.Model.Type.PrimitiveType arg0, ob } #endregion - #region TypeKindVisitor6 + #region TypeKindVisitor6 implementation public partial class TypeKindVisitor6 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor7.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor7.cs index 78e54a4f6f..94f85bafa6 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor7.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor7.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region TypeKindVisitor7 + #region TypeKindVisitor7 declaration + /// + /// + /// + public partial class TypeKindVisitor7 : Javax.Lang.Model.Util.TypeKindVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor7 declaration + /// + /// + /// + /// + /// + public partial class TypeKindVisitor7 : Javax.Lang.Model.Util.TypeKindVisitor6 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor7"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor7() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor7(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor7 implementation public partial class TypeKindVisitor7 { #region Constructors @@ -56,7 +148,7 @@ public partial class TypeKindVisitor7 } #endregion - #region TypeKindVisitor7 + #region TypeKindVisitor7 implementation public partial class TypeKindVisitor7 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor8.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor8.cs index 11a04e1872..ac211b1e22 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor8.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor8.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region TypeKindVisitor8 + #region TypeKindVisitor8 declaration + /// + /// + /// + public partial class TypeKindVisitor8 : Javax.Lang.Model.Util.TypeKindVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor8 declaration + /// + /// + /// + /// + /// + public partial class TypeKindVisitor8 : Javax.Lang.Model.Util.TypeKindVisitor7 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor8"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor8() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor8(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor8 implementation public partial class TypeKindVisitor8 { #region Constructors @@ -56,7 +148,7 @@ public partial class TypeKindVisitor8 } #endregion - #region TypeKindVisitor8 + #region TypeKindVisitor8 implementation public partial class TypeKindVisitor8 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor9.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor9.cs index 0f26e83d8e..7e995f2c99 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor9.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/TypeKindVisitor9.cs @@ -25,7 +25,99 @@ namespace Javax.Lang.Model.Util { - #region TypeKindVisitor9 + #region TypeKindVisitor9 declaration + /// + /// + /// + public partial class TypeKindVisitor9 : Javax.Lang.Model.Util.TypeKindVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor9 declaration + /// + /// + /// + /// + /// + public partial class TypeKindVisitor9 : Javax.Lang.Model.Util.TypeKindVisitor8 + { + const string _bridgeClassName = "javax.lang.model.util.TypeKindVisitor9"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TypeKindVisitor9() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TypeKindVisitor9(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeKindVisitor9 implementation public partial class TypeKindVisitor9 { #region Constructors @@ -56,7 +148,7 @@ public partial class TypeKindVisitor9 } #endregion - #region TypeKindVisitor9 + #region TypeKindVisitor9 implementation public partial class TypeKindVisitor9 { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Lang/Model/Util/Types.cs b/src/net/JNet/Generated/Javax/Lang/Model/Util/Types.cs index 55887baf89..13bdfbc1dc 100644 --- a/src/net/JNet/Generated/Javax/Lang/Model/Util/Types.cs +++ b/src/net/JNet/Generated/Javax/Lang/Model/Util/Types.cs @@ -25,6 +25,53 @@ namespace Javax.Lang.Model.Util { + #region Types declaration + /// + /// + /// + public partial class Types : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.lang.model.util.Types"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Types class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Types() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Types class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Types(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITypes /// /// .NET interface for TO BE DEFINED FROM USER @@ -166,7 +213,7 @@ public partial interface ITypes } #endregion - #region Types + #region Types implementation public partial class Types : Javax.Lang.Model.Util.ITypes { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/AllPackageClasses.cs deleted file mode 100644 index e170994869..0000000000 --- a/src/net/JNet/Generated/Javax/Management/AllPackageClasses.cs +++ /dev/null @@ -1,2732 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management -{ - #region Attribute - /// - /// - /// - public partial class Attribute : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeChangeNotification - /// - /// - /// - public partial class AttributeChangeNotification : Javax.Management.Notification - { - const string _bridgeClassName = "javax.management.AttributeChangeNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeChangeNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeChangeNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeChangeNotificationFilter - /// - /// - /// - public partial class AttributeChangeNotificationFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.AttributeChangeNotificationFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeChangeNotificationFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeChangeNotificationFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeList - /// - /// - /// - public partial class AttributeList : Java.Util.ArrayList - { - const string _bridgeClassName = "javax.management.AttributeList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeNotFoundException - /// - /// - /// - public partial class AttributeNotFoundException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.AttributeNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AttributeValueExp - /// - /// - /// - public partial class AttributeValueExp : Javax.Management.ValueExp - { - const string _bridgeClassName = "javax.management.AttributeValueExp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeValueExp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeValueExp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BadAttributeValueExpException - /// - /// - /// - public partial class BadAttributeValueExpException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.BadAttributeValueExpException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region BadBinaryOpValueExpException - /// - /// - /// - public partial class BadBinaryOpValueExpException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.BadBinaryOpValueExpException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region BadStringOperationException - /// - /// - /// - public partial class BadStringOperationException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.BadStringOperationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ConstructorParameters - /// - /// - /// - public partial class ConstructorParameters : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.management.ConstructorParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConstructorParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConstructorParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConstructorParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConstructorParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Descriptor - /// - /// - /// - public partial class Descriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.Descriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Descriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Descriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Descriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Descriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DescriptorAccess - /// - /// - /// - public partial class DescriptorAccess : Javax.Management.DescriptorRead - { - const string _bridgeClassName = "javax.management.DescriptorAccess"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DescriptorAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DescriptorAccess() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DescriptorAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DescriptorAccess(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DescriptorKey - /// - /// - /// - public partial class DescriptorKey : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.management.DescriptorKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DescriptorKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DescriptorKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DescriptorKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DescriptorKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DescriptorRead - /// - /// - /// - public partial class DescriptorRead : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.DescriptorRead"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DescriptorRead class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DescriptorRead() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DescriptorRead class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DescriptorRead(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DynamicMBean - /// - /// - /// - public partial class DynamicMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.DynamicMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DynamicMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DynamicMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DynamicMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DynamicMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImmutableDescriptor - /// - /// - /// - public partial class ImmutableDescriptor : Javax.Management.Descriptor - { - const string _bridgeClassName = "javax.management.ImmutableDescriptor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImmutableDescriptor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImmutableDescriptor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InstanceAlreadyExistsException - /// - /// - /// - public partial class InstanceAlreadyExistsException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.InstanceAlreadyExistsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InstanceNotFoundException - /// - /// - /// - public partial class InstanceNotFoundException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.InstanceNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region IntrospectionException - /// - /// - /// - public partial class IntrospectionException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.IntrospectionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidApplicationException - /// - /// - /// - public partial class InvalidApplicationException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.InvalidApplicationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidAttributeValueException - /// - /// - /// - public partial class InvalidAttributeValueException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.InvalidAttributeValueException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region JMException - /// - /// - /// - public partial class JMException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.JMException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region JMRuntimeException - /// - /// - /// - public partial class JMRuntimeException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.management.JMRuntimeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region JMX - /// - /// - /// - public partial class JMX : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.JMX"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMX() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMX(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListenerNotFoundException - /// - /// - /// - public partial class ListenerNotFoundException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.ListenerNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MalformedObjectNameException - /// - /// - /// - public partial class MalformedObjectNameException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.MalformedObjectNameException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MBeanAttributeInfo - /// - /// - /// - public partial class MBeanAttributeInfo : Javax.Management.MBeanFeatureInfo - { - const string _bridgeClassName = "javax.management.MBeanAttributeInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanAttributeInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanAttributeInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanConstructorInfo - /// - /// - /// - public partial class MBeanConstructorInfo : Javax.Management.MBeanFeatureInfo - { - const string _bridgeClassName = "javax.management.MBeanConstructorInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanConstructorInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanConstructorInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanException - /// - /// - /// - public partial class MBeanException : Javax.Management.JMException - { - const string _bridgeClassName = "javax.management.MBeanException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MBeanFeatureInfo - /// - /// - /// - public partial class MBeanFeatureInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanFeatureInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanFeatureInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanFeatureInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanInfo - /// - /// - /// - public partial class MBeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanNotificationInfo - /// - /// - /// - public partial class MBeanNotificationInfo : Javax.Management.MBeanFeatureInfo - { - const string _bridgeClassName = "javax.management.MBeanNotificationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanNotificationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanNotificationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanOperationInfo - /// - /// - /// - public partial class MBeanOperationInfo : Javax.Management.MBeanFeatureInfo - { - const string _bridgeClassName = "javax.management.MBeanOperationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanOperationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanOperationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanParameterInfo - /// - /// - /// - public partial class MBeanParameterInfo : Javax.Management.MBeanFeatureInfo - { - const string _bridgeClassName = "javax.management.MBeanParameterInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanParameterInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanParameterInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanPermission - /// - /// - /// - public partial class MBeanPermission : Java.Security.Permission - { - const string _bridgeClassName = "javax.management.MBeanPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanRegistration - /// - /// - /// - public partial class MBeanRegistration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanRegistration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MBeanRegistration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanRegistration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MBeanRegistration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanRegistration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanRegistrationException - /// - /// - /// - public partial class MBeanRegistrationException : Javax.Management.MBeanException - { - const string _bridgeClassName = "javax.management.MBeanRegistrationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MBeanServer - /// - /// - /// - public partial class MBeanServer : Javax.Management.MBeanServerConnection - { - const string _bridgeClassName = "javax.management.MBeanServer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MBeanServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MBeanServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerBuilder - /// - /// - /// - public partial class MBeanServerBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanServerBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerConnection - /// - /// - /// - public partial class MBeanServerConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanServerConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MBeanServerConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServerConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MBeanServerConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServerConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerDelegate - /// - /// - /// - public partial class MBeanServerDelegate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanServerDelegate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerDelegate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerDelegate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerDelegateMBean - /// - /// - /// - public partial class MBeanServerDelegateMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanServerDelegateMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MBeanServerDelegateMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServerDelegateMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MBeanServerDelegateMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServerDelegateMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerFactory - /// - /// - /// - public partial class MBeanServerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.MBeanServerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerInvocationHandler - /// - /// - /// - public partial class MBeanServerInvocationHandler : Java.Lang.Reflect.InvocationHandler - { - const string _bridgeClassName = "javax.management.MBeanServerInvocationHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerInvocationHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerInvocationHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerNotification - /// - /// - /// - public partial class MBeanServerNotification : Javax.Management.Notification - { - const string _bridgeClassName = "javax.management.MBeanServerNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerPermission - /// - /// - /// - public partial class MBeanServerPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.management.MBeanServerPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanTrustPermission - /// - /// - /// - public partial class MBeanTrustPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.management.MBeanTrustPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanTrustPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanTrustPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MXBean - /// - /// - /// - public partial class MXBean : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.management.MXBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MXBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MXBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotCompliantMBeanException - /// - /// - /// - public partial class NotCompliantMBeanException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.NotCompliantMBeanException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Notification - /// - /// - /// - public partial class Notification : Java.Util.EventObject - { - const string _bridgeClassName = "javax.management.Notification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Notification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Notification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotificationBroadcaster - /// - /// - /// - public partial class NotificationBroadcaster : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.NotificationBroadcaster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NotificationBroadcaster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NotificationBroadcaster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotificationBroadcasterSupport - /// - /// - /// - public partial class NotificationBroadcasterSupport : Javax.Management.NotificationEmitter - { - const string _bridgeClassName = "javax.management.NotificationBroadcasterSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NotificationBroadcasterSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NotificationBroadcasterSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotificationEmitter - /// - /// - /// - public partial class NotificationEmitter : Javax.Management.NotificationBroadcaster - { - const string _bridgeClassName = "javax.management.NotificationEmitter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NotificationEmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NotificationEmitter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NotificationEmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NotificationEmitter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotificationFilter - /// - /// - /// - public partial class NotificationFilter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NotificationFilter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.management.NotificationFilter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region NotificationFilterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class NotificationFilterDirect : NotificationFilter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.management.NotificationFilter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region NotificationFilterSupport - /// - /// - /// - public partial class NotificationFilterSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.NotificationFilterSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NotificationFilterSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NotificationFilterSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotificationListener - /// - /// - /// - public partial class NotificationListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NotificationListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.management.NotificationListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region NotificationListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class NotificationListenerDirect : NotificationListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.management.NotificationListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjectInstance - /// - /// - /// - public partial class ObjectInstance : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.ObjectInstance"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectInstance() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectInstance(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectName - /// - /// - /// - public partial class ObjectName : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.ObjectName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OperationsException - /// - /// - /// - public partial class OperationsException : Javax.Management.JMException - { - const string _bridgeClassName = "javax.management.OperationsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PersistentMBean - /// - /// - /// - public partial class PersistentMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.PersistentMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PersistentMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PersistentMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PersistentMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PersistentMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Query - /// - /// - /// - public partial class Query : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.Query"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Query() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Query(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QueryEval - /// - /// - /// - public partial class QueryEval : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.QueryEval"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("QueryEval class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QueryEval() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("QueryEval class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QueryEval(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QueryExp - /// - /// - /// - public partial class QueryExp : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.QueryExp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("QueryExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QueryExp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("QueryExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public QueryExp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReflectionException - /// - /// - /// - public partial class ReflectionException : Javax.Management.JMException - { - const string _bridgeClassName = "javax.management.ReflectionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RuntimeErrorException - /// - /// - /// - public partial class RuntimeErrorException : Javax.Management.JMRuntimeException - { - const string _bridgeClassName = "javax.management.RuntimeErrorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RuntimeMBeanException - /// - /// - /// - public partial class RuntimeMBeanException : Javax.Management.JMRuntimeException - { - const string _bridgeClassName = "javax.management.RuntimeMBeanException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RuntimeOperationsException - /// - /// - /// - public partial class RuntimeOperationsException : Javax.Management.JMRuntimeException - { - const string _bridgeClassName = "javax.management.RuntimeOperationsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ServiceNotFoundException - /// - /// - /// - public partial class ServiceNotFoundException : Javax.Management.OperationsException - { - const string _bridgeClassName = "javax.management.ServiceNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StandardEmitterMBean - /// - /// - /// - public partial class StandardEmitterMBean : Javax.Management.StandardMBean - { - const string _bridgeClassName = "javax.management.StandardEmitterMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardEmitterMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardEmitterMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardMBean - /// - /// - /// - public partial class StandardMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.StandardMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringValueExp - /// - /// - /// - public partial class StringValueExp : Javax.Management.ValueExp - { - const string _bridgeClassName = "javax.management.StringValueExp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringValueExp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringValueExp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ValueExp - /// - /// - /// - public partial class ValueExp : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.ValueExp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ValueExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ValueExp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ValueExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ValueExp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Attribute.cs b/src/net/JNet/Generated/Javax/Management/Attribute.cs index d5a95fb9ab..6115218083 100644 --- a/src/net/JNet/Generated/Javax/Management/Attribute.cs +++ b/src/net/JNet/Generated/Javax/Management/Attribute.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region Attribute + #region Attribute declaration + /// + /// + /// + public partial class Attribute : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Attribute implementation public partial class Attribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/AttributeChangeNotification.cs b/src/net/JNet/Generated/Javax/Management/AttributeChangeNotification.cs index fdc0e350f6..adcba4446a 100644 --- a/src/net/JNet/Generated/Javax/Management/AttributeChangeNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/AttributeChangeNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region AttributeChangeNotification + #region AttributeChangeNotification declaration + /// + /// + /// + public partial class AttributeChangeNotification : Javax.Management.Notification + { + const string _bridgeClassName = "javax.management.AttributeChangeNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeChangeNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeChangeNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeChangeNotification implementation public partial class AttributeChangeNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/AttributeChangeNotificationFilter.cs b/src/net/JNet/Generated/Javax/Management/AttributeChangeNotificationFilter.cs index aae7e7e5a3..ccd5509281 100644 --- a/src/net/JNet/Generated/Javax/Management/AttributeChangeNotificationFilter.cs +++ b/src/net/JNet/Generated/Javax/Management/AttributeChangeNotificationFilter.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region AttributeChangeNotificationFilter + #region AttributeChangeNotificationFilter declaration + /// + /// + /// + public partial class AttributeChangeNotificationFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.AttributeChangeNotificationFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeChangeNotificationFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeChangeNotificationFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeChangeNotificationFilter implementation public partial class AttributeChangeNotificationFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/AttributeList.cs b/src/net/JNet/Generated/Javax/Management/AttributeList.cs index fe31b9646a..9965bbad39 100644 --- a/src/net/JNet/Generated/Javax/Management/AttributeList.cs +++ b/src/net/JNet/Generated/Javax/Management/AttributeList.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region AttributeList + #region AttributeList declaration + /// + /// + /// + public partial class AttributeList : Java.Util.ArrayList + { + const string _bridgeClassName = "javax.management.AttributeList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeList implementation public partial class AttributeList { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/AttributeNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/AttributeNotFoundException.cs index c881ddd199..61b0d1d1d0 100644 --- a/src/net/JNet/Generated/Javax/Management/AttributeNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/AttributeNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region AttributeNotFoundException + #region AttributeNotFoundException declaration + /// + /// + /// + public partial class AttributeNotFoundException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.AttributeNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AttributeNotFoundException implementation public partial class AttributeNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/AttributeValueExp.cs b/src/net/JNet/Generated/Javax/Management/AttributeValueExp.cs index eca8f8c004..e1916cbafc 100644 --- a/src/net/JNet/Generated/Javax/Management/AttributeValueExp.cs +++ b/src/net/JNet/Generated/Javax/Management/AttributeValueExp.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region AttributeValueExp + #region AttributeValueExp declaration + /// + /// + /// + public partial class AttributeValueExp : Javax.Management.ValueExp + { + const string _bridgeClassName = "javax.management.AttributeValueExp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeValueExp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeValueExp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeValueExp implementation public partial class AttributeValueExp { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/BadAttributeValueExpException.cs b/src/net/JNet/Generated/Javax/Management/BadAttributeValueExpException.cs index 412209c043..76da8e2aab 100644 --- a/src/net/JNet/Generated/Javax/Management/BadAttributeValueExpException.cs +++ b/src/net/JNet/Generated/Javax/Management/BadAttributeValueExpException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region BadAttributeValueExpException + #region BadAttributeValueExpException declaration + /// + /// + /// + public partial class BadAttributeValueExpException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.BadAttributeValueExpException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BadAttributeValueExpException implementation public partial class BadAttributeValueExpException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/BadBinaryOpValueExpException.cs b/src/net/JNet/Generated/Javax/Management/BadBinaryOpValueExpException.cs index ce2cae6253..3dece51b45 100644 --- a/src/net/JNet/Generated/Javax/Management/BadBinaryOpValueExpException.cs +++ b/src/net/JNet/Generated/Javax/Management/BadBinaryOpValueExpException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region BadBinaryOpValueExpException + #region BadBinaryOpValueExpException declaration + /// + /// + /// + public partial class BadBinaryOpValueExpException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.BadBinaryOpValueExpException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BadBinaryOpValueExpException implementation public partial class BadBinaryOpValueExpException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/BadStringOperationException.cs b/src/net/JNet/Generated/Javax/Management/BadStringOperationException.cs index 7e1e0755d6..575ddf76cd 100644 --- a/src/net/JNet/Generated/Javax/Management/BadStringOperationException.cs +++ b/src/net/JNet/Generated/Javax/Management/BadStringOperationException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region BadStringOperationException + #region BadStringOperationException declaration + /// + /// + /// + public partial class BadStringOperationException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.BadStringOperationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BadStringOperationException implementation public partial class BadStringOperationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ConstructorParameters.cs b/src/net/JNet/Generated/Javax/Management/ConstructorParameters.cs index 770751fff8..77f87aaf2a 100644 --- a/src/net/JNet/Generated/Javax/Management/ConstructorParameters.cs +++ b/src/net/JNet/Generated/Javax/Management/ConstructorParameters.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region ConstructorParameters declaration + /// + /// + /// + public partial class ConstructorParameters : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.management.ConstructorParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConstructorParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConstructorParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConstructorParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConstructorParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IConstructorParameters /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IConstructorParameters : Java.Lang.Annotation.IAnnotati } #endregion - #region ConstructorParameters + #region ConstructorParameters implementation public partial class ConstructorParameters : Javax.Management.IConstructorParameters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Descriptor.cs b/src/net/JNet/Generated/Javax/Management/Descriptor.cs index 21213d9aba..906a7a605b 100644 --- a/src/net/JNet/Generated/Javax/Management/Descriptor.cs +++ b/src/net/JNet/Generated/Javax/Management/Descriptor.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region Descriptor declaration + /// + /// + /// + public partial class Descriptor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.Descriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Descriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Descriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Descriptor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Descriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDescriptor /// /// .NET interface for TO BE DEFINED FROM USER @@ -89,7 +136,7 @@ public partial interface IDescriptor } #endregion - #region Descriptor + #region Descriptor implementation public partial class Descriptor : Javax.Management.IDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/DescriptorAccess.cs b/src/net/JNet/Generated/Javax/Management/DescriptorAccess.cs index 20ca5b02a3..431e1645f9 100644 --- a/src/net/JNet/Generated/Javax/Management/DescriptorAccess.cs +++ b/src/net/JNet/Generated/Javax/Management/DescriptorAccess.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region DescriptorAccess declaration + /// + /// + /// + public partial class DescriptorAccess : Javax.Management.DescriptorRead + { + const string _bridgeClassName = "javax.management.DescriptorAccess"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DescriptorAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DescriptorAccess() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DescriptorAccess class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DescriptorAccess(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDescriptorAccess /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IDescriptorAccess : Javax.Management.IDescriptorRead } #endregion - #region DescriptorAccess + #region DescriptorAccess implementation public partial class DescriptorAccess : Javax.Management.IDescriptorAccess { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/DescriptorKey.cs b/src/net/JNet/Generated/Javax/Management/DescriptorKey.cs index 30576350e8..559328b0e3 100644 --- a/src/net/JNet/Generated/Javax/Management/DescriptorKey.cs +++ b/src/net/JNet/Generated/Javax/Management/DescriptorKey.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region DescriptorKey declaration + /// + /// + /// + public partial class DescriptorKey : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.management.DescriptorKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DescriptorKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DescriptorKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DescriptorKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DescriptorKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDescriptorKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IDescriptorKey : Java.Lang.Annotation.IAnnotation } #endregion - #region DescriptorKey + #region DescriptorKey implementation public partial class DescriptorKey : Javax.Management.IDescriptorKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/DescriptorRead.cs b/src/net/JNet/Generated/Javax/Management/DescriptorRead.cs index 24d31e698f..3a0fb1c573 100644 --- a/src/net/JNet/Generated/Javax/Management/DescriptorRead.cs +++ b/src/net/JNet/Generated/Javax/Management/DescriptorRead.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region DescriptorRead declaration + /// + /// + /// + public partial class DescriptorRead : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.DescriptorRead"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DescriptorRead class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DescriptorRead() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DescriptorRead class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DescriptorRead(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDescriptorRead /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDescriptorRead } #endregion - #region DescriptorRead + #region DescriptorRead implementation public partial class DescriptorRead : Javax.Management.IDescriptorRead { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/DynamicMBean.cs b/src/net/JNet/Generated/Javax/Management/DynamicMBean.cs index bb41a66680..fe26fbe9d4 100644 --- a/src/net/JNet/Generated/Javax/Management/DynamicMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/DynamicMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region DynamicMBean declaration + /// + /// + /// + public partial class DynamicMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.DynamicMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DynamicMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DynamicMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DynamicMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DynamicMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDynamicMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface IDynamicMBean } #endregion - #region DynamicMBean + #region DynamicMBean implementation public partial class DynamicMBean : Javax.Management.IDynamicMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ImmutableDescriptor.cs b/src/net/JNet/Generated/Javax/Management/ImmutableDescriptor.cs index 83093e9cd1..2c35160947 100644 --- a/src/net/JNet/Generated/Javax/Management/ImmutableDescriptor.cs +++ b/src/net/JNet/Generated/Javax/Management/ImmutableDescriptor.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region ImmutableDescriptor + #region ImmutableDescriptor declaration + /// + /// + /// + public partial class ImmutableDescriptor : Javax.Management.Descriptor + { + const string _bridgeClassName = "javax.management.ImmutableDescriptor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImmutableDescriptor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImmutableDescriptor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImmutableDescriptor implementation public partial class ImmutableDescriptor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/InstanceAlreadyExistsException.cs b/src/net/JNet/Generated/Javax/Management/InstanceAlreadyExistsException.cs index 7bc0e464e4..6314949cd1 100644 --- a/src/net/JNet/Generated/Javax/Management/InstanceAlreadyExistsException.cs +++ b/src/net/JNet/Generated/Javax/Management/InstanceAlreadyExistsException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region InstanceAlreadyExistsException + #region InstanceAlreadyExistsException declaration + /// + /// + /// + public partial class InstanceAlreadyExistsException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.InstanceAlreadyExistsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InstanceAlreadyExistsException implementation public partial class InstanceAlreadyExistsException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/InstanceNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/InstanceNotFoundException.cs index a1fa0ac00c..dfc1748387 100644 --- a/src/net/JNet/Generated/Javax/Management/InstanceNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/InstanceNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region InstanceNotFoundException + #region InstanceNotFoundException declaration + /// + /// + /// + public partial class InstanceNotFoundException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.InstanceNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InstanceNotFoundException implementation public partial class InstanceNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/IntrospectionException.cs b/src/net/JNet/Generated/Javax/Management/IntrospectionException.cs index 89abb16356..7468d0251b 100644 --- a/src/net/JNet/Generated/Javax/Management/IntrospectionException.cs +++ b/src/net/JNet/Generated/Javax/Management/IntrospectionException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region IntrospectionException + #region IntrospectionException declaration + /// + /// + /// + public partial class IntrospectionException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.IntrospectionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region IntrospectionException implementation public partial class IntrospectionException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/InvalidApplicationException.cs b/src/net/JNet/Generated/Javax/Management/InvalidApplicationException.cs index 5030bfd68c..a21838962f 100644 --- a/src/net/JNet/Generated/Javax/Management/InvalidApplicationException.cs +++ b/src/net/JNet/Generated/Javax/Management/InvalidApplicationException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region InvalidApplicationException + #region InvalidApplicationException declaration + /// + /// + /// + public partial class InvalidApplicationException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.InvalidApplicationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidApplicationException implementation public partial class InvalidApplicationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/InvalidAttributeValueException.cs b/src/net/JNet/Generated/Javax/Management/InvalidAttributeValueException.cs index 762015e863..582bd6352d 100644 --- a/src/net/JNet/Generated/Javax/Management/InvalidAttributeValueException.cs +++ b/src/net/JNet/Generated/Javax/Management/InvalidAttributeValueException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region InvalidAttributeValueException + #region InvalidAttributeValueException declaration + /// + /// + /// + public partial class InvalidAttributeValueException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.InvalidAttributeValueException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidAttributeValueException implementation public partial class InvalidAttributeValueException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/JMException.cs b/src/net/JNet/Generated/Javax/Management/JMException.cs index 2faa0ad24d..b756ef6fd6 100644 --- a/src/net/JNet/Generated/Javax/Management/JMException.cs +++ b/src/net/JNet/Generated/Javax/Management/JMException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region JMException + #region JMException declaration + /// + /// + /// + public partial class JMException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.JMException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region JMException implementation public partial class JMException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/JMRuntimeException.cs b/src/net/JNet/Generated/Javax/Management/JMRuntimeException.cs index 5744eb606f..4e891cc1c7 100644 --- a/src/net/JNet/Generated/Javax/Management/JMRuntimeException.cs +++ b/src/net/JNet/Generated/Javax/Management/JMRuntimeException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region JMRuntimeException + #region JMRuntimeException declaration + /// + /// + /// + public partial class JMRuntimeException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.management.JMRuntimeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region JMRuntimeException implementation public partial class JMRuntimeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/JMX.cs b/src/net/JNet/Generated/Javax/Management/JMX.cs index f61ca5efc2..df38ddd1d4 100644 --- a/src/net/JNet/Generated/Javax/Management/JMX.cs +++ b/src/net/JNet/Generated/Javax/Management/JMX.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region JMX + #region JMX declaration + /// + /// + /// + public partial class JMX : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.JMX"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMX() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMX(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMX implementation public partial class JMX { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ListenerNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/ListenerNotFoundException.cs index 9d771b2d97..d9fadbaa26 100644 --- a/src/net/JNet/Generated/Javax/Management/ListenerNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/ListenerNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region ListenerNotFoundException + #region ListenerNotFoundException declaration + /// + /// + /// + public partial class ListenerNotFoundException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.ListenerNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ListenerNotFoundException implementation public partial class ListenerNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Loading/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Loading/AllPackageClasses.cs deleted file mode 100644 index 9465300243..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Loading/AllPackageClasses.cs +++ /dev/null @@ -1,306 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Loading -{ - #region ClassLoaderRepository - /// - /// - /// - public partial class ClassLoaderRepository : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.loading.ClassLoaderRepository"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ClassLoaderRepository class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassLoaderRepository() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ClassLoaderRepository class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ClassLoaderRepository(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MLet - /// - /// - /// - public partial class MLet : Java.Net.URLClassLoader - { - const string _bridgeClassName = "javax.management.loading.MLet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MLet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MLet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MLetContent - /// - /// - /// - public partial class MLetContent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.loading.MLetContent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MLetContent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MLetContent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MLetMBean - /// - /// - /// - public partial class MLetMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.loading.MLetMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MLetMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MLetMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MLetMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MLetMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivateClassLoader - /// - /// - /// - public partial class PrivateClassLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.loading.PrivateClassLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrivateClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivateClassLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrivateClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrivateClassLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrivateMLet - /// - /// - /// - public partial class PrivateMLet : Javax.Management.Loading.MLet - { - const string _bridgeClassName = "javax.management.loading.PrivateMLet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrivateMLet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrivateMLet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Loading/ClassLoaderRepository.cs b/src/net/JNet/Generated/Javax/Management/Loading/ClassLoaderRepository.cs index a421f53dd3..62f58a14de 100644 --- a/src/net/JNet/Generated/Javax/Management/Loading/ClassLoaderRepository.cs +++ b/src/net/JNet/Generated/Javax/Management/Loading/ClassLoaderRepository.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Loading { + #region ClassLoaderRepository declaration + /// + /// + /// + public partial class ClassLoaderRepository : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.loading.ClassLoaderRepository"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ClassLoaderRepository class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassLoaderRepository() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ClassLoaderRepository class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ClassLoaderRepository(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IClassLoaderRepository /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IClassLoaderRepository } #endregion - #region ClassLoaderRepository + #region ClassLoaderRepository implementation public partial class ClassLoaderRepository : Javax.Management.Loading.IClassLoaderRepository { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Loading/MLet.cs b/src/net/JNet/Generated/Javax/Management/Loading/MLet.cs index bc65e53f5a..33d9d28526 100644 --- a/src/net/JNet/Generated/Javax/Management/Loading/MLet.cs +++ b/src/net/JNet/Generated/Javax/Management/Loading/MLet.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Loading { - #region MLet + #region MLet declaration + /// + /// + /// + public partial class MLet : Java.Net.URLClassLoader + { + const string _bridgeClassName = "javax.management.loading.MLet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MLet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MLet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MLet implementation public partial class MLet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Loading/MLetContent.cs b/src/net/JNet/Generated/Javax/Management/Loading/MLetContent.cs index 502ca838e7..79752673af 100644 --- a/src/net/JNet/Generated/Javax/Management/Loading/MLetContent.cs +++ b/src/net/JNet/Generated/Javax/Management/Loading/MLetContent.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Loading { - #region MLetContent + #region MLetContent declaration + /// + /// + /// + public partial class MLetContent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.loading.MLetContent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MLetContent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MLetContent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MLetContent implementation public partial class MLetContent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Loading/MLetMBean.cs b/src/net/JNet/Generated/Javax/Management/Loading/MLetMBean.cs index 465151c52a..c70fc4a04e 100644 --- a/src/net/JNet/Generated/Javax/Management/Loading/MLetMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Loading/MLetMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Loading { + #region MLetMBean declaration + /// + /// + /// + public partial class MLetMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.loading.MLetMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MLetMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MLetMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MLetMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MLetMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMLetMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -95,7 +142,7 @@ public partial interface IMLetMBean } #endregion - #region MLetMBean + #region MLetMBean implementation public partial class MLetMBean : Javax.Management.Loading.IMLetMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Loading/PrivateClassLoader.cs b/src/net/JNet/Generated/Javax/Management/Loading/PrivateClassLoader.cs index 2703bbfd75..52183b066f 100644 --- a/src/net/JNet/Generated/Javax/Management/Loading/PrivateClassLoader.cs +++ b/src/net/JNet/Generated/Javax/Management/Loading/PrivateClassLoader.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Loading { + #region PrivateClassLoader declaration + /// + /// + /// + public partial class PrivateClassLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.loading.PrivateClassLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrivateClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivateClassLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrivateClassLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrivateClassLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrivateClassLoader /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPrivateClassLoader } #endregion - #region PrivateClassLoader + #region PrivateClassLoader implementation public partial class PrivateClassLoader : Javax.Management.Loading.IPrivateClassLoader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Loading/PrivateMLet.cs b/src/net/JNet/Generated/Javax/Management/Loading/PrivateMLet.cs index c93eacaafd..f5dd9c9f41 100644 --- a/src/net/JNet/Generated/Javax/Management/Loading/PrivateMLet.cs +++ b/src/net/JNet/Generated/Javax/Management/Loading/PrivateMLet.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Loading { - #region PrivateMLet + #region PrivateMLet declaration + /// + /// + /// + public partial class PrivateMLet : Javax.Management.Loading.MLet + { + const string _bridgeClassName = "javax.management.loading.PrivateMLet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrivateMLet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrivateMLet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrivateMLet implementation public partial class PrivateMLet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanAttributeInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanAttributeInfo.cs index 8097cb964b..cc9df7d69e 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanAttributeInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanAttributeInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanAttributeInfo + #region MBeanAttributeInfo declaration + /// + /// + /// + public partial class MBeanAttributeInfo : Javax.Management.MBeanFeatureInfo + { + const string _bridgeClassName = "javax.management.MBeanAttributeInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanAttributeInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanAttributeInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanAttributeInfo implementation public partial class MBeanAttributeInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanConstructorInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanConstructorInfo.cs index a6f2749d33..b9c954da38 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanConstructorInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanConstructorInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanConstructorInfo + #region MBeanConstructorInfo declaration + /// + /// + /// + public partial class MBeanConstructorInfo : Javax.Management.MBeanFeatureInfo + { + const string _bridgeClassName = "javax.management.MBeanConstructorInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanConstructorInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanConstructorInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanConstructorInfo implementation public partial class MBeanConstructorInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanException.cs b/src/net/JNet/Generated/Javax/Management/MBeanException.cs index 0148c37ac0..61203f7bfe 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanException.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region MBeanException + #region MBeanException declaration + /// + /// + /// + public partial class MBeanException : Javax.Management.JMException + { + const string _bridgeClassName = "javax.management.MBeanException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MBeanException implementation public partial class MBeanException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanFeatureInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanFeatureInfo.cs index 3194e75322..cc9e962704 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanFeatureInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanFeatureInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanFeatureInfo + #region MBeanFeatureInfo declaration + /// + /// + /// + public partial class MBeanFeatureInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanFeatureInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanFeatureInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanFeatureInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanFeatureInfo implementation public partial class MBeanFeatureInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanInfo.cs index 652af3ea17..36578cb02a 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanInfo + #region MBeanInfo declaration + /// + /// + /// + public partial class MBeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanInfo implementation public partial class MBeanInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanNotificationInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanNotificationInfo.cs index c0c99c40da..73b261176e 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanNotificationInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanNotificationInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanNotificationInfo + #region MBeanNotificationInfo declaration + /// + /// + /// + public partial class MBeanNotificationInfo : Javax.Management.MBeanFeatureInfo + { + const string _bridgeClassName = "javax.management.MBeanNotificationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanNotificationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanNotificationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanNotificationInfo implementation public partial class MBeanNotificationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanOperationInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanOperationInfo.cs index 33ec92ba7f..abc2658ea5 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanOperationInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanOperationInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanOperationInfo + #region MBeanOperationInfo declaration + /// + /// + /// + public partial class MBeanOperationInfo : Javax.Management.MBeanFeatureInfo + { + const string _bridgeClassName = "javax.management.MBeanOperationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanOperationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanOperationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanOperationInfo implementation public partial class MBeanOperationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanParameterInfo.cs b/src/net/JNet/Generated/Javax/Management/MBeanParameterInfo.cs index d6b40640a9..0a77c0b4d3 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanParameterInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanParameterInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanParameterInfo + #region MBeanParameterInfo declaration + /// + /// + /// + public partial class MBeanParameterInfo : Javax.Management.MBeanFeatureInfo + { + const string _bridgeClassName = "javax.management.MBeanParameterInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanParameterInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanParameterInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanParameterInfo implementation public partial class MBeanParameterInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanPermission.cs b/src/net/JNet/Generated/Javax/Management/MBeanPermission.cs index 574bc10d9b..dc37987694 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanPermission.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanPermission + #region MBeanPermission declaration + /// + /// + /// + public partial class MBeanPermission : Java.Security.Permission + { + const string _bridgeClassName = "javax.management.MBeanPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanPermission implementation public partial class MBeanPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanRegistration.cs b/src/net/JNet/Generated/Javax/Management/MBeanRegistration.cs index 0b6e42e666..4e59ce2551 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanRegistration.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanRegistration.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region MBeanRegistration declaration + /// + /// + /// + public partial class MBeanRegistration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanRegistration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MBeanRegistration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanRegistration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MBeanRegistration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanRegistration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMBeanRegistration /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IMBeanRegistration } #endregion - #region MBeanRegistration + #region MBeanRegistration implementation public partial class MBeanRegistration : Javax.Management.IMBeanRegistration { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanRegistrationException.cs b/src/net/JNet/Generated/Javax/Management/MBeanRegistrationException.cs index b6adad8eea..bc008929ba 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanRegistrationException.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanRegistrationException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region MBeanRegistrationException + #region MBeanRegistrationException declaration + /// + /// + /// + public partial class MBeanRegistrationException : Javax.Management.MBeanException + { + const string _bridgeClassName = "javax.management.MBeanRegistrationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MBeanRegistrationException implementation public partial class MBeanRegistrationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServer.cs b/src/net/JNet/Generated/Javax/Management/MBeanServer.cs index ebd827e255..ab36f51ad6 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServer.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServer.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region MBeanServer declaration + /// + /// + /// + public partial class MBeanServer : Javax.Management.MBeanServerConnection + { + const string _bridgeClassName = "javax.management.MBeanServer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MBeanServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MBeanServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMBeanServer /// /// .NET interface for TO BE DEFINED FROM USER @@ -336,7 +383,7 @@ public partial interface IMBeanServer : Javax.Management.IMBeanServerConnection } #endregion - #region MBeanServer + #region MBeanServer implementation public partial class MBeanServer : Javax.Management.IMBeanServer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerBuilder.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerBuilder.cs index fc9957de5a..733c90325b 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerBuilder.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerBuilder.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanServerBuilder + #region MBeanServerBuilder declaration + /// + /// + /// + public partial class MBeanServerBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanServerBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerBuilder implementation public partial class MBeanServerBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerConnection.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerConnection.cs index c2f7e2198e..58d0bf8a0a 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerConnection.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerConnection.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region MBeanServerConnection declaration + /// + /// + /// + public partial class MBeanServerConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanServerConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MBeanServerConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServerConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MBeanServerConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServerConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMBeanServerConnection /// /// .NET interface for TO BE DEFINED FROM USER @@ -290,7 +337,7 @@ public partial interface IMBeanServerConnection } #endregion - #region MBeanServerConnection + #region MBeanServerConnection implementation public partial class MBeanServerConnection : Javax.Management.IMBeanServerConnection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerDelegate.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerDelegate.cs index 9a51554647..8a6715672e 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerDelegate.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerDelegate.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanServerDelegate + #region MBeanServerDelegate declaration + /// + /// + /// + public partial class MBeanServerDelegate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanServerDelegate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerDelegate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerDelegate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerDelegate implementation public partial class MBeanServerDelegate { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerDelegateMBean.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerDelegateMBean.cs index 901f8db955..bd1996249f 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerDelegateMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerDelegateMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region MBeanServerDelegateMBean declaration + /// + /// + /// + public partial class MBeanServerDelegateMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanServerDelegateMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MBeanServerDelegateMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServerDelegateMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MBeanServerDelegateMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServerDelegateMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMBeanServerDelegateMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IMBeanServerDelegateMBean } #endregion - #region MBeanServerDelegateMBean + #region MBeanServerDelegateMBean implementation public partial class MBeanServerDelegateMBean : Javax.Management.IMBeanServerDelegateMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerFactory.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerFactory.cs index 2b67d33057..0d70bd3d95 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerFactory.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanServerFactory + #region MBeanServerFactory declaration + /// + /// + /// + public partial class MBeanServerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.MBeanServerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerFactory implementation public partial class MBeanServerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerInvocationHandler.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerInvocationHandler.cs index 0356fcc344..22454c97be 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerInvocationHandler.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerInvocationHandler.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanServerInvocationHandler + #region MBeanServerInvocationHandler declaration + /// + /// + /// + public partial class MBeanServerInvocationHandler : Java.Lang.Reflect.InvocationHandler + { + const string _bridgeClassName = "javax.management.MBeanServerInvocationHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerInvocationHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerInvocationHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerInvocationHandler implementation public partial class MBeanServerInvocationHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerNotification.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerNotification.cs index 41a80b4cfe..c65dff4db6 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanServerNotification + #region MBeanServerNotification declaration + /// + /// + /// + public partial class MBeanServerNotification : Javax.Management.Notification + { + const string _bridgeClassName = "javax.management.MBeanServerNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerNotification implementation public partial class MBeanServerNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanServerPermission.cs b/src/net/JNet/Generated/Javax/Management/MBeanServerPermission.cs index f629bada33..c01e0e484b 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanServerPermission.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanServerPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanServerPermission + #region MBeanServerPermission declaration + /// + /// + /// + public partial class MBeanServerPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.management.MBeanServerPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerPermission implementation public partial class MBeanServerPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MBeanTrustPermission.cs b/src/net/JNet/Generated/Javax/Management/MBeanTrustPermission.cs index ab1ea3512d..b437e5937a 100644 --- a/src/net/JNet/Generated/Javax/Management/MBeanTrustPermission.cs +++ b/src/net/JNet/Generated/Javax/Management/MBeanTrustPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region MBeanTrustPermission + #region MBeanTrustPermission declaration + /// + /// + /// + public partial class MBeanTrustPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.management.MBeanTrustPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanTrustPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanTrustPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanTrustPermission implementation public partial class MBeanTrustPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MXBean.cs b/src/net/JNet/Generated/Javax/Management/MXBean.cs index 6091e9cd4a..2c4ccfa84c 100644 --- a/src/net/JNet/Generated/Javax/Management/MXBean.cs +++ b/src/net/JNet/Generated/Javax/Management/MXBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region MXBean declaration + /// + /// + /// + public partial class MXBean : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.management.MXBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MXBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MXBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MXBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMXBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IMXBean : Java.Lang.Annotation.IAnnotation } #endregion - #region MXBean + #region MXBean implementation public partial class MXBean : Javax.Management.IMXBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/MalformedObjectNameException.cs b/src/net/JNet/Generated/Javax/Management/MalformedObjectNameException.cs index e234da5495..c4f0fdfdc2 100644 --- a/src/net/JNet/Generated/Javax/Management/MalformedObjectNameException.cs +++ b/src/net/JNet/Generated/Javax/Management/MalformedObjectNameException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region MalformedObjectNameException + #region MalformedObjectNameException declaration + /// + /// + /// + public partial class MalformedObjectNameException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.MalformedObjectNameException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MalformedObjectNameException implementation public partial class MalformedObjectNameException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/AllPackageClasses.cs deleted file mode 100644 index 59ae76afb6..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/AllPackageClasses.cs +++ /dev/null @@ -1,520 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Modelmbean -{ - #region DescriptorSupport - /// - /// - /// - public partial class DescriptorSupport : Javax.Management.Descriptor - { - const string _bridgeClassName = "javax.management.modelmbean.DescriptorSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DescriptorSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DescriptorSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidTargetObjectTypeException - /// - /// - /// - public partial class InvalidTargetObjectTypeException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.modelmbean.InvalidTargetObjectTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ModelMBean - /// - /// - /// - public partial class ModelMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModelMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModelMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModelMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModelMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanAttributeInfo - /// - /// - /// - public partial class ModelMBeanAttributeInfo : Javax.Management.MBeanAttributeInfo - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanAttributeInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModelMBeanAttributeInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModelMBeanAttributeInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanConstructorInfo - /// - /// - /// - public partial class ModelMBeanConstructorInfo : Javax.Management.MBeanConstructorInfo - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanConstructorInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModelMBeanConstructorInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModelMBeanConstructorInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanInfo - /// - /// - /// - public partial class ModelMBeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModelMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModelMBeanInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModelMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModelMBeanInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanInfoSupport - /// - /// - /// - public partial class ModelMBeanInfoSupport : Javax.Management.MBeanInfo - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanInfoSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModelMBeanInfoSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModelMBeanInfoSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanNotificationBroadcaster - /// - /// - /// - public partial class ModelMBeanNotificationBroadcaster : Javax.Management.NotificationBroadcaster - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanNotificationBroadcaster"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ModelMBeanNotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModelMBeanNotificationBroadcaster() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ModelMBeanNotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ModelMBeanNotificationBroadcaster(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanNotificationInfo - /// - /// - /// - public partial class ModelMBeanNotificationInfo : Javax.Management.MBeanNotificationInfo - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanNotificationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModelMBeanNotificationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModelMBeanNotificationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ModelMBeanOperationInfo - /// - /// - /// - public partial class ModelMBeanOperationInfo : Javax.Management.MBeanOperationInfo - { - const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanOperationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModelMBeanOperationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModelMBeanOperationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RequiredModelMBean - /// - /// - /// - public partial class RequiredModelMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.modelmbean.RequiredModelMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RequiredModelMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RequiredModelMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLParseException - /// - /// - /// - public partial class XMLParseException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.management.modelmbean.XMLParseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/DescriptorSupport.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/DescriptorSupport.cs index 23dd434f84..d6041db1c6 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/DescriptorSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/DescriptorSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region DescriptorSupport + #region DescriptorSupport declaration + /// + /// + /// + public partial class DescriptorSupport : Javax.Management.Descriptor + { + const string _bridgeClassName = "javax.management.modelmbean.DescriptorSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DescriptorSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DescriptorSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DescriptorSupport implementation public partial class DescriptorSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/InvalidTargetObjectTypeException.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/InvalidTargetObjectTypeException.cs index 1840aa9619..da0f4152a7 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/InvalidTargetObjectTypeException.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/InvalidTargetObjectTypeException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Modelmbean { - #region InvalidTargetObjectTypeException + #region InvalidTargetObjectTypeException declaration + /// + /// + /// + public partial class InvalidTargetObjectTypeException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.modelmbean.InvalidTargetObjectTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidTargetObjectTypeException implementation public partial class InvalidTargetObjectTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBean.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBean.cs index acf811e0b5..b19d1e080a 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Modelmbean { + #region ModelMBean declaration + /// + /// + /// + public partial class ModelMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModelMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModelMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModelMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModelMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IModelMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IModelMBean } #endregion - #region ModelMBean + #region ModelMBean implementation public partial class ModelMBean : Javax.Management.Modelmbean.IModelMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanAttributeInfo.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanAttributeInfo.cs index 3e3ea179a5..27a7261ab7 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanAttributeInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanAttributeInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region ModelMBeanAttributeInfo + #region ModelMBeanAttributeInfo declaration + /// + /// + /// + public partial class ModelMBeanAttributeInfo : Javax.Management.MBeanAttributeInfo + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanAttributeInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModelMBeanAttributeInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModelMBeanAttributeInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModelMBeanAttributeInfo implementation public partial class ModelMBeanAttributeInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanConstructorInfo.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanConstructorInfo.cs index 3801de6217..5472fdb960 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanConstructorInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanConstructorInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region ModelMBeanConstructorInfo + #region ModelMBeanConstructorInfo declaration + /// + /// + /// + public partial class ModelMBeanConstructorInfo : Javax.Management.MBeanConstructorInfo + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanConstructorInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModelMBeanConstructorInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModelMBeanConstructorInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModelMBeanConstructorInfo implementation public partial class ModelMBeanConstructorInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfo.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfo.cs index 3159b3e360..756b99ae70 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Modelmbean { + #region ModelMBeanInfo declaration + /// + /// + /// + public partial class ModelMBeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModelMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModelMBeanInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModelMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModelMBeanInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IModelMBeanInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -127,7 +174,7 @@ public partial interface IModelMBeanInfo } #endregion - #region ModelMBeanInfo + #region ModelMBeanInfo implementation public partial class ModelMBeanInfo : Javax.Management.Modelmbean.IModelMBeanInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfoSupport.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfoSupport.cs index 9d76c53939..b55af60961 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfoSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanInfoSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region ModelMBeanInfoSupport + #region ModelMBeanInfoSupport declaration + /// + /// + /// + public partial class ModelMBeanInfoSupport : Javax.Management.MBeanInfo + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanInfoSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModelMBeanInfoSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModelMBeanInfoSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModelMBeanInfoSupport implementation public partial class ModelMBeanInfoSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationBroadcaster.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationBroadcaster.cs index e8c705ed0f..ec20e431ee 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationBroadcaster.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationBroadcaster.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Modelmbean { + #region ModelMBeanNotificationBroadcaster declaration + /// + /// + /// + public partial class ModelMBeanNotificationBroadcaster : Javax.Management.NotificationBroadcaster + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanNotificationBroadcaster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ModelMBeanNotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModelMBeanNotificationBroadcaster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ModelMBeanNotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ModelMBeanNotificationBroadcaster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IModelMBeanNotificationBroadcaster /// /// .NET interface for TO BE DEFINED FROM USER @@ -91,7 +138,7 @@ public partial interface IModelMBeanNotificationBroadcaster : Javax.Management.I } #endregion - #region ModelMBeanNotificationBroadcaster + #region ModelMBeanNotificationBroadcaster implementation public partial class ModelMBeanNotificationBroadcaster : Javax.Management.Modelmbean.IModelMBeanNotificationBroadcaster { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationInfo.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationInfo.cs index 1d1abc860a..bec1e9f3ed 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanNotificationInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region ModelMBeanNotificationInfo + #region ModelMBeanNotificationInfo declaration + /// + /// + /// + public partial class ModelMBeanNotificationInfo : Javax.Management.MBeanNotificationInfo + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanNotificationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModelMBeanNotificationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModelMBeanNotificationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModelMBeanNotificationInfo implementation public partial class ModelMBeanNotificationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanOperationInfo.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanOperationInfo.cs index 0d04885f76..64ec0c95bf 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanOperationInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/ModelMBeanOperationInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region ModelMBeanOperationInfo + #region ModelMBeanOperationInfo declaration + /// + /// + /// + public partial class ModelMBeanOperationInfo : Javax.Management.MBeanOperationInfo + { + const string _bridgeClassName = "javax.management.modelmbean.ModelMBeanOperationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModelMBeanOperationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModelMBeanOperationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModelMBeanOperationInfo implementation public partial class ModelMBeanOperationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/RequiredModelMBean.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/RequiredModelMBean.cs index 3d7d9db9f0..e3c64b5c1a 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/RequiredModelMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/RequiredModelMBean.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Modelmbean { - #region RequiredModelMBean + #region RequiredModelMBean declaration + /// + /// + /// + public partial class RequiredModelMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.modelmbean.RequiredModelMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RequiredModelMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RequiredModelMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RequiredModelMBean implementation public partial class RequiredModelMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Modelmbean/XMLParseException.cs b/src/net/JNet/Generated/Javax/Management/Modelmbean/XMLParseException.cs index 7cdcf44db8..5564b43e01 100644 --- a/src/net/JNet/Generated/Javax/Management/Modelmbean/XMLParseException.cs +++ b/src/net/JNet/Generated/Javax/Management/Modelmbean/XMLParseException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Modelmbean { - #region XMLParseException + #region XMLParseException declaration + /// + /// + /// + public partial class XMLParseException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.management.modelmbean.XMLParseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XMLParseException implementation public partial class XMLParseException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Monitor/AllPackageClasses.cs deleted file mode 100644 index e22b174b5b..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Monitor/AllPackageClasses.cs +++ /dev/null @@ -1,462 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Monitor -{ - #region CounterMonitor - /// - /// - /// - public partial class CounterMonitor : Javax.Management.Monitor.Monitor - { - const string _bridgeClassName = "javax.management.monitor.CounterMonitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CounterMonitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CounterMonitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CounterMonitorMBean - /// - /// - /// - public partial class CounterMonitorMBean : Javax.Management.Monitor.MonitorMBean - { - const string _bridgeClassName = "javax.management.monitor.CounterMonitorMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CounterMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CounterMonitorMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CounterMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CounterMonitorMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GaugeMonitor - /// - /// - /// - public partial class GaugeMonitor : Javax.Management.Monitor.Monitor - { - const string _bridgeClassName = "javax.management.monitor.GaugeMonitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GaugeMonitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GaugeMonitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GaugeMonitorMBean - /// - /// - /// - public partial class GaugeMonitorMBean : Javax.Management.Monitor.MonitorMBean - { - const string _bridgeClassName = "javax.management.monitor.GaugeMonitorMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GaugeMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GaugeMonitorMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GaugeMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GaugeMonitorMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Monitor - /// - /// - /// - public partial class Monitor : Javax.Management.NotificationBroadcasterSupport - { - const string _bridgeClassName = "javax.management.monitor.Monitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Monitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Monitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Monitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Monitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MonitorMBean - /// - /// - /// - public partial class MonitorMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.monitor.MonitorMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MonitorMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MonitorMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MonitorNotification - /// - /// - /// - public partial class MonitorNotification : Javax.Management.Notification - { - const string _bridgeClassName = "javax.management.monitor.MonitorNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MonitorNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MonitorNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MonitorSettingException - /// - /// - /// - public partial class MonitorSettingException : Javax.Management.JMRuntimeException - { - const string _bridgeClassName = "javax.management.monitor.MonitorSettingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StringMonitor - /// - /// - /// - public partial class StringMonitor : Javax.Management.Monitor.Monitor - { - const string _bridgeClassName = "javax.management.monitor.StringMonitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringMonitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringMonitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringMonitorMBean - /// - /// - /// - public partial class StringMonitorMBean : Javax.Management.Monitor.MonitorMBean - { - const string _bridgeClassName = "javax.management.monitor.StringMonitorMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StringMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StringMonitorMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StringMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StringMonitorMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitor.cs b/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitor.cs index d4a0074108..8988087034 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitor.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitor.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Monitor { - #region CounterMonitor + #region CounterMonitor declaration + /// + /// + /// + public partial class CounterMonitor : Javax.Management.Monitor.Monitor + { + const string _bridgeClassName = "javax.management.monitor.CounterMonitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CounterMonitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CounterMonitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CounterMonitor implementation public partial class CounterMonitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitorMBean.cs b/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitorMBean.cs index 499193b36d..0996c68d1c 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitorMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/CounterMonitorMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Monitor { + #region CounterMonitorMBean declaration + /// + /// + /// + public partial class CounterMonitorMBean : Javax.Management.Monitor.MonitorMBean + { + const string _bridgeClassName = "javax.management.monitor.CounterMonitorMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CounterMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CounterMonitorMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CounterMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CounterMonitorMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICounterMonitorMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface ICounterMonitorMBean : Javax.Management.Monitor.IMonito } #endregion - #region CounterMonitorMBean + #region CounterMonitorMBean implementation public partial class CounterMonitorMBean : Javax.Management.Monitor.ICounterMonitorMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitor.cs b/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitor.cs index 0eb7674fb5..b4e49331b3 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitor.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitor.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Monitor { - #region GaugeMonitor + #region GaugeMonitor declaration + /// + /// + /// + public partial class GaugeMonitor : Javax.Management.Monitor.Monitor + { + const string _bridgeClassName = "javax.management.monitor.GaugeMonitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GaugeMonitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GaugeMonitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GaugeMonitor implementation public partial class GaugeMonitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitorMBean.cs b/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitorMBean.cs index bce79849fc..fa8bd27ca5 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitorMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/GaugeMonitorMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Monitor { + #region GaugeMonitorMBean declaration + /// + /// + /// + public partial class GaugeMonitorMBean : Javax.Management.Monitor.MonitorMBean + { + const string _bridgeClassName = "javax.management.monitor.GaugeMonitorMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GaugeMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GaugeMonitorMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GaugeMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GaugeMonitorMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGaugeMonitorMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -82,7 +129,7 @@ public partial interface IGaugeMonitorMBean : Javax.Management.Monitor.IMonitorM } #endregion - #region GaugeMonitorMBean + #region GaugeMonitorMBean implementation public partial class GaugeMonitorMBean : Javax.Management.Monitor.IGaugeMonitorMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/Monitor.cs b/src/net/JNet/Generated/Javax/Management/Monitor/Monitor.cs index 7a128fa5c0..dc65b9fdd5 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/Monitor.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/Monitor.cs @@ -25,7 +25,54 @@ namespace Javax.Management.Monitor { - #region Monitor + #region Monitor declaration + /// + /// + /// + public partial class Monitor : Javax.Management.NotificationBroadcasterSupport + { + const string _bridgeClassName = "javax.management.monitor.Monitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Monitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Monitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Monitor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Monitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Monitor implementation public partial class Monitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/MonitorMBean.cs b/src/net/JNet/Generated/Javax/Management/Monitor/MonitorMBean.cs index cfc6d00d0e..65e7d2f385 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/MonitorMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/MonitorMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Monitor { + #region MonitorMBean declaration + /// + /// + /// + public partial class MonitorMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.monitor.MonitorMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MonitorMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MonitorMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMonitorMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -85,7 +132,7 @@ public partial interface IMonitorMBean } #endregion - #region MonitorMBean + #region MonitorMBean implementation public partial class MonitorMBean : Javax.Management.Monitor.IMonitorMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/MonitorNotification.cs b/src/net/JNet/Generated/Javax/Management/Monitor/MonitorNotification.cs index 75a53b4982..4c5dbe6ed5 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/MonitorNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/MonitorNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Monitor { - #region MonitorNotification + #region MonitorNotification declaration + /// + /// + /// + public partial class MonitorNotification : Javax.Management.Notification + { + const string _bridgeClassName = "javax.management.monitor.MonitorNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MonitorNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MonitorNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MonitorNotification implementation public partial class MonitorNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/MonitorSettingException.cs b/src/net/JNet/Generated/Javax/Management/Monitor/MonitorSettingException.cs index 8f4cc80b7e..a75897bad7 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/MonitorSettingException.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/MonitorSettingException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Monitor { - #region MonitorSettingException + #region MonitorSettingException declaration + /// + /// + /// + public partial class MonitorSettingException : Javax.Management.JMRuntimeException + { + const string _bridgeClassName = "javax.management.monitor.MonitorSettingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MonitorSettingException implementation public partial class MonitorSettingException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitor.cs b/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitor.cs index acfda94775..75b85876a7 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitor.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitor.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Monitor { - #region StringMonitor + #region StringMonitor declaration + /// + /// + /// + public partial class StringMonitor : Javax.Management.Monitor.Monitor + { + const string _bridgeClassName = "javax.management.monitor.StringMonitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringMonitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringMonitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringMonitor implementation public partial class StringMonitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitorMBean.cs b/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitorMBean.cs index 6b8aed6573..36f1a5425d 100644 --- a/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitorMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Monitor/StringMonitorMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Monitor { + #region StringMonitorMBean declaration + /// + /// + /// + public partial class StringMonitorMBean : Javax.Management.Monitor.MonitorMBean + { + const string _bridgeClassName = "javax.management.monitor.StringMonitorMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StringMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StringMonitorMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StringMonitorMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StringMonitorMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStringMonitorMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IStringMonitorMBean : Javax.Management.Monitor.IMonitor } #endregion - #region StringMonitorMBean + #region StringMonitorMBean implementation public partial class StringMonitorMBean : Javax.Management.Monitor.IStringMonitorMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotCompliantMBeanException.cs b/src/net/JNet/Generated/Javax/Management/NotCompliantMBeanException.cs index cbd7ac2b1b..57ad0e1bad 100644 --- a/src/net/JNet/Generated/Javax/Management/NotCompliantMBeanException.cs +++ b/src/net/JNet/Generated/Javax/Management/NotCompliantMBeanException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region NotCompliantMBeanException + #region NotCompliantMBeanException declaration + /// + /// + /// + public partial class NotCompliantMBeanException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.NotCompliantMBeanException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotCompliantMBeanException implementation public partial class NotCompliantMBeanException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Notification.cs b/src/net/JNet/Generated/Javax/Management/Notification.cs index c76330db3b..b06a304642 100644 --- a/src/net/JNet/Generated/Javax/Management/Notification.cs +++ b/src/net/JNet/Generated/Javax/Management/Notification.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region Notification + #region Notification declaration + /// + /// + /// + public partial class Notification : Java.Util.EventObject + { + const string _bridgeClassName = "javax.management.Notification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Notification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Notification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Notification implementation public partial class Notification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotificationBroadcaster.cs b/src/net/JNet/Generated/Javax/Management/NotificationBroadcaster.cs index 341445acff..db98d24231 100644 --- a/src/net/JNet/Generated/Javax/Management/NotificationBroadcaster.cs +++ b/src/net/JNet/Generated/Javax/Management/NotificationBroadcaster.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region NotificationBroadcaster declaration + /// + /// + /// + public partial class NotificationBroadcaster : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.NotificationBroadcaster"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NotificationBroadcaster() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NotificationBroadcaster class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NotificationBroadcaster(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INotificationBroadcaster /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface INotificationBroadcaster } #endregion - #region NotificationBroadcaster + #region NotificationBroadcaster implementation public partial class NotificationBroadcaster : Javax.Management.INotificationBroadcaster { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotificationBroadcasterSupport.cs b/src/net/JNet/Generated/Javax/Management/NotificationBroadcasterSupport.cs index 36cdc5a681..f940686950 100644 --- a/src/net/JNet/Generated/Javax/Management/NotificationBroadcasterSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/NotificationBroadcasterSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region NotificationBroadcasterSupport + #region NotificationBroadcasterSupport declaration + /// + /// + /// + public partial class NotificationBroadcasterSupport : Javax.Management.NotificationEmitter + { + const string _bridgeClassName = "javax.management.NotificationBroadcasterSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NotificationBroadcasterSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NotificationBroadcasterSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NotificationBroadcasterSupport implementation public partial class NotificationBroadcasterSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotificationEmitter.cs b/src/net/JNet/Generated/Javax/Management/NotificationEmitter.cs index be4d40f0ad..175964d2f6 100644 --- a/src/net/JNet/Generated/Javax/Management/NotificationEmitter.cs +++ b/src/net/JNet/Generated/Javax/Management/NotificationEmitter.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region NotificationEmitter declaration + /// + /// + /// + public partial class NotificationEmitter : Javax.Management.NotificationBroadcaster + { + const string _bridgeClassName = "javax.management.NotificationEmitter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NotificationEmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NotificationEmitter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NotificationEmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NotificationEmitter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INotificationEmitter /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface INotificationEmitter : Javax.Management.INotificationBr } #endregion - #region NotificationEmitter + #region NotificationEmitter implementation public partial class NotificationEmitter : Javax.Management.INotificationEmitter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotificationFilter.cs b/src/net/JNet/Generated/Javax/Management/NotificationFilter.cs index d11f63b91e..c36f5c8b66 100644 --- a/src/net/JNet/Generated/Javax/Management/NotificationFilter.cs +++ b/src/net/JNet/Generated/Javax/Management/NotificationFilter.cs @@ -25,6 +25,73 @@ namespace Javax.Management { + #region NotificationFilter declaration + /// + /// + /// + public partial class NotificationFilter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NotificationFilter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.management.NotificationFilter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region NotificationFilterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class NotificationFilterDirect : NotificationFilter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.management.NotificationFilter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region INotificationFilter /// /// .NET interface for org.mases.jnet.generated.javax.management.NotificationFilter implementing @@ -49,7 +116,7 @@ public partial interface INotificationFilter } #endregion - #region NotificationFilter + #region NotificationFilter implementation public partial class NotificationFilter : Javax.Management.INotificationFilter { #region Constructors @@ -111,7 +178,7 @@ public virtual bool IsNotificationEnabled(Javax.Management.Notification arg0) } #endregion - #region NotificationFilterDirect + #region NotificationFilterDirect implementation public partial class NotificationFilterDirect : Javax.Management.INotificationFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotificationFilterSupport.cs b/src/net/JNet/Generated/Javax/Management/NotificationFilterSupport.cs index 7d5d7f4dad..512a0be156 100644 --- a/src/net/JNet/Generated/Javax/Management/NotificationFilterSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/NotificationFilterSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region NotificationFilterSupport + #region NotificationFilterSupport declaration + /// + /// + /// + public partial class NotificationFilterSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.NotificationFilterSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NotificationFilterSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NotificationFilterSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NotificationFilterSupport implementation public partial class NotificationFilterSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/NotificationListener.cs b/src/net/JNet/Generated/Javax/Management/NotificationListener.cs index 68ca4ee987..d8bd29ebc5 100644 --- a/src/net/JNet/Generated/Javax/Management/NotificationListener.cs +++ b/src/net/JNet/Generated/Javax/Management/NotificationListener.cs @@ -25,6 +25,73 @@ namespace Javax.Management { + #region NotificationListener declaration + /// + /// + /// + public partial class NotificationListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NotificationListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.management.NotificationListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region NotificationListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class NotificationListenerDirect : NotificationListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.management.NotificationListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region INotificationListener /// /// .NET interface for org.mases.jnet.generated.javax.management.NotificationListener implementing @@ -49,7 +116,7 @@ public partial interface INotificationListener } #endregion - #region NotificationListener + #region NotificationListener implementation public partial class NotificationListener : Javax.Management.INotificationListener { #region Constructors @@ -110,7 +177,7 @@ public virtual void HandleNotification(Javax.Management.Notification arg0, objec } #endregion - #region NotificationListenerDirect + #region NotificationListenerDirect implementation public partial class NotificationListenerDirect : Javax.Management.INotificationListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ObjectInstance.cs b/src/net/JNet/Generated/Javax/Management/ObjectInstance.cs index 475277f987..c86a2dfcd9 100644 --- a/src/net/JNet/Generated/Javax/Management/ObjectInstance.cs +++ b/src/net/JNet/Generated/Javax/Management/ObjectInstance.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region ObjectInstance + #region ObjectInstance declaration + /// + /// + /// + public partial class ObjectInstance : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.ObjectInstance"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectInstance() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectInstance(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ObjectInstance implementation public partial class ObjectInstance { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ObjectName.cs b/src/net/JNet/Generated/Javax/Management/ObjectName.cs index e983684dc7..1fa6c8aba6 100644 --- a/src/net/JNet/Generated/Javax/Management/ObjectName.cs +++ b/src/net/JNet/Generated/Javax/Management/ObjectName.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region ObjectName + #region ObjectName declaration + /// + /// + /// + public partial class ObjectName : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.ObjectName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ObjectName implementation public partial class ObjectName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/AllPackageClasses.cs deleted file mode 100644 index fe90912658..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/AllPackageClasses.cs +++ /dev/null @@ -1,1201 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Openmbean -{ - #region ArrayType - /// - /// - /// - public partial class ArrayType : Javax.Management.Openmbean.OpenType - { - const string _bridgeClassName = "javax.management.openmbean.ArrayType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ArrayType - /// - /// - /// - /// - public partial class ArrayType : Javax.Management.Openmbean.OpenType - { - const string _bridgeClassName = "javax.management.openmbean.ArrayType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ArrayType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ArrayType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeData - /// - /// - /// - public partial class CompositeData : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.CompositeData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompositeData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompositeData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeDataInvocationHandler - /// - /// - /// - public partial class CompositeDataInvocationHandler : Java.Lang.Reflect.InvocationHandler - { - const string _bridgeClassName = "javax.management.openmbean.CompositeDataInvocationHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompositeDataInvocationHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompositeDataInvocationHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeDataSupport - /// - /// - /// - public partial class CompositeDataSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.CompositeDataSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompositeDataSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompositeDataSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeDataView - /// - /// - /// - public partial class CompositeDataView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.CompositeDataView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompositeDataView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeDataView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompositeDataView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeDataView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeType - /// - /// - /// - public partial class CompositeType : Javax.Management.Openmbean.OpenType - { - const string _bridgeClassName = "javax.management.openmbean.CompositeType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompositeType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompositeType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidKeyException - /// - /// - /// - public partial class InvalidKeyException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "javax.management.openmbean.InvalidKeyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidOpenTypeException - /// - /// - /// - public partial class InvalidOpenTypeException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "javax.management.openmbean.InvalidOpenTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeyAlreadyExistsException - /// - /// - /// - public partial class KeyAlreadyExistsException : Java.Lang.IllegalArgumentException - { - const string _bridgeClassName = "javax.management.openmbean.KeyAlreadyExistsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OpenDataException - /// - /// - /// - public partial class OpenDataException : Javax.Management.JMException - { - const string _bridgeClassName = "javax.management.openmbean.OpenDataException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanAttributeInfo - /// - /// - /// - public partial class OpenMBeanAttributeInfo : Javax.Management.Openmbean.OpenMBeanParameterInfo - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanAttributeInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenMBeanAttributeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanAttributeInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenMBeanAttributeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanAttributeInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanAttributeInfoSupport - /// - /// - /// - public partial class OpenMBeanAttributeInfoSupport : Javax.Management.MBeanAttributeInfo - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanAttributeInfoSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenMBeanAttributeInfoSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenMBeanAttributeInfoSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanConstructorInfo - /// - /// - /// - public partial class OpenMBeanConstructorInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanConstructorInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenMBeanConstructorInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanConstructorInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenMBeanConstructorInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanConstructorInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanConstructorInfoSupport - /// - /// - /// - public partial class OpenMBeanConstructorInfoSupport : Javax.Management.MBeanConstructorInfo - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanConstructorInfoSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenMBeanConstructorInfoSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenMBeanConstructorInfoSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanInfo - /// - /// - /// - public partial class OpenMBeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanInfoSupport - /// - /// - /// - public partial class OpenMBeanInfoSupport : Javax.Management.MBeanInfo - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanInfoSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenMBeanInfoSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenMBeanInfoSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanOperationInfo - /// - /// - /// - public partial class OpenMBeanOperationInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanOperationInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenMBeanOperationInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanOperationInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenMBeanOperationInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanOperationInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanOperationInfoSupport - /// - /// - /// - public partial class OpenMBeanOperationInfoSupport : Javax.Management.MBeanOperationInfo - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanOperationInfoSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenMBeanOperationInfoSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenMBeanOperationInfoSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanParameterInfo - /// - /// - /// - public partial class OpenMBeanParameterInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanParameterInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenMBeanParameterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanParameterInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenMBeanParameterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenMBeanParameterInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenMBeanParameterInfoSupport - /// - /// - /// - public partial class OpenMBeanParameterInfoSupport : Javax.Management.MBeanParameterInfo - { - const string _bridgeClassName = "javax.management.openmbean.OpenMBeanParameterInfoSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OpenMBeanParameterInfoSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OpenMBeanParameterInfoSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenType - /// - /// - /// - public partial class OpenType : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.openmbean.OpenType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OpenType - /// - /// - /// - /// - public partial class OpenType : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.openmbean.OpenType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OpenType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleType - /// - /// - /// - public partial class SimpleType : Javax.Management.Openmbean.OpenType - { - const string _bridgeClassName = "javax.management.openmbean.SimpleType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleType - /// - /// - /// - /// - public partial class SimpleType : Javax.Management.Openmbean.OpenType - { - const string _bridgeClassName = "javax.management.openmbean.SimpleType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabularData - /// - /// - /// - public partial class TabularData : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.TabularData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TabularData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabularData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TabularData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabularData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabularDataSupport - /// - /// - /// - public partial class TabularDataSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.openmbean.TabularDataSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabularDataSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabularDataSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabularType - /// - /// - /// - public partial class TabularType : Javax.Management.Openmbean.OpenType - { - const string _bridgeClassName = "javax.management.openmbean.TabularType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabularType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabularType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/ArrayType.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/ArrayType.cs index 557ea2833d..40bceae36d 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/ArrayType.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/ArrayType.cs @@ -25,7 +25,98 @@ namespace Javax.Management.Openmbean { - #region ArrayType + #region ArrayType declaration + /// + /// + /// + public partial class ArrayType : Javax.Management.Openmbean.OpenType + { + const string _bridgeClassName = "javax.management.openmbean.ArrayType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayType declaration + /// + /// + /// + /// + public partial class ArrayType : Javax.Management.Openmbean.OpenType + { + const string _bridgeClassName = "javax.management.openmbean.ArrayType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ArrayType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ArrayType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ArrayType implementation public partial class ArrayType { #region Constructors @@ -117,7 +208,7 @@ public bool IsPrimitiveArray() } #endregion - #region ArrayType + #region ArrayType implementation public partial class ArrayType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeData.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeData.cs index 37359ad08c..7bcd672152 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeData.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeData.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region CompositeData declaration + /// + /// + /// + public partial class CompositeData : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.CompositeData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompositeData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompositeData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICompositeData /// /// .NET interface for TO BE DEFINED FROM USER @@ -76,7 +123,7 @@ public partial interface ICompositeData } #endregion - #region CompositeData + #region CompositeData implementation public partial class CompositeData : Javax.Management.Openmbean.ICompositeData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataInvocationHandler.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataInvocationHandler.cs index 297556372f..c42836a7f2 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataInvocationHandler.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataInvocationHandler.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region CompositeDataInvocationHandler + #region CompositeDataInvocationHandler declaration + /// + /// + /// + public partial class CompositeDataInvocationHandler : Java.Lang.Reflect.InvocationHandler + { + const string _bridgeClassName = "javax.management.openmbean.CompositeDataInvocationHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompositeDataInvocationHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompositeDataInvocationHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompositeDataInvocationHandler implementation public partial class CompositeDataInvocationHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataSupport.cs index c5c81764b5..4922813b98 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region CompositeDataSupport + #region CompositeDataSupport declaration + /// + /// + /// + public partial class CompositeDataSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.CompositeDataSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompositeDataSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompositeDataSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompositeDataSupport implementation public partial class CompositeDataSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataView.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataView.cs index 635fdad90a..0e49181029 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataView.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeDataView.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region CompositeDataView declaration + /// + /// + /// + public partial class CompositeDataView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.CompositeDataView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompositeDataView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeDataView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompositeDataView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeDataView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICompositeDataView /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface ICompositeDataView } #endregion - #region CompositeDataView + #region CompositeDataView implementation public partial class CompositeDataView : Javax.Management.Openmbean.ICompositeDataView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeType.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeType.cs index a79f221871..b1f03244fc 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeType.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/CompositeType.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region CompositeType + #region CompositeType declaration + /// + /// + /// + public partial class CompositeType : Javax.Management.Openmbean.OpenType + { + const string _bridgeClassName = "javax.management.openmbean.CompositeType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompositeType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompositeType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompositeType implementation public partial class CompositeType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidKeyException.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidKeyException.cs index c90ca8e088..02790e69c1 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidKeyException.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidKeyException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Openmbean { - #region InvalidKeyException + #region InvalidKeyException declaration + /// + /// + /// + public partial class InvalidKeyException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "javax.management.openmbean.InvalidKeyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidKeyException implementation public partial class InvalidKeyException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidOpenTypeException.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidOpenTypeException.cs index 3d428d97d0..3c78a208db 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidOpenTypeException.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/InvalidOpenTypeException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Openmbean { - #region InvalidOpenTypeException + #region InvalidOpenTypeException declaration + /// + /// + /// + public partial class InvalidOpenTypeException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "javax.management.openmbean.InvalidOpenTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidOpenTypeException implementation public partial class InvalidOpenTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/KeyAlreadyExistsException.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/KeyAlreadyExistsException.cs index 242d3c00bd..ccb4175b3e 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/KeyAlreadyExistsException.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/KeyAlreadyExistsException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Openmbean { - #region KeyAlreadyExistsException + #region KeyAlreadyExistsException declaration + /// + /// + /// + public partial class KeyAlreadyExistsException : Java.Lang.IllegalArgumentException + { + const string _bridgeClassName = "javax.management.openmbean.KeyAlreadyExistsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region KeyAlreadyExistsException implementation public partial class KeyAlreadyExistsException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenDataException.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenDataException.cs index e0864d69bc..6c042b74c3 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenDataException.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenDataException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Openmbean { - #region OpenDataException + #region OpenDataException declaration + /// + /// + /// + public partial class OpenDataException : Javax.Management.JMException + { + const string _bridgeClassName = "javax.management.openmbean.OpenDataException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region OpenDataException implementation public partial class OpenDataException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfo.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfo.cs index 5038fcadfc..20dfc1e95d 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region OpenMBeanAttributeInfo declaration + /// + /// + /// + public partial class OpenMBeanAttributeInfo : Javax.Management.Openmbean.OpenMBeanParameterInfo + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanAttributeInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenMBeanAttributeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanAttributeInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenMBeanAttributeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanAttributeInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenMBeanAttributeInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IOpenMBeanAttributeInfo : Javax.Management.Openmbean.IO } #endregion - #region OpenMBeanAttributeInfo + #region OpenMBeanAttributeInfo implementation public partial class OpenMBeanAttributeInfo : Javax.Management.Openmbean.IOpenMBeanAttributeInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfoSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfoSupport.cs index 77107f739f..6e47ee8a1b 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfoSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanAttributeInfoSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region OpenMBeanAttributeInfoSupport + #region OpenMBeanAttributeInfoSupport declaration + /// + /// + /// + public partial class OpenMBeanAttributeInfoSupport : Javax.Management.MBeanAttributeInfo + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanAttributeInfoSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenMBeanAttributeInfoSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenMBeanAttributeInfoSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenMBeanAttributeInfoSupport implementation public partial class OpenMBeanAttributeInfoSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfo.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfo.cs index 14b2f12a1b..a324eae3aa 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region OpenMBeanConstructorInfo declaration + /// + /// + /// + public partial class OpenMBeanConstructorInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanConstructorInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenMBeanConstructorInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanConstructorInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenMBeanConstructorInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanConstructorInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenMBeanConstructorInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IOpenMBeanConstructorInfo } #endregion - #region OpenMBeanConstructorInfo + #region OpenMBeanConstructorInfo implementation public partial class OpenMBeanConstructorInfo : Javax.Management.Openmbean.IOpenMBeanConstructorInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfoSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfoSupport.cs index c82545115d..83d8cdd9eb 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfoSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanConstructorInfoSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region OpenMBeanConstructorInfoSupport + #region OpenMBeanConstructorInfoSupport declaration + /// + /// + /// + public partial class OpenMBeanConstructorInfoSupport : Javax.Management.MBeanConstructorInfo + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanConstructorInfoSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenMBeanConstructorInfoSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenMBeanConstructorInfoSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenMBeanConstructorInfoSupport implementation public partial class OpenMBeanConstructorInfoSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfo.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfo.cs index 04f5156a4d..c61dc6e12d 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region OpenMBeanInfo declaration + /// + /// + /// + public partial class OpenMBeanInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenMBeanInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenMBeanInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IOpenMBeanInfo } #endregion - #region OpenMBeanInfo + #region OpenMBeanInfo implementation public partial class OpenMBeanInfo : Javax.Management.Openmbean.IOpenMBeanInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfoSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfoSupport.cs index 28aad612ba..e232644415 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfoSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanInfoSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region OpenMBeanInfoSupport + #region OpenMBeanInfoSupport declaration + /// + /// + /// + public partial class OpenMBeanInfoSupport : Javax.Management.MBeanInfo + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanInfoSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenMBeanInfoSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenMBeanInfoSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenMBeanInfoSupport implementation public partial class OpenMBeanInfoSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfo.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfo.cs index 2556a9072c..de44a03390 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region OpenMBeanOperationInfo declaration + /// + /// + /// + public partial class OpenMBeanOperationInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanOperationInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenMBeanOperationInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanOperationInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenMBeanOperationInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanOperationInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenMBeanOperationInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IOpenMBeanOperationInfo } #endregion - #region OpenMBeanOperationInfo + #region OpenMBeanOperationInfo implementation public partial class OpenMBeanOperationInfo : Javax.Management.Openmbean.IOpenMBeanOperationInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfoSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfoSupport.cs index 0973535f9f..a29eff5f6d 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfoSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanOperationInfoSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region OpenMBeanOperationInfoSupport + #region OpenMBeanOperationInfoSupport declaration + /// + /// + /// + public partial class OpenMBeanOperationInfoSupport : Javax.Management.MBeanOperationInfo + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanOperationInfoSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenMBeanOperationInfoSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenMBeanOperationInfoSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenMBeanOperationInfoSupport implementation public partial class OpenMBeanOperationInfoSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfo.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfo.cs index c01f1b67e8..38d00eab2a 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region OpenMBeanParameterInfo declaration + /// + /// + /// + public partial class OpenMBeanParameterInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanParameterInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenMBeanParameterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanParameterInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenMBeanParameterInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenMBeanParameterInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOpenMBeanParameterInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -97,7 +144,7 @@ public partial interface IOpenMBeanParameterInfo } #endregion - #region OpenMBeanParameterInfo + #region OpenMBeanParameterInfo implementation public partial class OpenMBeanParameterInfo : Javax.Management.Openmbean.IOpenMBeanParameterInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfoSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfoSupport.cs index d2a536b002..2a827b8d00 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfoSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenMBeanParameterInfoSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region OpenMBeanParameterInfoSupport + #region OpenMBeanParameterInfoSupport declaration + /// + /// + /// + public partial class OpenMBeanParameterInfoSupport : Javax.Management.MBeanParameterInfo + { + const string _bridgeClassName = "javax.management.openmbean.OpenMBeanParameterInfoSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OpenMBeanParameterInfoSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OpenMBeanParameterInfoSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenMBeanParameterInfoSupport implementation public partial class OpenMBeanParameterInfoSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenType.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenType.cs index fdb3dc8580..e1f7ef7d44 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/OpenType.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/OpenType.cs @@ -25,7 +25,102 @@ namespace Javax.Management.Openmbean { - #region OpenType + #region OpenType declaration + /// + /// + /// + public partial class OpenType : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.openmbean.OpenType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenType declaration + /// + /// + /// + /// + public partial class OpenType : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.openmbean.OpenType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OpenType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OpenType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OpenType implementation public partial class OpenType { #region Constructors @@ -100,7 +195,7 @@ public bool IsArray() } #endregion - #region OpenType + #region OpenType implementation public partial class OpenType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/SimpleType.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/SimpleType.cs index b90ae8a45d..73f2310dbb 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/SimpleType.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/SimpleType.cs @@ -25,7 +25,98 @@ namespace Javax.Management.Openmbean { - #region SimpleType + #region SimpleType declaration + /// + /// + /// + public partial class SimpleType : Javax.Management.Openmbean.OpenType + { + const string _bridgeClassName = "javax.management.openmbean.SimpleType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleType declaration + /// + /// + /// + /// + public partial class SimpleType : Javax.Management.Openmbean.OpenType + { + const string _bridgeClassName = "javax.management.openmbean.SimpleType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleType implementation public partial class SimpleType { #region Constructors @@ -149,7 +240,7 @@ public object ReadResolve() } #endregion - #region SimpleType + #region SimpleType implementation public partial class SimpleType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/TabularData.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/TabularData.cs index 9fe70fdfec..76dffb3bb7 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/TabularData.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/TabularData.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Openmbean { + #region TabularData declaration + /// + /// + /// + public partial class TabularData : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.TabularData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TabularData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabularData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TabularData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabularData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITabularData /// /// .NET interface for TO BE DEFINED FROM USER @@ -111,7 +158,7 @@ public partial interface ITabularData } #endregion - #region TabularData + #region TabularData implementation public partial class TabularData : Javax.Management.Openmbean.ITabularData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/TabularDataSupport.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/TabularDataSupport.cs index 37581837ee..d255702ee7 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/TabularDataSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/TabularDataSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region TabularDataSupport + #region TabularDataSupport declaration + /// + /// + /// + public partial class TabularDataSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.openmbean.TabularDataSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabularDataSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabularDataSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabularDataSupport implementation public partial class TabularDataSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Openmbean/TabularType.cs b/src/net/JNet/Generated/Javax/Management/Openmbean/TabularType.cs index 899353b29d..b96fb59f9c 100644 --- a/src/net/JNet/Generated/Javax/Management/Openmbean/TabularType.cs +++ b/src/net/JNet/Generated/Javax/Management/Openmbean/TabularType.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Openmbean { - #region TabularType + #region TabularType declaration + /// + /// + /// + public partial class TabularType : Javax.Management.Openmbean.OpenType + { + const string _bridgeClassName = "javax.management.openmbean.TabularType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabularType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabularType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabularType implementation public partial class TabularType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/OperationsException.cs b/src/net/JNet/Generated/Javax/Management/OperationsException.cs index 4ea686a0f5..f3ff9df775 100644 --- a/src/net/JNet/Generated/Javax/Management/OperationsException.cs +++ b/src/net/JNet/Generated/Javax/Management/OperationsException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region OperationsException + #region OperationsException declaration + /// + /// + /// + public partial class OperationsException : Javax.Management.JMException + { + const string _bridgeClassName = "javax.management.OperationsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region OperationsException implementation public partial class OperationsException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/PersistentMBean.cs b/src/net/JNet/Generated/Javax/Management/PersistentMBean.cs index 5fb9d338dd..cb09f45de0 100644 --- a/src/net/JNet/Generated/Javax/Management/PersistentMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/PersistentMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region PersistentMBean declaration + /// + /// + /// + public partial class PersistentMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.PersistentMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PersistentMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PersistentMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PersistentMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PersistentMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPersistentMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface IPersistentMBean } #endregion - #region PersistentMBean + #region PersistentMBean implementation public partial class PersistentMBean : Javax.Management.IPersistentMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Query.cs b/src/net/JNet/Generated/Javax/Management/Query.cs index e9b891929e..8ab1c3b4c0 100644 --- a/src/net/JNet/Generated/Javax/Management/Query.cs +++ b/src/net/JNet/Generated/Javax/Management/Query.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region Query + #region Query declaration + /// + /// + /// + public partial class Query : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.Query"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Query() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Query(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Query implementation public partial class Query { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/QueryEval.cs b/src/net/JNet/Generated/Javax/Management/QueryEval.cs index fb5f7324b0..c6d9f454d4 100644 --- a/src/net/JNet/Generated/Javax/Management/QueryEval.cs +++ b/src/net/JNet/Generated/Javax/Management/QueryEval.cs @@ -25,7 +25,54 @@ namespace Javax.Management { - #region QueryEval + #region QueryEval declaration + /// + /// + /// + public partial class QueryEval : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.QueryEval"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("QueryEval class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QueryEval() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("QueryEval class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QueryEval(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region QueryEval implementation public partial class QueryEval { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/QueryExp.cs b/src/net/JNet/Generated/Javax/Management/QueryExp.cs index ed5264f3f5..a36e26d12b 100644 --- a/src/net/JNet/Generated/Javax/Management/QueryExp.cs +++ b/src/net/JNet/Generated/Javax/Management/QueryExp.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region QueryExp declaration + /// + /// + /// + public partial class QueryExp : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.QueryExp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("QueryExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QueryExp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("QueryExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public QueryExp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IQueryExp /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IQueryExp : Java.Io.ISerializable } #endregion - #region QueryExp + #region QueryExp implementation public partial class QueryExp : Javax.Management.IQueryExp { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ReflectionException.cs b/src/net/JNet/Generated/Javax/Management/ReflectionException.cs index 217c5690fb..94810334bc 100644 --- a/src/net/JNet/Generated/Javax/Management/ReflectionException.cs +++ b/src/net/JNet/Generated/Javax/Management/ReflectionException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region ReflectionException + #region ReflectionException declaration + /// + /// + /// + public partial class ReflectionException : Javax.Management.JMException + { + const string _bridgeClassName = "javax.management.ReflectionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ReflectionException implementation public partial class ReflectionException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Relation/AllPackageClasses.cs deleted file mode 100644 index 135b59d801..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Relation/AllPackageClasses.cs +++ /dev/null @@ -1,945 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Relation -{ - #region InvalidRelationIdException - /// - /// - /// - public partial class InvalidRelationIdException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.InvalidRelationIdException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidRelationServiceException - /// - /// - /// - public partial class InvalidRelationServiceException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.InvalidRelationServiceException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidRelationTypeException - /// - /// - /// - public partial class InvalidRelationTypeException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.InvalidRelationTypeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidRoleInfoException - /// - /// - /// - public partial class InvalidRoleInfoException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.InvalidRoleInfoException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidRoleValueException - /// - /// - /// - public partial class InvalidRoleValueException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.InvalidRoleValueException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerNotificationFilter - /// - /// - /// - public partial class MBeanServerNotificationFilter : Javax.Management.NotificationFilterSupport - { - const string _bridgeClassName = "javax.management.relation.MBeanServerNotificationFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MBeanServerNotificationFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MBeanServerNotificationFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Relation - /// - /// - /// - public partial class Relation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.relation.Relation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Relation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Relation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Relation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Relation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationException - /// - /// - /// - public partial class RelationException : Javax.Management.JMException - { - const string _bridgeClassName = "javax.management.relation.RelationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RelationNotFoundException - /// - /// - /// - public partial class RelationNotFoundException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.RelationNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RelationNotification - /// - /// - /// - public partial class RelationNotification : Javax.Management.Notification - { - const string _bridgeClassName = "javax.management.relation.RelationNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RelationNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RelationNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationService - /// - /// - /// - public partial class RelationService : Javax.Management.NotificationBroadcasterSupport - { - const string _bridgeClassName = "javax.management.relation.RelationService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RelationService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RelationService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationServiceMBean - /// - /// - /// - public partial class RelationServiceMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.relation.RelationServiceMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RelationServiceMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RelationServiceMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RelationServiceMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RelationServiceMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationServiceNotRegisteredException - /// - /// - /// - public partial class RelationServiceNotRegisteredException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.RelationServiceNotRegisteredException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RelationSupport - /// - /// - /// - public partial class RelationSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.relation.RelationSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RelationSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RelationSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationSupportMBean - /// - /// - /// - public partial class RelationSupportMBean : Javax.Management.Relation.Relation - { - const string _bridgeClassName = "javax.management.relation.RelationSupportMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RelationSupportMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RelationSupportMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RelationSupportMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RelationSupportMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationType - /// - /// - /// - public partial class RelationType : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.relation.RelationType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RelationType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RelationType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RelationType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RelationType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RelationTypeNotFoundException - /// - /// - /// - public partial class RelationTypeNotFoundException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.RelationTypeNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RelationTypeSupport - /// - /// - /// - public partial class RelationTypeSupport : Javax.Management.Relation.RelationType - { - const string _bridgeClassName = "javax.management.relation.RelationTypeSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RelationTypeSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RelationTypeSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Role - /// - /// - /// - public partial class Role : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.relation.Role"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Role() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Role(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoleInfo - /// - /// - /// - public partial class RoleInfo : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.relation.RoleInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoleInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoleInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoleInfoNotFoundException - /// - /// - /// - public partial class RoleInfoNotFoundException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.RoleInfoNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RoleList - /// - /// - /// - public partial class RoleList : Java.Util.ArrayList - { - const string _bridgeClassName = "javax.management.relation.RoleList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoleList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoleList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoleNotFoundException - /// - /// - /// - public partial class RoleNotFoundException : Javax.Management.Relation.RelationException - { - const string _bridgeClassName = "javax.management.relation.RoleNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RoleResult - /// - /// - /// - public partial class RoleResult : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.relation.RoleResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoleResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoleResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoleStatus - /// - /// - /// - public partial class RoleStatus : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.relation.RoleStatus"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoleStatus() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoleStatus(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoleUnresolved - /// - /// - /// - public partial class RoleUnresolved : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.relation.RoleUnresolved"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoleUnresolved() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoleUnresolved(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RoleUnresolvedList - /// - /// - /// - public partial class RoleUnresolvedList : Java.Util.ArrayList - { - const string _bridgeClassName = "javax.management.relation.RoleUnresolvedList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RoleUnresolvedList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RoleUnresolvedList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationIdException.cs b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationIdException.cs index 4a411eff21..060a226939 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationIdException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationIdException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region InvalidRelationIdException + #region InvalidRelationIdException declaration + /// + /// + /// + public partial class InvalidRelationIdException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.InvalidRelationIdException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidRelationIdException implementation public partial class InvalidRelationIdException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationServiceException.cs b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationServiceException.cs index 5205547bee..09b0967bc8 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationServiceException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationServiceException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region InvalidRelationServiceException + #region InvalidRelationServiceException declaration + /// + /// + /// + public partial class InvalidRelationServiceException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.InvalidRelationServiceException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidRelationServiceException implementation public partial class InvalidRelationServiceException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationTypeException.cs b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationTypeException.cs index dec4fd7ac9..f8471e69c7 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationTypeException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRelationTypeException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region InvalidRelationTypeException + #region InvalidRelationTypeException declaration + /// + /// + /// + public partial class InvalidRelationTypeException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.InvalidRelationTypeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidRelationTypeException implementation public partial class InvalidRelationTypeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleInfoException.cs b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleInfoException.cs index b18f78423c..eefa6ca4ac 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleInfoException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleInfoException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region InvalidRoleInfoException + #region InvalidRoleInfoException declaration + /// + /// + /// + public partial class InvalidRoleInfoException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.InvalidRoleInfoException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidRoleInfoException implementation public partial class InvalidRoleInfoException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleValueException.cs b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleValueException.cs index 98a9486548..f31f474c29 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleValueException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/InvalidRoleValueException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region InvalidRoleValueException + #region InvalidRoleValueException declaration + /// + /// + /// + public partial class InvalidRoleValueException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.InvalidRoleValueException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidRoleValueException implementation public partial class InvalidRoleValueException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/MBeanServerNotificationFilter.cs b/src/net/JNet/Generated/Javax/Management/Relation/MBeanServerNotificationFilter.cs index ea418084f9..0f7bfe9fb6 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/MBeanServerNotificationFilter.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/MBeanServerNotificationFilter.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region MBeanServerNotificationFilter + #region MBeanServerNotificationFilter declaration + /// + /// + /// + public partial class MBeanServerNotificationFilter : Javax.Management.NotificationFilterSupport + { + const string _bridgeClassName = "javax.management.relation.MBeanServerNotificationFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MBeanServerNotificationFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MBeanServerNotificationFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MBeanServerNotificationFilter implementation public partial class MBeanServerNotificationFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/Relation.cs b/src/net/JNet/Generated/Javax/Management/Relation/Relation.cs index a3d3ffb114..98f798e656 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/Relation.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/Relation.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Relation { + #region Relation declaration + /// + /// + /// + public partial class Relation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.relation.Relation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Relation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Relation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Relation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Relation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRelation /// /// .NET interface for TO BE DEFINED FROM USER @@ -126,7 +173,7 @@ public partial interface IRelation } #endregion - #region Relation + #region Relation implementation public partial class Relation : Javax.Management.Relation.IRelation { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationException.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationException.cs index 515e61f728..eb7fe77be8 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region RelationException + #region RelationException declaration + /// + /// + /// + public partial class RelationException : Javax.Management.JMException + { + const string _bridgeClassName = "javax.management.relation.RelationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RelationException implementation public partial class RelationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationNotFoundException.cs index 2ad2f6075d..11d22cb847 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region RelationNotFoundException + #region RelationNotFoundException declaration + /// + /// + /// + public partial class RelationNotFoundException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.RelationNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RelationNotFoundException implementation public partial class RelationNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationNotification.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationNotification.cs index 903c7dd53c..154b87e942 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RelationNotification + #region RelationNotification declaration + /// + /// + /// + public partial class RelationNotification : Javax.Management.Notification + { + const string _bridgeClassName = "javax.management.relation.RelationNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RelationNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RelationNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RelationNotification implementation public partial class RelationNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationService.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationService.cs index 201757dce0..57a78290fe 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationService.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationService.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RelationService + #region RelationService declaration + /// + /// + /// + public partial class RelationService : Javax.Management.NotificationBroadcasterSupport + { + const string _bridgeClassName = "javax.management.relation.RelationService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RelationService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RelationService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RelationService implementation public partial class RelationService { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceMBean.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceMBean.cs index b06990be0f..3bfe4fecdf 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Relation { + #region RelationServiceMBean declaration + /// + /// + /// + public partial class RelationServiceMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.relation.RelationServiceMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RelationServiceMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RelationServiceMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RelationServiceMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RelationServiceMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRelationServiceMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -320,7 +367,7 @@ public partial interface IRelationServiceMBean } #endregion - #region RelationServiceMBean + #region RelationServiceMBean implementation public partial class RelationServiceMBean : Javax.Management.Relation.IRelationServiceMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceNotRegisteredException.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceNotRegisteredException.cs index 2ea8fc17a2..d219879c24 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceNotRegisteredException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationServiceNotRegisteredException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region RelationServiceNotRegisteredException + #region RelationServiceNotRegisteredException declaration + /// + /// + /// + public partial class RelationServiceNotRegisteredException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.RelationServiceNotRegisteredException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RelationServiceNotRegisteredException implementation public partial class RelationServiceNotRegisteredException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationSupport.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationSupport.cs index 06647906b9..a68375d5d3 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RelationSupport + #region RelationSupport declaration + /// + /// + /// + public partial class RelationSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.relation.RelationSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RelationSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RelationSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RelationSupport implementation public partial class RelationSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationSupportMBean.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationSupportMBean.cs index 97d65881a0..cfbb1d234b 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationSupportMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationSupportMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Relation { + #region RelationSupportMBean declaration + /// + /// + /// + public partial class RelationSupportMBean : Javax.Management.Relation.Relation + { + const string _bridgeClassName = "javax.management.relation.RelationSupportMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RelationSupportMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RelationSupportMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RelationSupportMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RelationSupportMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRelationSupportMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IRelationSupportMBean : Javax.Management.Relation.IRela } #endregion - #region RelationSupportMBean + #region RelationSupportMBean implementation public partial class RelationSupportMBean : Javax.Management.Relation.IRelationSupportMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationType.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationType.cs index a7ba140ad0..05aede0eec 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationType.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationType.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Relation { + #region RelationType declaration + /// + /// + /// + public partial class RelationType : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.relation.RelationType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RelationType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RelationType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RelationType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RelationType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRelationType /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IRelationType : Java.Io.ISerializable } #endregion - #region RelationType + #region RelationType implementation public partial class RelationType : Javax.Management.Relation.IRelationType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeNotFoundException.cs index 9c2f1c9355..24412d3029 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region RelationTypeNotFoundException + #region RelationTypeNotFoundException declaration + /// + /// + /// + public partial class RelationTypeNotFoundException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.RelationTypeNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RelationTypeNotFoundException implementation public partial class RelationTypeNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeSupport.cs b/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeSupport.cs index f6ccbabd25..29b20f14b8 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeSupport.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RelationTypeSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RelationTypeSupport + #region RelationTypeSupport declaration + /// + /// + /// + public partial class RelationTypeSupport : Javax.Management.Relation.RelationType + { + const string _bridgeClassName = "javax.management.relation.RelationTypeSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RelationTypeSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RelationTypeSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RelationTypeSupport implementation public partial class RelationTypeSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/Role.cs b/src/net/JNet/Generated/Javax/Management/Relation/Role.cs index 0535f14e29..b272955478 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/Role.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/Role.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region Role + #region Role declaration + /// + /// + /// + public partial class Role : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.relation.Role"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Role() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Role(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Role implementation public partial class Role { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleInfo.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleInfo.cs index 224130b79e..8fce67b9ff 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleInfo.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RoleInfo + #region RoleInfo declaration + /// + /// + /// + public partial class RoleInfo : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.relation.RoleInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoleInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoleInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoleInfo implementation public partial class RoleInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleInfoNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleInfoNotFoundException.cs index 7a444897a7..8c91c05657 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleInfoNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleInfoNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region RoleInfoNotFoundException + #region RoleInfoNotFoundException declaration + /// + /// + /// + public partial class RoleInfoNotFoundException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.RoleInfoNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RoleInfoNotFoundException implementation public partial class RoleInfoNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleList.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleList.cs index 5e09a0c1df..82ab0210b6 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleList.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleList.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RoleList + #region RoleList declaration + /// + /// + /// + public partial class RoleList : Java.Util.ArrayList + { + const string _bridgeClassName = "javax.management.relation.RoleList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoleList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoleList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoleList implementation public partial class RoleList { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleNotFoundException.cs index 0bb791f423..1c8032f13e 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Relation { - #region RoleNotFoundException + #region RoleNotFoundException declaration + /// + /// + /// + public partial class RoleNotFoundException : Javax.Management.Relation.RelationException + { + const string _bridgeClassName = "javax.management.relation.RoleNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RoleNotFoundException implementation public partial class RoleNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleResult.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleResult.cs index c3b213a387..84c886e19b 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleResult.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleResult.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RoleResult + #region RoleResult declaration + /// + /// + /// + public partial class RoleResult : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.relation.RoleResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoleResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoleResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoleResult implementation public partial class RoleResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleStatus.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleStatus.cs index 45a94a1287..d1f072d4fa 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleStatus.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleStatus.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RoleStatus + #region RoleStatus declaration + /// + /// + /// + public partial class RoleStatus : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.relation.RoleStatus"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoleStatus() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoleStatus(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoleStatus implementation public partial class RoleStatus { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolved.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolved.cs index 87c0460e6e..54aab87c39 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolved.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolved.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RoleUnresolved + #region RoleUnresolved declaration + /// + /// + /// + public partial class RoleUnresolved : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.relation.RoleUnresolved"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoleUnresolved() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoleUnresolved(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoleUnresolved implementation public partial class RoleUnresolved { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolvedList.cs b/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolvedList.cs index 5d2bba2722..0f424b33a4 100644 --- a/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolvedList.cs +++ b/src/net/JNet/Generated/Javax/Management/Relation/RoleUnresolvedList.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Relation { - #region RoleUnresolvedList + #region RoleUnresolvedList declaration + /// + /// + /// + public partial class RoleUnresolvedList : Java.Util.ArrayList + { + const string _bridgeClassName = "javax.management.relation.RoleUnresolvedList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RoleUnresolvedList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RoleUnresolvedList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RoleUnresolvedList implementation public partial class RoleUnresolvedList { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Remote/AllPackageClasses.cs deleted file mode 100644 index f73cb9e13e..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Remote/AllPackageClasses.cs +++ /dev/null @@ -1,800 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Remote -{ - #region JMXAddressable - /// - /// - /// - public partial class JMXAddressable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXAddressable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXAddressable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXAddressable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXAddressable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXAddressable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXAuthenticator - /// - /// - /// - public partial class JMXAuthenticator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXAuthenticator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXAuthenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXAuthenticator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXAuthenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXAuthenticator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectionNotification - /// - /// - /// - public partial class JMXConnectionNotification : Javax.Management.Notification - { - const string _bridgeClassName = "javax.management.remote.JMXConnectionNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMXConnectionNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMXConnectionNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnector - /// - /// - /// - public partial class JMXConnector : Java.Io.Closeable - { - const string _bridgeClassName = "javax.management.remote.JMXConnector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXConnector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXConnector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectorFactory - /// - /// - /// - public partial class JMXConnectorFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXConnectorFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMXConnectorFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMXConnectorFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectorProvider - /// - /// - /// - public partial class JMXConnectorProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXConnectorProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXConnectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXConnectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectorServer - /// - /// - /// - public partial class JMXConnectorServer : Javax.Management.NotificationBroadcasterSupport - { - const string _bridgeClassName = "javax.management.remote.JMXConnectorServer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXConnectorServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorServer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXConnectorServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorServer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectorServerFactory - /// - /// - /// - public partial class JMXConnectorServerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXConnectorServerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMXConnectorServerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMXConnectorServerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectorServerMBean - /// - /// - /// - public partial class JMXConnectorServerMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXConnectorServerMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXConnectorServerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorServerMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXConnectorServerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorServerMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXConnectorServerProvider - /// - /// - /// - public partial class JMXConnectorServerProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXConnectorServerProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JMXConnectorServerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorServerProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JMXConnectorServerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JMXConnectorServerProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXPrincipal - /// - /// - /// - public partial class JMXPrincipal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.JMXPrincipal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMXPrincipal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMXPrincipal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMXProviderException - /// - /// - /// - public partial class JMXProviderException : Java.Io.IOException - { - const string _bridgeClassName = "javax.management.remote.JMXProviderException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region JMXServerErrorException - /// - /// - /// - public partial class JMXServerErrorException : Java.Io.IOException - { - const string _bridgeClassName = "javax.management.remote.JMXServerErrorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region JMXServiceURL - /// - /// - /// - public partial class JMXServiceURL : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.remote.JMXServiceURL"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMXServiceURL() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMXServiceURL(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MBeanServerForwarder - /// - /// - /// - public partial class MBeanServerForwarder : Javax.Management.MBeanServer - { - const string _bridgeClassName = "javax.management.remote.MBeanServerForwarder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MBeanServerForwarder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServerForwarder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MBeanServerForwarder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MBeanServerForwarder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotificationResult - /// - /// - /// - public partial class NotificationResult : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.remote.NotificationResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NotificationResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NotificationResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SubjectDelegationPermission - /// - /// - /// - public partial class SubjectDelegationPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.management.remote.SubjectDelegationPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SubjectDelegationPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SubjectDelegationPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TargetedNotification - /// - /// - /// - public partial class TargetedNotification : Java.Io.Serializable - { - const string _bridgeClassName = "javax.management.remote.TargetedNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TargetedNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TargetedNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXAddressable.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXAddressable.cs index 7b572bf1c5..c9d0c0c9d4 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXAddressable.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXAddressable.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region JMXAddressable declaration + /// + /// + /// + public partial class JMXAddressable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXAddressable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXAddressable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXAddressable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXAddressable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXAddressable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJMXAddressable /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IJMXAddressable } #endregion - #region JMXAddressable + #region JMXAddressable implementation public partial class JMXAddressable : Javax.Management.Remote.IJMXAddressable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXAuthenticator.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXAuthenticator.cs index 2d4d3ff18f..2626b8b9ef 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXAuthenticator.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXAuthenticator.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region JMXAuthenticator declaration + /// + /// + /// + public partial class JMXAuthenticator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXAuthenticator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXAuthenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXAuthenticator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXAuthenticator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXAuthenticator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJMXAuthenticator /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IJMXAuthenticator } #endregion - #region JMXAuthenticator + #region JMXAuthenticator implementation public partial class JMXAuthenticator : Javax.Management.Remote.IJMXAuthenticator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectionNotification.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectionNotification.cs index f96ba30d64..eff70a33be 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectionNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectionNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region JMXConnectionNotification + #region JMXConnectionNotification declaration + /// + /// + /// + public partial class JMXConnectionNotification : Javax.Management.Notification + { + const string _bridgeClassName = "javax.management.remote.JMXConnectionNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMXConnectionNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMXConnectionNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMXConnectionNotification implementation public partial class JMXConnectionNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnector.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnector.cs index f4c68fa228..4a73cad823 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnector.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnector.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region JMXConnector declaration + /// + /// + /// + public partial class JMXConnector : Java.Io.Closeable + { + const string _bridgeClassName = "javax.management.remote.JMXConnector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXConnector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXConnector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJMXConnector /// /// .NET interface for TO BE DEFINED FROM USER @@ -95,7 +142,7 @@ public partial interface IJMXConnector : Java.Io.ICloseable } #endregion - #region JMXConnector + #region JMXConnector implementation public partial class JMXConnector : Javax.Management.Remote.IJMXConnector { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorFactory.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorFactory.cs index a58ea35579..626e9bf6e4 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorFactory.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region JMXConnectorFactory + #region JMXConnectorFactory declaration + /// + /// + /// + public partial class JMXConnectorFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXConnectorFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMXConnectorFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMXConnectorFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMXConnectorFactory implementation public partial class JMXConnectorFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorProvider.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorProvider.cs index f7a7f2950e..dafccb77ca 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorProvider.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorProvider.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region JMXConnectorProvider declaration + /// + /// + /// + public partial class JMXConnectorProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXConnectorProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXConnectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXConnectorProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJMXConnectorProvider /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IJMXConnectorProvider } #endregion - #region JMXConnectorProvider + #region JMXConnectorProvider implementation public partial class JMXConnectorProvider : Javax.Management.Remote.IJMXConnectorProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServer.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServer.cs index ed203511a4..1dcbde331c 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServer.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServer.cs @@ -25,7 +25,54 @@ namespace Javax.Management.Remote { - #region JMXConnectorServer + #region JMXConnectorServer declaration + /// + /// + /// + public partial class JMXConnectorServer : Javax.Management.NotificationBroadcasterSupport + { + const string _bridgeClassName = "javax.management.remote.JMXConnectorServer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXConnectorServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorServer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXConnectorServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorServer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMXConnectorServer implementation public partial class JMXConnectorServer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerFactory.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerFactory.cs index 4fd3c6d45c..199bfd0af0 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerFactory.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region JMXConnectorServerFactory + #region JMXConnectorServerFactory declaration + /// + /// + /// + public partial class JMXConnectorServerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXConnectorServerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMXConnectorServerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMXConnectorServerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMXConnectorServerFactory implementation public partial class JMXConnectorServerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerMBean.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerMBean.cs index 4f6a61e22b..182abfb166 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region JMXConnectorServerMBean declaration + /// + /// + /// + public partial class JMXConnectorServerMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXConnectorServerMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXConnectorServerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorServerMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXConnectorServerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorServerMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJMXConnectorServerMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -82,7 +129,7 @@ public partial interface IJMXConnectorServerMBean } #endregion - #region JMXConnectorServerMBean + #region JMXConnectorServerMBean implementation public partial class JMXConnectorServerMBean : Javax.Management.Remote.IJMXConnectorServerMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerProvider.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerProvider.cs index 4921970bc8..10c04dee0f 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerProvider.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXConnectorServerProvider.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region JMXConnectorServerProvider declaration + /// + /// + /// + public partial class JMXConnectorServerProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXConnectorServerProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JMXConnectorServerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorServerProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JMXConnectorServerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JMXConnectorServerProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJMXConnectorServerProvider /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IJMXConnectorServerProvider } #endregion - #region JMXConnectorServerProvider + #region JMXConnectorServerProvider implementation public partial class JMXConnectorServerProvider : Javax.Management.Remote.IJMXConnectorServerProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXPrincipal.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXPrincipal.cs index 00ea3a01b4..91f9e0a3b5 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXPrincipal.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXPrincipal.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region JMXPrincipal + #region JMXPrincipal declaration + /// + /// + /// + public partial class JMXPrincipal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.JMXPrincipal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMXPrincipal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMXPrincipal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMXPrincipal implementation public partial class JMXPrincipal { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXProviderException.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXProviderException.cs index 1d2904de64..03e42f769f 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXProviderException.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXProviderException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Remote { - #region JMXProviderException + #region JMXProviderException declaration + /// + /// + /// + public partial class JMXProviderException : Java.Io.IOException + { + const string _bridgeClassName = "javax.management.remote.JMXProviderException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region JMXProviderException implementation public partial class JMXProviderException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXServerErrorException.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXServerErrorException.cs index 346f84a44d..67a670272b 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXServerErrorException.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXServerErrorException.cs @@ -25,7 +25,24 @@ namespace Javax.Management.Remote { - #region JMXServerErrorException + #region JMXServerErrorException declaration + /// + /// + /// + public partial class JMXServerErrorException : Java.Io.IOException + { + const string _bridgeClassName = "javax.management.remote.JMXServerErrorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region JMXServerErrorException implementation public partial class JMXServerErrorException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/JMXServiceURL.cs b/src/net/JNet/Generated/Javax/Management/Remote/JMXServiceURL.cs index c2c10d39a2..223b02849a 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/JMXServiceURL.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/JMXServiceURL.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region JMXServiceURL + #region JMXServiceURL declaration + /// + /// + /// + public partial class JMXServiceURL : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.remote.JMXServiceURL"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMXServiceURL() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMXServiceURL(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMXServiceURL implementation public partial class JMXServiceURL { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/MBeanServerForwarder.cs b/src/net/JNet/Generated/Javax/Management/Remote/MBeanServerForwarder.cs index 268c11a981..51a2c254df 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/MBeanServerForwarder.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/MBeanServerForwarder.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote { + #region MBeanServerForwarder declaration + /// + /// + /// + public partial class MBeanServerForwarder : Javax.Management.MBeanServer + { + const string _bridgeClassName = "javax.management.remote.MBeanServerForwarder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MBeanServerForwarder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServerForwarder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MBeanServerForwarder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MBeanServerForwarder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMBeanServerForwarder /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IMBeanServerForwarder : Javax.Management.IMBeanServer } #endregion - #region MBeanServerForwarder + #region MBeanServerForwarder implementation public partial class MBeanServerForwarder : Javax.Management.Remote.IMBeanServerForwarder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/NotificationResult.cs b/src/net/JNet/Generated/Javax/Management/Remote/NotificationResult.cs index ff2e4f8a03..45d48deaa8 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/NotificationResult.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/NotificationResult.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region NotificationResult + #region NotificationResult declaration + /// + /// + /// + public partial class NotificationResult : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.remote.NotificationResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NotificationResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NotificationResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NotificationResult implementation public partial class NotificationResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/AllPackageClasses.cs deleted file mode 100644 index 993e4d1c8c..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/AllPackageClasses.cs +++ /dev/null @@ -1,441 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Remote.Rmi -{ - #region RMIConnection - /// - /// - /// - public partial class RMIConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIConnectionImpl - /// - /// - /// - public partial class RMIConnectionImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIConnectionImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIConnectionImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIConnectionImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIConnectionImpl_Stub - /// - /// - /// - public partial class RMIConnectionImpl_Stub : Javax.Management.Remote.Rmi.RMIConnection - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIConnectionImpl_Stub"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIConnectionImpl_Stub() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIConnectionImpl_Stub(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIConnector - /// - /// - /// - public partial class RMIConnector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIConnector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIConnector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIConnector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIConnectorServer - /// - /// - /// - public partial class RMIConnectorServer : Javax.Management.Remote.JMXConnectorServer - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIConnectorServer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIConnectorServer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIConnectorServer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIJRMPServerImpl - /// - /// - /// - public partial class RMIJRMPServerImpl : Javax.Management.Remote.Rmi.RMIServerImpl - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIJRMPServerImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIJRMPServerImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIJRMPServerImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIServer - /// - /// - /// - public partial class RMIServer : Java.Rmi.Remote - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIServer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIServer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIServer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIServerImpl - /// - /// - /// - public partial class RMIServerImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIServerImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RMIServerImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIServerImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RMIServerImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RMIServerImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RMIServerImpl_Stub - /// - /// - /// - public partial class RMIServerImpl_Stub : Javax.Management.Remote.Rmi.RMIServer - { - const string _bridgeClassName = "javax.management.remote.rmi.RMIServerImpl_Stub"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RMIServerImpl_Stub() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RMIServerImpl_Stub(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnection.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnection.cs index 899f742a7a..2966d9736e 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnection.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnection.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote.Rmi { + #region RMIConnection declaration + /// + /// + /// + public partial class RMIConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRMIConnection /// /// .NET interface for TO BE DEFINED FROM USER @@ -326,7 +373,7 @@ public partial interface IRMIConnection } #endregion - #region RMIConnection + #region RMIConnection implementation public partial class RMIConnection : Javax.Management.Remote.Rmi.IRMIConnection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl.cs index 1d3e505444..c76bdce2ad 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote.Rmi { - #region RMIConnectionImpl + #region RMIConnectionImpl declaration + /// + /// + /// + public partial class RMIConnectionImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIConnectionImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIConnectionImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIConnectionImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIConnectionImpl implementation public partial class RMIConnectionImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl_Stub.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl_Stub.cs index be288d230d..e52c7ef825 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl_Stub.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectionImpl_Stub.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote.Rmi { - #region RMIConnectionImpl_Stub + #region RMIConnectionImpl_Stub declaration + /// + /// + /// + public partial class RMIConnectionImpl_Stub : Javax.Management.Remote.Rmi.RMIConnection + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIConnectionImpl_Stub"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIConnectionImpl_Stub() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIConnectionImpl_Stub(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIConnectionImpl_Stub implementation public partial class RMIConnectionImpl_Stub { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnector.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnector.cs index cf0f47b969..92c56d7a9c 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnector.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnector.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote.Rmi { - #region RMIConnector + #region RMIConnector declaration + /// + /// + /// + public partial class RMIConnector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIConnector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIConnector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIConnector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIConnector implementation public partial class RMIConnector { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectorServer.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectorServer.cs index e5b6bdb135..3a39af945b 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectorServer.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIConnectorServer.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote.Rmi { - #region RMIConnectorServer + #region RMIConnectorServer declaration + /// + /// + /// + public partial class RMIConnectorServer : Javax.Management.Remote.JMXConnectorServer + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIConnectorServer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIConnectorServer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIConnectorServer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIConnectorServer implementation public partial class RMIConnectorServer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIJRMPServerImpl.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIJRMPServerImpl.cs index 73dbacc8a2..29b7be2e5c 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIJRMPServerImpl.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIJRMPServerImpl.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote.Rmi { - #region RMIJRMPServerImpl + #region RMIJRMPServerImpl declaration + /// + /// + /// + public partial class RMIJRMPServerImpl : Javax.Management.Remote.Rmi.RMIServerImpl + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIJRMPServerImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIJRMPServerImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIJRMPServerImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIJRMPServerImpl implementation public partial class RMIJRMPServerImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServer.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServer.cs index 964d98e7c0..1619beedf6 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServer.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServer.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Remote.Rmi { + #region RMIServer declaration + /// + /// + /// + public partial class RMIServer : Java.Rmi.Remote + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIServer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIServer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIServer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRMIServer /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IRMIServer : Java.Rmi.IRemote } #endregion - #region RMIServer + #region RMIServer implementation public partial class RMIServer : Javax.Management.Remote.Rmi.IRMIServer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl.cs index e764f9096a..08c1805693 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl.cs @@ -25,7 +25,54 @@ namespace Javax.Management.Remote.Rmi { - #region RMIServerImpl + #region RMIServerImpl declaration + /// + /// + /// + public partial class RMIServerImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIServerImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RMIServerImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIServerImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RMIServerImpl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RMIServerImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIServerImpl implementation public partial class RMIServerImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl_Stub.cs b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl_Stub.cs index ae89e13d98..c4fb6bc387 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl_Stub.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/Rmi/RMIServerImpl_Stub.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote.Rmi { - #region RMIServerImpl_Stub + #region RMIServerImpl_Stub declaration + /// + /// + /// + public partial class RMIServerImpl_Stub : Javax.Management.Remote.Rmi.RMIServer + { + const string _bridgeClassName = "javax.management.remote.rmi.RMIServerImpl_Stub"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RMIServerImpl_Stub() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RMIServerImpl_Stub(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RMIServerImpl_Stub implementation public partial class RMIServerImpl_Stub { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/SubjectDelegationPermission.cs b/src/net/JNet/Generated/Javax/Management/Remote/SubjectDelegationPermission.cs index ba6d279272..87414f6419 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/SubjectDelegationPermission.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/SubjectDelegationPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region SubjectDelegationPermission + #region SubjectDelegationPermission declaration + /// + /// + /// + public partial class SubjectDelegationPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.management.remote.SubjectDelegationPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SubjectDelegationPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SubjectDelegationPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SubjectDelegationPermission implementation public partial class SubjectDelegationPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Remote/TargetedNotification.cs b/src/net/JNet/Generated/Javax/Management/Remote/TargetedNotification.cs index 9785dcb34b..83ee4c5325 100644 --- a/src/net/JNet/Generated/Javax/Management/Remote/TargetedNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/Remote/TargetedNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Remote { - #region TargetedNotification + #region TargetedNotification declaration + /// + /// + /// + public partial class TargetedNotification : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.remote.TargetedNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TargetedNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TargetedNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TargetedNotification implementation public partial class TargetedNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/RuntimeErrorException.cs b/src/net/JNet/Generated/Javax/Management/RuntimeErrorException.cs index ba4c33eb51..4eef356f50 100644 --- a/src/net/JNet/Generated/Javax/Management/RuntimeErrorException.cs +++ b/src/net/JNet/Generated/Javax/Management/RuntimeErrorException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region RuntimeErrorException + #region RuntimeErrorException declaration + /// + /// + /// + public partial class RuntimeErrorException : Javax.Management.JMRuntimeException + { + const string _bridgeClassName = "javax.management.RuntimeErrorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RuntimeErrorException implementation public partial class RuntimeErrorException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/RuntimeMBeanException.cs b/src/net/JNet/Generated/Javax/Management/RuntimeMBeanException.cs index f4de3c6e48..bde38d5247 100644 --- a/src/net/JNet/Generated/Javax/Management/RuntimeMBeanException.cs +++ b/src/net/JNet/Generated/Javax/Management/RuntimeMBeanException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region RuntimeMBeanException + #region RuntimeMBeanException declaration + /// + /// + /// + public partial class RuntimeMBeanException : Javax.Management.JMRuntimeException + { + const string _bridgeClassName = "javax.management.RuntimeMBeanException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RuntimeMBeanException implementation public partial class RuntimeMBeanException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/RuntimeOperationsException.cs b/src/net/JNet/Generated/Javax/Management/RuntimeOperationsException.cs index f05cb5fc00..7533dde003 100644 --- a/src/net/JNet/Generated/Javax/Management/RuntimeOperationsException.cs +++ b/src/net/JNet/Generated/Javax/Management/RuntimeOperationsException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region RuntimeOperationsException + #region RuntimeOperationsException declaration + /// + /// + /// + public partial class RuntimeOperationsException : Javax.Management.JMRuntimeException + { + const string _bridgeClassName = "javax.management.RuntimeOperationsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RuntimeOperationsException implementation public partial class RuntimeOperationsException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ServiceNotFoundException.cs b/src/net/JNet/Generated/Javax/Management/ServiceNotFoundException.cs index e6423b79c7..10c08ad64f 100644 --- a/src/net/JNet/Generated/Javax/Management/ServiceNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Management/ServiceNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Management { - #region ServiceNotFoundException + #region ServiceNotFoundException declaration + /// + /// + /// + public partial class ServiceNotFoundException : Javax.Management.OperationsException + { + const string _bridgeClassName = "javax.management.ServiceNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServiceNotFoundException implementation public partial class ServiceNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/StandardEmitterMBean.cs b/src/net/JNet/Generated/Javax/Management/StandardEmitterMBean.cs index 2d06532d4f..3e847153d6 100644 --- a/src/net/JNet/Generated/Javax/Management/StandardEmitterMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/StandardEmitterMBean.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region StandardEmitterMBean + #region StandardEmitterMBean declaration + /// + /// + /// + public partial class StandardEmitterMBean : Javax.Management.StandardMBean + { + const string _bridgeClassName = "javax.management.StandardEmitterMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardEmitterMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardEmitterMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardEmitterMBean implementation public partial class StandardEmitterMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/StandardMBean.cs b/src/net/JNet/Generated/Javax/Management/StandardMBean.cs index 458578e519..8c2392bd59 100644 --- a/src/net/JNet/Generated/Javax/Management/StandardMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/StandardMBean.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region StandardMBean + #region StandardMBean declaration + /// + /// + /// + public partial class StandardMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.StandardMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardMBean implementation public partial class StandardMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/StringValueExp.cs b/src/net/JNet/Generated/Javax/Management/StringValueExp.cs index 9edef2aa41..04caa1ac97 100644 --- a/src/net/JNet/Generated/Javax/Management/StringValueExp.cs +++ b/src/net/JNet/Generated/Javax/Management/StringValueExp.cs @@ -25,7 +25,52 @@ namespace Javax.Management { - #region StringValueExp + #region StringValueExp declaration + /// + /// + /// + public partial class StringValueExp : Javax.Management.ValueExp + { + const string _bridgeClassName = "javax.management.StringValueExp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringValueExp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringValueExp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringValueExp implementation public partial class StringValueExp { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Timer/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Management/Timer/AllPackageClasses.cs deleted file mode 100644 index 9e36ea9da8..0000000000 --- a/src/net/JNet/Generated/Javax/Management/Timer/AllPackageClasses.cs +++ /dev/null @@ -1,167 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Management.Timer -{ - #region Timer - /// - /// - /// - public partial class Timer : Javax.Management.NotificationBroadcasterSupport - { - const string _bridgeClassName = "javax.management.timer.Timer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Timer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Timer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TimerMBean - /// - /// - /// - public partial class TimerMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.management.timer.TimerMBean"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TimerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimerMBean() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TimerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TimerMBean(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TimerNotification - /// - /// - /// - public partial class TimerNotification : Javax.Management.Notification - { - const string _bridgeClassName = "javax.management.timer.TimerNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TimerNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TimerNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Management/Timer/Timer.cs b/src/net/JNet/Generated/Javax/Management/Timer/Timer.cs index 620c1e7cad..200511bfd8 100644 --- a/src/net/JNet/Generated/Javax/Management/Timer/Timer.cs +++ b/src/net/JNet/Generated/Javax/Management/Timer/Timer.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Timer { - #region Timer + #region Timer declaration + /// + /// + /// + public partial class Timer : Javax.Management.NotificationBroadcasterSupport + { + const string _bridgeClassName = "javax.management.timer.Timer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Timer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Timer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Timer implementation public partial class Timer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Timer/TimerMBean.cs b/src/net/JNet/Generated/Javax/Management/Timer/TimerMBean.cs index 6d29cb71bc..d04b23d1ed 100644 --- a/src/net/JNet/Generated/Javax/Management/Timer/TimerMBean.cs +++ b/src/net/JNet/Generated/Javax/Management/Timer/TimerMBean.cs @@ -25,6 +25,53 @@ namespace Javax.Management.Timer { + #region TimerMBean declaration + /// + /// + /// + public partial class TimerMBean : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.management.timer.TimerMBean"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TimerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimerMBean() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TimerMBean class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TimerMBean(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITimerMBean /// /// .NET interface for TO BE DEFINED FROM USER @@ -183,7 +230,7 @@ public partial interface ITimerMBean } #endregion - #region TimerMBean + #region TimerMBean implementation public partial class TimerMBean : Javax.Management.Timer.ITimerMBean { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/Timer/TimerNotification.cs b/src/net/JNet/Generated/Javax/Management/Timer/TimerNotification.cs index 9c1a47eee3..f10c4ee0b7 100644 --- a/src/net/JNet/Generated/Javax/Management/Timer/TimerNotification.cs +++ b/src/net/JNet/Generated/Javax/Management/Timer/TimerNotification.cs @@ -25,7 +25,52 @@ namespace Javax.Management.Timer { - #region TimerNotification + #region TimerNotification declaration + /// + /// + /// + public partial class TimerNotification : Javax.Management.Notification + { + const string _bridgeClassName = "javax.management.timer.TimerNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TimerNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TimerNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TimerNotification implementation public partial class TimerNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Management/ValueExp.cs b/src/net/JNet/Generated/Javax/Management/ValueExp.cs index fe2e138617..b0eced4f24 100644 --- a/src/net/JNet/Generated/Javax/Management/ValueExp.cs +++ b/src/net/JNet/Generated/Javax/Management/ValueExp.cs @@ -25,6 +25,53 @@ namespace Javax.Management { + #region ValueExp declaration + /// + /// + /// + public partial class ValueExp : Java.Io.Serializable + { + const string _bridgeClassName = "javax.management.ValueExp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ValueExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ValueExp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ValueExp class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ValueExp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IValueExp /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IValueExp : Java.Io.ISerializable } #endregion - #region ValueExp + #region ValueExp implementation public partial class ValueExp : Javax.Management.IValueExp { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Naming/AllPackageClasses.cs deleted file mode 100644 index 2fe401eac2..0000000000 --- a/src/net/JNet/Generated/Javax/Naming/AllPackageClasses.cs +++ /dev/null @@ -1,1207 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Naming -{ - #region AuthenticationException - /// - /// - /// - public partial class AuthenticationException : Javax.Naming.NamingSecurityException - { - const string _bridgeClassName = "javax.naming.AuthenticationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AuthenticationNotSupportedException - /// - /// - /// - public partial class AuthenticationNotSupportedException : Javax.Naming.NamingSecurityException - { - const string _bridgeClassName = "javax.naming.AuthenticationNotSupportedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region BinaryRefAddr - /// - /// - /// - public partial class BinaryRefAddr : Javax.Naming.RefAddr - { - const string _bridgeClassName = "javax.naming.BinaryRefAddr"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BinaryRefAddr() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BinaryRefAddr(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Binding - /// - /// - /// - public partial class Binding : Javax.Naming.NameClassPair - { - const string _bridgeClassName = "javax.naming.Binding"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Binding() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Binding(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CannotProceedException - /// - /// - /// - public partial class CannotProceedException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.CannotProceedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CommunicationException - /// - /// - /// - public partial class CommunicationException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.CommunicationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CompositeName - /// - /// - /// - public partial class CompositeName : Javax.Naming.Name - { - const string _bridgeClassName = "javax.naming.CompositeName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompositeName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompositeName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompoundName - /// - /// - /// - public partial class CompoundName : Javax.Naming.Name - { - const string _bridgeClassName = "javax.naming.CompoundName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompoundName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompoundName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConfigurationException - /// - /// - /// - public partial class ConfigurationException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.ConfigurationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Context - /// - /// - /// - public partial class Context : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.Context"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Context class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Context() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Context class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Context(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ContextNotEmptyException - /// - /// - /// - public partial class ContextNotEmptyException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.ContextNotEmptyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InitialContext - /// - /// - /// - public partial class InitialContext : Javax.Naming.Context - { - const string _bridgeClassName = "javax.naming.InitialContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InitialContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InitialContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InsufficientResourcesException - /// - /// - /// - public partial class InsufficientResourcesException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.InsufficientResourcesException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InterruptedNamingException - /// - /// - /// - public partial class InterruptedNamingException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.InterruptedNamingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidNameException - /// - /// - /// - public partial class InvalidNameException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.InvalidNameException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LimitExceededException - /// - /// - /// - public partial class LimitExceededException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.LimitExceededException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LinkException - /// - /// - /// - public partial class LinkException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.LinkException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LinkLoopException - /// - /// - /// - public partial class LinkLoopException : Javax.Naming.LinkException - { - const string _bridgeClassName = "javax.naming.LinkLoopException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LinkRef - /// - /// - /// - public partial class LinkRef : Javax.Naming.Reference - { - const string _bridgeClassName = "javax.naming.LinkRef"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LinkRef() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LinkRef(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MalformedLinkException - /// - /// - /// - public partial class MalformedLinkException : Javax.Naming.LinkException - { - const string _bridgeClassName = "javax.naming.MalformedLinkException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Name - /// - /// - /// - public partial class Name : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.Name"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Name() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Name(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NameAlreadyBoundException - /// - /// - /// - public partial class NameAlreadyBoundException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.NameAlreadyBoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NameClassPair - /// - /// - /// - public partial class NameClassPair : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.NameClassPair"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NameClassPair() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NameClassPair(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NameNotFoundException - /// - /// - /// - public partial class NameNotFoundException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.NameNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NameParser - /// - /// - /// - public partial class NameParser : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.NameParser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NameParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NameParser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NameParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NameParser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamingEnumeration - /// - /// - /// - public partial class NamingEnumeration : Java.Util.Enumeration - { - const string _bridgeClassName = "javax.naming.NamingEnumeration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamingEnumeration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamingEnumeration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamingEnumeration - /// - /// - /// - /// - public partial class NamingEnumeration : Java.Util.Enumeration - { - const string _bridgeClassName = "javax.naming.NamingEnumeration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamingEnumeration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamingEnumeration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamingException - /// - /// - /// - public partial class NamingException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.naming.NamingException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NamingSecurityException - /// - /// - /// - public partial class NamingSecurityException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.NamingSecurityException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoInitialContextException - /// - /// - /// - public partial class NoInitialContextException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.NoInitialContextException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NoPermissionException - /// - /// - /// - public partial class NoPermissionException : Javax.Naming.NamingSecurityException - { - const string _bridgeClassName = "javax.naming.NoPermissionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NotContextException - /// - /// - /// - public partial class NotContextException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.NotContextException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OperationNotSupportedException - /// - /// - /// - public partial class OperationNotSupportedException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.OperationNotSupportedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PartialResultException - /// - /// - /// - public partial class PartialResultException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.PartialResultException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region RefAddr - /// - /// - /// - public partial class RefAddr : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.RefAddr"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RefAddr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RefAddr() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RefAddr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RefAddr(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Reference - /// - /// - /// - public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.Reference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Reference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Reference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Referenceable - /// - /// - /// - public partial class Referenceable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.Referenceable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Referenceable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Referenceable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Referenceable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Referenceable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReferralException - /// - /// - /// - public partial class ReferralException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.ReferralException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ServiceUnavailableException - /// - /// - /// - public partial class ServiceUnavailableException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.ServiceUnavailableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SizeLimitExceededException - /// - /// - /// - public partial class SizeLimitExceededException : Javax.Naming.LimitExceededException - { - const string _bridgeClassName = "javax.naming.SizeLimitExceededException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region StringRefAddr - /// - /// - /// - public partial class StringRefAddr : Javax.Naming.RefAddr - { - const string _bridgeClassName = "javax.naming.StringRefAddr"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringRefAddr() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringRefAddr(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TimeLimitExceededException - /// - /// - /// - public partial class TimeLimitExceededException : Javax.Naming.LimitExceededException - { - const string _bridgeClassName = "javax.naming.TimeLimitExceededException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Naming/AuthenticationException.cs b/src/net/JNet/Generated/Javax/Naming/AuthenticationException.cs index 6cfea250fa..d0f5989d84 100644 --- a/src/net/JNet/Generated/Javax/Naming/AuthenticationException.cs +++ b/src/net/JNet/Generated/Javax/Naming/AuthenticationException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region AuthenticationException + #region AuthenticationException declaration + /// + /// + /// + public partial class AuthenticationException : Javax.Naming.NamingSecurityException + { + const string _bridgeClassName = "javax.naming.AuthenticationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AuthenticationException implementation public partial class AuthenticationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/AuthenticationNotSupportedException.cs b/src/net/JNet/Generated/Javax/Naming/AuthenticationNotSupportedException.cs index 529c802318..32941ca3a9 100644 --- a/src/net/JNet/Generated/Javax/Naming/AuthenticationNotSupportedException.cs +++ b/src/net/JNet/Generated/Javax/Naming/AuthenticationNotSupportedException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region AuthenticationNotSupportedException + #region AuthenticationNotSupportedException declaration + /// + /// + /// + public partial class AuthenticationNotSupportedException : Javax.Naming.NamingSecurityException + { + const string _bridgeClassName = "javax.naming.AuthenticationNotSupportedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AuthenticationNotSupportedException implementation public partial class AuthenticationNotSupportedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/BinaryRefAddr.cs b/src/net/JNet/Generated/Javax/Naming/BinaryRefAddr.cs index c832dad6c7..c7507f0b71 100644 --- a/src/net/JNet/Generated/Javax/Naming/BinaryRefAddr.cs +++ b/src/net/JNet/Generated/Javax/Naming/BinaryRefAddr.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region BinaryRefAddr + #region BinaryRefAddr declaration + /// + /// + /// + public partial class BinaryRefAddr : Javax.Naming.RefAddr + { + const string _bridgeClassName = "javax.naming.BinaryRefAddr"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BinaryRefAddr() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BinaryRefAddr(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BinaryRefAddr implementation public partial class BinaryRefAddr { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Binding.cs b/src/net/JNet/Generated/Javax/Naming/Binding.cs index 5bc89d7ee7..c1f53effe5 100644 --- a/src/net/JNet/Generated/Javax/Naming/Binding.cs +++ b/src/net/JNet/Generated/Javax/Naming/Binding.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region Binding + #region Binding declaration + /// + /// + /// + public partial class Binding : Javax.Naming.NameClassPair + { + const string _bridgeClassName = "javax.naming.Binding"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Binding() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Binding(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Binding implementation public partial class Binding { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/CannotProceedException.cs b/src/net/JNet/Generated/Javax/Naming/CannotProceedException.cs index 1856e77373..3b5df44a0b 100644 --- a/src/net/JNet/Generated/Javax/Naming/CannotProceedException.cs +++ b/src/net/JNet/Generated/Javax/Naming/CannotProceedException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region CannotProceedException + #region CannotProceedException declaration + /// + /// + /// + public partial class CannotProceedException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.CannotProceedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CannotProceedException implementation public partial class CannotProceedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/CommunicationException.cs b/src/net/JNet/Generated/Javax/Naming/CommunicationException.cs index 39fcf8cf37..224bbb6e1e 100644 --- a/src/net/JNet/Generated/Javax/Naming/CommunicationException.cs +++ b/src/net/JNet/Generated/Javax/Naming/CommunicationException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region CommunicationException + #region CommunicationException declaration + /// + /// + /// + public partial class CommunicationException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.CommunicationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CommunicationException implementation public partial class CommunicationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/CompositeName.cs b/src/net/JNet/Generated/Javax/Naming/CompositeName.cs index 4f74440dbc..82fafabd58 100644 --- a/src/net/JNet/Generated/Javax/Naming/CompositeName.cs +++ b/src/net/JNet/Generated/Javax/Naming/CompositeName.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region CompositeName + #region CompositeName declaration + /// + /// + /// + public partial class CompositeName : Javax.Naming.Name + { + const string _bridgeClassName = "javax.naming.CompositeName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompositeName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompositeName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompositeName implementation public partial class CompositeName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/CompoundName.cs b/src/net/JNet/Generated/Javax/Naming/CompoundName.cs index 85487c4f60..4c8898c1f1 100644 --- a/src/net/JNet/Generated/Javax/Naming/CompoundName.cs +++ b/src/net/JNet/Generated/Javax/Naming/CompoundName.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region CompoundName + #region CompoundName declaration + /// + /// + /// + public partial class CompoundName : Javax.Naming.Name + { + const string _bridgeClassName = "javax.naming.CompoundName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompoundName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompoundName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompoundName implementation public partial class CompoundName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/ConfigurationException.cs b/src/net/JNet/Generated/Javax/Naming/ConfigurationException.cs index 61577ad0a9..8edd20af79 100644 --- a/src/net/JNet/Generated/Javax/Naming/ConfigurationException.cs +++ b/src/net/JNet/Generated/Javax/Naming/ConfigurationException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region ConfigurationException + #region ConfigurationException declaration + /// + /// + /// + public partial class ConfigurationException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.ConfigurationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ConfigurationException implementation public partial class ConfigurationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Context.cs b/src/net/JNet/Generated/Javax/Naming/Context.cs index 72b30c45b3..8d44f1bf7a 100644 --- a/src/net/JNet/Generated/Javax/Naming/Context.cs +++ b/src/net/JNet/Generated/Javax/Naming/Context.cs @@ -25,6 +25,53 @@ namespace Javax.Naming { + #region Context declaration + /// + /// + /// + public partial class Context : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.Context"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Context class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Context() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Context class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Context(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -237,7 +284,7 @@ public partial interface IContext } #endregion - #region Context + #region Context implementation public partial class Context : Javax.Naming.IContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/ContextNotEmptyException.cs b/src/net/JNet/Generated/Javax/Naming/ContextNotEmptyException.cs index 9fbf2bfd9c..55368d5753 100644 --- a/src/net/JNet/Generated/Javax/Naming/ContextNotEmptyException.cs +++ b/src/net/JNet/Generated/Javax/Naming/ContextNotEmptyException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region ContextNotEmptyException + #region ContextNotEmptyException declaration + /// + /// + /// + public partial class ContextNotEmptyException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.ContextNotEmptyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ContextNotEmptyException implementation public partial class ContextNotEmptyException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Naming/Directory/AllPackageClasses.cs deleted file mode 100644 index d6eea7e305..0000000000 --- a/src/net/JNet/Generated/Javax/Naming/Directory/AllPackageClasses.cs +++ /dev/null @@ -1,594 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Naming.Directory -{ - #region Attribute - /// - /// - /// - public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.directory.Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeInUseException - /// - /// - /// - public partial class AttributeInUseException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.AttributeInUseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AttributeModificationException - /// - /// - /// - public partial class AttributeModificationException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.AttributeModificationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Attributes - /// - /// - /// - public partial class Attributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.directory.Attributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicAttribute - /// - /// - /// - public partial class BasicAttribute : Javax.Naming.Directory.Attribute - { - const string _bridgeClassName = "javax.naming.directory.BasicAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicAttributes - /// - /// - /// - public partial class BasicAttributes : Javax.Naming.Directory.Attributes - { - const string _bridgeClassName = "javax.naming.directory.BasicAttributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicAttributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicAttributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DirContext - /// - /// - /// - public partial class DirContext : Javax.Naming.Context - { - const string _bridgeClassName = "javax.naming.directory.DirContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InitialDirContext - /// - /// - /// - public partial class InitialDirContext : Javax.Naming.InitialContext - { - const string _bridgeClassName = "javax.naming.directory.InitialDirContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InitialDirContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InitialDirContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidAttributeIdentifierException - /// - /// - /// - public partial class InvalidAttributeIdentifierException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.InvalidAttributeIdentifierException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidAttributesException - /// - /// - /// - public partial class InvalidAttributesException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.InvalidAttributesException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidAttributeValueException - /// - /// - /// - public partial class InvalidAttributeValueException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.InvalidAttributeValueException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidSearchControlsException - /// - /// - /// - public partial class InvalidSearchControlsException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.InvalidSearchControlsException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region InvalidSearchFilterException - /// - /// - /// - public partial class InvalidSearchFilterException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.InvalidSearchFilterException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ModificationItem - /// - /// - /// - public partial class ModificationItem : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.directory.ModificationItem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ModificationItem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ModificationItem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchAttributeException - /// - /// - /// - public partial class NoSuchAttributeException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.NoSuchAttributeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SchemaViolationException - /// - /// - /// - public partial class SchemaViolationException : Javax.Naming.NamingException - { - const string _bridgeClassName = "javax.naming.directory.SchemaViolationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SearchControls - /// - /// - /// - public partial class SearchControls : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.directory.SearchControls"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SearchControls() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SearchControls(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SearchResult - /// - /// - /// - public partial class SearchResult : Javax.Naming.Binding - { - const string _bridgeClassName = "javax.naming.directory.SearchResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SearchResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SearchResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/Attribute.cs b/src/net/JNet/Generated/Javax/Naming/Directory/Attribute.cs index 8582a921d2..e16f90ed26 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/Attribute.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/Attribute.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Directory { + #region Attribute declaration + /// + /// + /// + public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.directory.Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -123,7 +170,7 @@ public partial interface IAttribute } #endregion - #region Attribute + #region Attribute implementation public partial class Attribute : Javax.Naming.Directory.IAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/AttributeInUseException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/AttributeInUseException.cs index a886f7cab6..1c8e16502f 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/AttributeInUseException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/AttributeInUseException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region AttributeInUseException + #region AttributeInUseException declaration + /// + /// + /// + public partial class AttributeInUseException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.AttributeInUseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AttributeInUseException implementation public partial class AttributeInUseException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/AttributeModificationException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/AttributeModificationException.cs index 1dcc5f2c01..8a4ca42094 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/AttributeModificationException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/AttributeModificationException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region AttributeModificationException + #region AttributeModificationException declaration + /// + /// + /// + public partial class AttributeModificationException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.AttributeModificationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AttributeModificationException implementation public partial class AttributeModificationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/Attributes.cs b/src/net/JNet/Generated/Javax/Naming/Directory/Attributes.cs index 46f7c160ae..7ca83fac43 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/Attributes.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/Attributes.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Directory { + #region Attributes declaration + /// + /// + /// + public partial class Attributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.directory.Attributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttributes /// /// .NET interface for TO BE DEFINED FROM USER @@ -86,7 +133,7 @@ public partial interface IAttributes } #endregion - #region Attributes + #region Attributes implementation public partial class Attributes : Javax.Naming.Directory.IAttributes { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttribute.cs b/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttribute.cs index adba0fb58d..a25196b5b5 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttribute.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttribute.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Directory { - #region BasicAttribute + #region BasicAttribute declaration + /// + /// + /// + public partial class BasicAttribute : Javax.Naming.Directory.Attribute + { + const string _bridgeClassName = "javax.naming.directory.BasicAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicAttribute implementation public partial class BasicAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttributes.cs b/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttributes.cs index 53a74e77ec..22961a6135 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttributes.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/BasicAttributes.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Directory { - #region BasicAttributes + #region BasicAttributes declaration + /// + /// + /// + public partial class BasicAttributes : Javax.Naming.Directory.Attributes + { + const string _bridgeClassName = "javax.naming.directory.BasicAttributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicAttributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicAttributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicAttributes implementation public partial class BasicAttributes { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/DirContext.cs b/src/net/JNet/Generated/Javax/Naming/Directory/DirContext.cs index a4a68c8606..b23fe81f77 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/DirContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/DirContext.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Directory { + #region DirContext declaration + /// + /// + /// + public partial class DirContext : Javax.Naming.Context + { + const string _bridgeClassName = "javax.naming.directory.DirContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDirContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -251,7 +298,7 @@ public partial interface IDirContext : Javax.Naming.IContext } #endregion - #region DirContext + #region DirContext implementation public partial class DirContext : Javax.Naming.Directory.IDirContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/InitialDirContext.cs b/src/net/JNet/Generated/Javax/Naming/Directory/InitialDirContext.cs index 451ef4cb20..d8952236c9 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/InitialDirContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/InitialDirContext.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Directory { - #region InitialDirContext + #region InitialDirContext declaration + /// + /// + /// + public partial class InitialDirContext : Javax.Naming.InitialContext + { + const string _bridgeClassName = "javax.naming.directory.InitialDirContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InitialDirContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InitialDirContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InitialDirContext implementation public partial class InitialDirContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeIdentifierException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeIdentifierException.cs index af87fa6df4..58ed9f1bb0 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeIdentifierException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeIdentifierException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region InvalidAttributeIdentifierException + #region InvalidAttributeIdentifierException declaration + /// + /// + /// + public partial class InvalidAttributeIdentifierException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.InvalidAttributeIdentifierException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidAttributeIdentifierException implementation public partial class InvalidAttributeIdentifierException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeValueException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeValueException.cs index 8ea6c15be3..f1da8b76a7 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeValueException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributeValueException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region InvalidAttributeValueException + #region InvalidAttributeValueException declaration + /// + /// + /// + public partial class InvalidAttributeValueException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.InvalidAttributeValueException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidAttributeValueException implementation public partial class InvalidAttributeValueException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributesException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributesException.cs index 56a5447ba9..a2f805e5bb 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributesException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidAttributesException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region InvalidAttributesException + #region InvalidAttributesException declaration + /// + /// + /// + public partial class InvalidAttributesException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.InvalidAttributesException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidAttributesException implementation public partial class InvalidAttributesException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchControlsException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchControlsException.cs index 2aa58db3cd..21950e1c9c 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchControlsException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchControlsException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region InvalidSearchControlsException + #region InvalidSearchControlsException declaration + /// + /// + /// + public partial class InvalidSearchControlsException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.InvalidSearchControlsException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidSearchControlsException implementation public partial class InvalidSearchControlsException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchFilterException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchFilterException.cs index 8f3980a025..c818e43c3f 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchFilterException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/InvalidSearchFilterException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region InvalidSearchFilterException + #region InvalidSearchFilterException declaration + /// + /// + /// + public partial class InvalidSearchFilterException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.InvalidSearchFilterException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidSearchFilterException implementation public partial class InvalidSearchFilterException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/ModificationItem.cs b/src/net/JNet/Generated/Javax/Naming/Directory/ModificationItem.cs index dac36800f8..266b6ef367 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/ModificationItem.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/ModificationItem.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Directory { - #region ModificationItem + #region ModificationItem declaration + /// + /// + /// + public partial class ModificationItem : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.directory.ModificationItem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ModificationItem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ModificationItem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ModificationItem implementation public partial class ModificationItem { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/NoSuchAttributeException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/NoSuchAttributeException.cs index 8741dcccd7..f553aa0ca9 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/NoSuchAttributeException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/NoSuchAttributeException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region NoSuchAttributeException + #region NoSuchAttributeException declaration + /// + /// + /// + public partial class NoSuchAttributeException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.NoSuchAttributeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchAttributeException implementation public partial class NoSuchAttributeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/SchemaViolationException.cs b/src/net/JNet/Generated/Javax/Naming/Directory/SchemaViolationException.cs index 1a4a1cec8a..66b5557baa 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/SchemaViolationException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/SchemaViolationException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Directory { - #region SchemaViolationException + #region SchemaViolationException declaration + /// + /// + /// + public partial class SchemaViolationException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.directory.SchemaViolationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SchemaViolationException implementation public partial class SchemaViolationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/SearchControls.cs b/src/net/JNet/Generated/Javax/Naming/Directory/SearchControls.cs index 444fabbc1e..257301c2da 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/SearchControls.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/SearchControls.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Directory { - #region SearchControls + #region SearchControls declaration + /// + /// + /// + public partial class SearchControls : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.directory.SearchControls"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SearchControls() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SearchControls(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SearchControls implementation public partial class SearchControls { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Directory/SearchResult.cs b/src/net/JNet/Generated/Javax/Naming/Directory/SearchResult.cs index 50c5ae3613..8e10510bd0 100644 --- a/src/net/JNet/Generated/Javax/Naming/Directory/SearchResult.cs +++ b/src/net/JNet/Generated/Javax/Naming/Directory/SearchResult.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Directory { - #region SearchResult + #region SearchResult declaration + /// + /// + /// + public partial class SearchResult : Javax.Naming.Binding + { + const string _bridgeClassName = "javax.naming.directory.SearchResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SearchResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SearchResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SearchResult implementation public partial class SearchResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Naming/Event/AllPackageClasses.cs deleted file mode 100644 index 287b301459..0000000000 --- a/src/net/JNet/Generated/Javax/Naming/Event/AllPackageClasses.cs +++ /dev/null @@ -1,415 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Naming.Event -{ - #region EventContext - /// - /// - /// - public partial class EventContext : Javax.Naming.Context - { - const string _bridgeClassName = "javax.naming.event.EventContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EventContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EventContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventDirContext - /// - /// - /// - public partial class EventDirContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.event.EventDirContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EventDirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventDirContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EventDirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventDirContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamespaceChangeListener - /// - /// - /// - public partial class NamespaceChangeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamespaceChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.event.NamespaceChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region NamespaceChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class NamespaceChangeListenerDirect : NamespaceChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.naming.event.NamespaceChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region NamingEvent - /// - /// - /// - public partial class NamingEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.naming.event.NamingEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamingEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NamingEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamingExceptionEvent - /// - /// - /// - public partial class NamingExceptionEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.naming.event.NamingExceptionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamingExceptionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NamingExceptionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamingListener - /// - /// - /// - public partial class NamingListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamingListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.event.NamingListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region NamingListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class NamingListenerDirect : NamingListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.naming.event.NamingListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ObjectChangeListener - /// - /// - /// - public partial class ObjectChangeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.event.ObjectChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ObjectChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ObjectChangeListenerDirect : ObjectChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.naming.event.ObjectChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Naming/Event/EventContext.cs b/src/net/JNet/Generated/Javax/Naming/Event/EventContext.cs index 3bc297584c..a0a52b7d6e 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/EventContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/EventContext.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Event { + #region EventContext declaration + /// + /// + /// + public partial class EventContext : Javax.Naming.Context + { + const string _bridgeClassName = "javax.naming.event.EventContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EventContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EventContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEventContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IEventContext : Javax.Naming.IContext } #endregion - #region EventContext + #region EventContext implementation public partial class EventContext : Javax.Naming.Event.IEventContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/EventDirContext.cs b/src/net/JNet/Generated/Javax/Naming/Event/EventDirContext.cs index 9217cd56fb..3da3357c81 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/EventDirContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/EventDirContext.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Event { + #region EventDirContext declaration + /// + /// + /// + public partial class EventDirContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.event.EventDirContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EventDirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventDirContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EventDirContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventDirContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEventDirContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IEventDirContext } #endregion - #region EventDirContext + #region EventDirContext implementation public partial class EventDirContext : Javax.Naming.Event.IEventDirContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/NamespaceChangeListener.cs b/src/net/JNet/Generated/Javax/Naming/Event/NamespaceChangeListener.cs index 24a6c376a4..b4437afb91 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/NamespaceChangeListener.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/NamespaceChangeListener.cs @@ -25,6 +25,73 @@ namespace Javax.Naming.Event { + #region NamespaceChangeListener declaration + /// + /// + /// + public partial class NamespaceChangeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamespaceChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.event.NamespaceChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region NamespaceChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class NamespaceChangeListenerDirect : NamespaceChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.naming.event.NamespaceChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region INamespaceChangeListener /// /// .NET interface for org.mases.jnet.generated.javax.naming.event.NamespaceChangeListener implementing @@ -63,7 +130,7 @@ public partial interface INamespaceChangeListener } #endregion - #region NamespaceChangeListener + #region NamespaceChangeListener implementation public partial class NamespaceChangeListener : Javax.Naming.Event.INamespaceChangeListener { #region Constructors @@ -189,7 +256,7 @@ public virtual void NamingExceptionThrown(Javax.Naming.Event.NamingExceptionEven } #endregion - #region NamespaceChangeListenerDirect + #region NamespaceChangeListenerDirect implementation public partial class NamespaceChangeListenerDirect : Javax.Naming.Event.INamespaceChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/NamingEvent.cs b/src/net/JNet/Generated/Javax/Naming/Event/NamingEvent.cs index f312f1709f..afdac8efaf 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/NamingEvent.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/NamingEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Event { - #region NamingEvent + #region NamingEvent declaration + /// + /// + /// + public partial class NamingEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.naming.event.NamingEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamingEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NamingEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamingEvent implementation public partial class NamingEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/NamingExceptionEvent.cs b/src/net/JNet/Generated/Javax/Naming/Event/NamingExceptionEvent.cs index 51c9f8b78b..85d1795846 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/NamingExceptionEvent.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/NamingExceptionEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Event { - #region NamingExceptionEvent + #region NamingExceptionEvent declaration + /// + /// + /// + public partial class NamingExceptionEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.naming.event.NamingExceptionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamingExceptionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NamingExceptionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamingExceptionEvent implementation public partial class NamingExceptionEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/NamingListener.cs b/src/net/JNet/Generated/Javax/Naming/Event/NamingListener.cs index 3340e12eb2..659cef6625 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/NamingListener.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/NamingListener.cs @@ -25,6 +25,73 @@ namespace Javax.Naming.Event { + #region NamingListener declaration + /// + /// + /// + public partial class NamingListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamingListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.event.NamingListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region NamingListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class NamingListenerDirect : NamingListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.naming.event.NamingListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region INamingListener /// /// .NET interface for org.mases.jnet.generated.javax.naming.event.NamingListener implementing @@ -48,7 +115,7 @@ public partial interface INamingListener } #endregion - #region NamingListener + #region NamingListener implementation public partial class NamingListener : Javax.Naming.Event.INamingListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void NamingExceptionThrown(Javax.Naming.Event.NamingExceptionEven } #endregion - #region NamingListenerDirect + #region NamingListenerDirect implementation public partial class NamingListenerDirect : Javax.Naming.Event.INamingListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Event/ObjectChangeListener.cs b/src/net/JNet/Generated/Javax/Naming/Event/ObjectChangeListener.cs index 07c103c2bd..6e1e8e325b 100644 --- a/src/net/JNet/Generated/Javax/Naming/Event/ObjectChangeListener.cs +++ b/src/net/JNet/Generated/Javax/Naming/Event/ObjectChangeListener.cs @@ -25,6 +25,73 @@ namespace Javax.Naming.Event { + #region ObjectChangeListener declaration + /// + /// + /// + public partial class ObjectChangeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.event.ObjectChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ObjectChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ObjectChangeListenerDirect : ObjectChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.naming.event.ObjectChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IObjectChangeListener /// /// .NET interface for org.mases.jnet.generated.javax.naming.event.ObjectChangeListener implementing @@ -53,7 +120,7 @@ public partial interface IObjectChangeListener } #endregion - #region ObjectChangeListener + #region ObjectChangeListener implementation public partial class ObjectChangeListener : Javax.Naming.Event.IObjectChangeListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ObjectChanged(Javax.Naming.Event.NamingEvent arg0) } #endregion - #region ObjectChangeListenerDirect + #region ObjectChangeListenerDirect implementation public partial class ObjectChangeListenerDirect : Javax.Naming.Event.IObjectChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/InitialContext.cs b/src/net/JNet/Generated/Javax/Naming/InitialContext.cs index 16697ec475..0779263255 100644 --- a/src/net/JNet/Generated/Javax/Naming/InitialContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/InitialContext.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region InitialContext + #region InitialContext declaration + /// + /// + /// + public partial class InitialContext : Javax.Naming.Context + { + const string _bridgeClassName = "javax.naming.InitialContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InitialContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InitialContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InitialContext implementation public partial class InitialContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/InsufficientResourcesException.cs b/src/net/JNet/Generated/Javax/Naming/InsufficientResourcesException.cs index 621fdeff3e..9d8d560fcb 100644 --- a/src/net/JNet/Generated/Javax/Naming/InsufficientResourcesException.cs +++ b/src/net/JNet/Generated/Javax/Naming/InsufficientResourcesException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region InsufficientResourcesException + #region InsufficientResourcesException declaration + /// + /// + /// + public partial class InsufficientResourcesException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.InsufficientResourcesException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InsufficientResourcesException implementation public partial class InsufficientResourcesException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/InterruptedNamingException.cs b/src/net/JNet/Generated/Javax/Naming/InterruptedNamingException.cs index fbf5b58605..df1c4cb292 100644 --- a/src/net/JNet/Generated/Javax/Naming/InterruptedNamingException.cs +++ b/src/net/JNet/Generated/Javax/Naming/InterruptedNamingException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region InterruptedNamingException + #region InterruptedNamingException declaration + /// + /// + /// + public partial class InterruptedNamingException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.InterruptedNamingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InterruptedNamingException implementation public partial class InterruptedNamingException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/InvalidNameException.cs b/src/net/JNet/Generated/Javax/Naming/InvalidNameException.cs index b7f83ca1c2..384cbfa930 100644 --- a/src/net/JNet/Generated/Javax/Naming/InvalidNameException.cs +++ b/src/net/JNet/Generated/Javax/Naming/InvalidNameException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region InvalidNameException + #region InvalidNameException declaration + /// + /// + /// + public partial class InvalidNameException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.InvalidNameException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidNameException implementation public partial class InvalidNameException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/AllPackageClasses.cs deleted file mode 100644 index ad394a128c..0000000000 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/AllPackageClasses.cs +++ /dev/null @@ -1,1030 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Naming.Ldap -{ - #region BasicControl - /// - /// - /// - public partial class BasicControl : Javax.Naming.Ldap.Control - { - const string _bridgeClassName = "javax.naming.ldap.BasicControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Control - /// - /// - /// - public partial class Control : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.ldap.Control"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Control() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Control(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ControlFactory - /// - /// - /// - public partial class ControlFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.ldap.ControlFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ControlFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ControlFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ControlFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ControlFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExtendedRequest - /// - /// - /// - public partial class ExtendedRequest : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.ldap.ExtendedRequest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExtendedRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExtendedRequest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExtendedRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExtendedRequest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExtendedResponse - /// - /// - /// - public partial class ExtendedResponse : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.ldap.ExtendedResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExtendedResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExtendedResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExtendedResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExtendedResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HasControls - /// - /// - /// - public partial class HasControls : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.ldap.HasControls"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HasControls class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HasControls() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HasControls class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HasControls(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InitialLdapContext - /// - /// - /// - public partial class InitialLdapContext : Javax.Naming.Directory.InitialDirContext - { - const string _bridgeClassName = "javax.naming.ldap.InitialLdapContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InitialLdapContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InitialLdapContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LdapContext - /// - /// - /// - public partial class LdapContext : Javax.Naming.Directory.DirContext - { - const string _bridgeClassName = "javax.naming.ldap.LdapContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LdapContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LdapContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LdapContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LdapContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LdapName - /// - /// - /// - public partial class LdapName : Javax.Naming.Name - { - const string _bridgeClassName = "javax.naming.ldap.LdapName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LdapName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LdapName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LdapReferralException - /// - /// - /// - public partial class LdapReferralException : Javax.Naming.ReferralException - { - const string _bridgeClassName = "javax.naming.ldap.LdapReferralException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ManageReferralControl - /// - /// - /// - public partial class ManageReferralControl : Javax.Naming.Ldap.BasicControl - { - const string _bridgeClassName = "javax.naming.ldap.ManageReferralControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ManageReferralControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ManageReferralControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PagedResultsControl - /// - /// - /// - public partial class PagedResultsControl : Javax.Naming.Ldap.BasicControl - { - const string _bridgeClassName = "javax.naming.ldap.PagedResultsControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PagedResultsControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PagedResultsControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PagedResultsResponseControl - /// - /// - /// - public partial class PagedResultsResponseControl : Javax.Naming.Ldap.BasicControl - { - const string _bridgeClassName = "javax.naming.ldap.PagedResultsResponseControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PagedResultsResponseControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PagedResultsResponseControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Rdn - /// - /// - /// - public partial class Rdn : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.ldap.Rdn"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Rdn() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Rdn(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortControl - /// - /// - /// - public partial class SortControl : Javax.Naming.Ldap.BasicControl - { - const string _bridgeClassName = "javax.naming.ldap.SortControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SortControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SortControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortKey - /// - /// - /// - public partial class SortKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.ldap.SortKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SortKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SortKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortResponseControl - /// - /// - /// - public partial class SortResponseControl : Javax.Naming.Ldap.BasicControl - { - const string _bridgeClassName = "javax.naming.ldap.SortResponseControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SortResponseControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SortResponseControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StartTlsRequest - /// - /// - /// - public partial class StartTlsRequest : Javax.Naming.Ldap.ExtendedRequest - { - const string _bridgeClassName = "javax.naming.ldap.StartTlsRequest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StartTlsRequest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StartTlsRequest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StartTlsResponse - /// - /// - /// - public partial class StartTlsResponse : Javax.Naming.Ldap.ExtendedResponse - { - const string _bridgeClassName = "javax.naming.ldap.StartTlsResponse"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StartTlsResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StartTlsResponse() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StartTlsResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StartTlsResponse(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsolicitedNotification - /// - /// - /// - public partial class UnsolicitedNotification : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.ldap.UnsolicitedNotification"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UnsolicitedNotification class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UnsolicitedNotification() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UnsolicitedNotification class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UnsolicitedNotification(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsolicitedNotificationEvent - /// - /// - /// - public partial class UnsolicitedNotificationEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.naming.ldap.UnsolicitedNotificationEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnsolicitedNotificationEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnsolicitedNotificationEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsolicitedNotificationListener - /// - /// - /// - public partial class UnsolicitedNotificationListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnsolicitedNotificationListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.ldap.UnsolicitedNotificationListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region UnsolicitedNotificationListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class UnsolicitedNotificationListenerDirect : UnsolicitedNotificationListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.naming.ldap.UnsolicitedNotificationListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/BasicControl.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/BasicControl.cs index 73c6e1660e..beaebe57fb 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/BasicControl.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/BasicControl.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region BasicControl + #region BasicControl declaration + /// + /// + /// + public partial class BasicControl : Javax.Naming.Ldap.Control + { + const string _bridgeClassName = "javax.naming.ldap.BasicControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicControl implementation public partial class BasicControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/Control.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/Control.cs index 18e512029d..00d825d958 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/Control.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/Control.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Ldap { + #region Control declaration + /// + /// + /// + public partial class Control : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.ldap.Control"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Control() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Control(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IControl /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface IControl : Java.Io.ISerializable } #endregion - #region Control + #region Control implementation public partial class Control : Javax.Naming.Ldap.IControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/ControlFactory.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/ControlFactory.cs index 18cc8b0d2a..282f561f67 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/ControlFactory.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/ControlFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Naming.Ldap { - #region ControlFactory + #region ControlFactory declaration + /// + /// + /// + public partial class ControlFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.ldap.ControlFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ControlFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ControlFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ControlFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ControlFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ControlFactory implementation public partial class ControlFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedRequest.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedRequest.cs index 585248f2f0..6e1d617ff0 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedRequest.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedRequest.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Ldap { + #region ExtendedRequest declaration + /// + /// + /// + public partial class ExtendedRequest : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.ldap.ExtendedRequest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExtendedRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExtendedRequest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExtendedRequest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExtendedRequest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExtendedRequest /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IExtendedRequest : Java.Io.ISerializable } #endregion - #region ExtendedRequest + #region ExtendedRequest implementation public partial class ExtendedRequest : Javax.Naming.Ldap.IExtendedRequest { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedResponse.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedResponse.cs index d8f19bdaa5..2570beefbc 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedResponse.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/ExtendedResponse.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Ldap { + #region ExtendedResponse declaration + /// + /// + /// + public partial class ExtendedResponse : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.ldap.ExtendedResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExtendedResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExtendedResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExtendedResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExtendedResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IExtendedResponse /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IExtendedResponse : Java.Io.ISerializable } #endregion - #region ExtendedResponse + #region ExtendedResponse implementation public partial class ExtendedResponse : Javax.Naming.Ldap.IExtendedResponse { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/HasControls.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/HasControls.cs index 04ee9d97b8..54fd41916d 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/HasControls.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/HasControls.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Ldap { + #region HasControls declaration + /// + /// + /// + public partial class HasControls : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.ldap.HasControls"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HasControls class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HasControls() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HasControls class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HasControls(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHasControls /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHasControls } #endregion - #region HasControls + #region HasControls implementation public partial class HasControls : Javax.Naming.Ldap.IHasControls { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/InitialLdapContext.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/InitialLdapContext.cs index c62b603c2d..0f069dd3af 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/InitialLdapContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/InitialLdapContext.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region InitialLdapContext + #region InitialLdapContext declaration + /// + /// + /// + public partial class InitialLdapContext : Javax.Naming.Directory.InitialDirContext + { + const string _bridgeClassName = "javax.naming.ldap.InitialLdapContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InitialLdapContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InitialLdapContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InitialLdapContext implementation public partial class InitialLdapContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/LdapContext.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/LdapContext.cs index 7f3542d24a..fefc89247a 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/LdapContext.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/LdapContext.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Ldap { + #region LdapContext declaration + /// + /// + /// + public partial class LdapContext : Javax.Naming.Directory.DirContext + { + const string _bridgeClassName = "javax.naming.ldap.LdapContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LdapContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LdapContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LdapContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LdapContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILdapContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface ILdapContext : Javax.Naming.Directory.IDirContext } #endregion - #region LdapContext + #region LdapContext implementation public partial class LdapContext : Javax.Naming.Ldap.ILdapContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/LdapName.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/LdapName.cs index f7d2f79547..2c811698f8 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/LdapName.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/LdapName.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region LdapName + #region LdapName declaration + /// + /// + /// + public partial class LdapName : Javax.Naming.Name + { + const string _bridgeClassName = "javax.naming.ldap.LdapName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LdapName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LdapName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LdapName implementation public partial class LdapName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/LdapReferralException.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/LdapReferralException.cs index 7bd2d40cb4..57ac575e3e 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/LdapReferralException.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/LdapReferralException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming.Ldap { - #region LdapReferralException + #region LdapReferralException declaration + /// + /// + /// + public partial class LdapReferralException : Javax.Naming.ReferralException + { + const string _bridgeClassName = "javax.naming.ldap.LdapReferralException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LdapReferralException implementation public partial class LdapReferralException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/ManageReferralControl.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/ManageReferralControl.cs index f672b6a45f..0bde21740f 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/ManageReferralControl.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/ManageReferralControl.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region ManageReferralControl + #region ManageReferralControl declaration + /// + /// + /// + public partial class ManageReferralControl : Javax.Naming.Ldap.BasicControl + { + const string _bridgeClassName = "javax.naming.ldap.ManageReferralControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ManageReferralControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ManageReferralControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ManageReferralControl implementation public partial class ManageReferralControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsControl.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsControl.cs index fbe7d0fa67..0aa292f05f 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsControl.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsControl.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region PagedResultsControl + #region PagedResultsControl declaration + /// + /// + /// + public partial class PagedResultsControl : Javax.Naming.Ldap.BasicControl + { + const string _bridgeClassName = "javax.naming.ldap.PagedResultsControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PagedResultsControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PagedResultsControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PagedResultsControl implementation public partial class PagedResultsControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsResponseControl.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsResponseControl.cs index 2ac71fb531..4ce2a0777a 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsResponseControl.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/PagedResultsResponseControl.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region PagedResultsResponseControl + #region PagedResultsResponseControl declaration + /// + /// + /// + public partial class PagedResultsResponseControl : Javax.Naming.Ldap.BasicControl + { + const string _bridgeClassName = "javax.naming.ldap.PagedResultsResponseControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PagedResultsResponseControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PagedResultsResponseControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PagedResultsResponseControl implementation public partial class PagedResultsResponseControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/Rdn.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/Rdn.cs index c0ba282843..0d50e51f24 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/Rdn.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/Rdn.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region Rdn + #region Rdn declaration + /// + /// + /// + public partial class Rdn : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.ldap.Rdn"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Rdn() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Rdn(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Rdn implementation public partial class Rdn { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/SortControl.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/SortControl.cs index 993439a700..5db6f43921 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/SortControl.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/SortControl.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region SortControl + #region SortControl declaration + /// + /// + /// + public partial class SortControl : Javax.Naming.Ldap.BasicControl + { + const string _bridgeClassName = "javax.naming.ldap.SortControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SortControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SortControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortControl implementation public partial class SortControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/SortKey.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/SortKey.cs index 3c9148a913..a633601bd1 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/SortKey.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/SortKey.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region SortKey + #region SortKey declaration + /// + /// + /// + public partial class SortKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.ldap.SortKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SortKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SortKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortKey implementation public partial class SortKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/SortResponseControl.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/SortResponseControl.cs index 93b5eba4bf..e3ed7861cd 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/SortResponseControl.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/SortResponseControl.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region SortResponseControl + #region SortResponseControl declaration + /// + /// + /// + public partial class SortResponseControl : Javax.Naming.Ldap.BasicControl + { + const string _bridgeClassName = "javax.naming.ldap.SortResponseControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SortResponseControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SortResponseControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortResponseControl implementation public partial class SortResponseControl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsRequest.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsRequest.cs index 453fbb3344..e5e93c2c31 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsRequest.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsRequest.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region StartTlsRequest + #region StartTlsRequest declaration + /// + /// + /// + public partial class StartTlsRequest : Javax.Naming.Ldap.ExtendedRequest + { + const string _bridgeClassName = "javax.naming.ldap.StartTlsRequest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StartTlsRequest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StartTlsRequest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StartTlsRequest implementation public partial class StartTlsRequest { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsResponse.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsResponse.cs index 82575b5a44..37fdfbff64 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsResponse.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/StartTlsResponse.cs @@ -25,7 +25,54 @@ namespace Javax.Naming.Ldap { - #region StartTlsResponse + #region StartTlsResponse declaration + /// + /// + /// + public partial class StartTlsResponse : Javax.Naming.Ldap.ExtendedResponse + { + const string _bridgeClassName = "javax.naming.ldap.StartTlsResponse"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StartTlsResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StartTlsResponse() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StartTlsResponse class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StartTlsResponse(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StartTlsResponse implementation public partial class StartTlsResponse { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotification.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotification.cs index 905a954084..478f854e66 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotification.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotification.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Ldap { + #region UnsolicitedNotification declaration + /// + /// + /// + public partial class UnsolicitedNotification : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.ldap.UnsolicitedNotification"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UnsolicitedNotification class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UnsolicitedNotification() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UnsolicitedNotification class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UnsolicitedNotification(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUnsolicitedNotification /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IUnsolicitedNotification } #endregion - #region UnsolicitedNotification + #region UnsolicitedNotification implementation public partial class UnsolicitedNotification : Javax.Naming.Ldap.IUnsolicitedNotification { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationEvent.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationEvent.cs index d825250d46..a6827ebde8 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationEvent.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Ldap { - #region UnsolicitedNotificationEvent + #region UnsolicitedNotificationEvent declaration + /// + /// + /// + public partial class UnsolicitedNotificationEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.naming.ldap.UnsolicitedNotificationEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnsolicitedNotificationEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnsolicitedNotificationEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UnsolicitedNotificationEvent implementation public partial class UnsolicitedNotificationEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationListener.cs b/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationListener.cs index cb9811dac3..04d5235f15 100644 --- a/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationListener.cs +++ b/src/net/JNet/Generated/Javax/Naming/Ldap/UnsolicitedNotificationListener.cs @@ -25,6 +25,73 @@ namespace Javax.Naming.Ldap { + #region UnsolicitedNotificationListener declaration + /// + /// + /// + public partial class UnsolicitedNotificationListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnsolicitedNotificationListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.naming.ldap.UnsolicitedNotificationListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region UnsolicitedNotificationListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class UnsolicitedNotificationListenerDirect : UnsolicitedNotificationListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.naming.ldap.UnsolicitedNotificationListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IUnsolicitedNotificationListener /// /// .NET interface for org.mases.jnet.generated.javax.naming.ldap.UnsolicitedNotificationListener implementing @@ -53,7 +120,7 @@ public partial interface IUnsolicitedNotificationListener } #endregion - #region UnsolicitedNotificationListener + #region UnsolicitedNotificationListener implementation public partial class UnsolicitedNotificationListener : Javax.Naming.Ldap.IUnsolicitedNotificationListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void NotificationReceived(Javax.Naming.Ldap.UnsolicitedNotificati } #endregion - #region UnsolicitedNotificationListenerDirect + #region UnsolicitedNotificationListenerDirect implementation public partial class UnsolicitedNotificationListenerDirect : Javax.Naming.Ldap.IUnsolicitedNotificationListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/LimitExceededException.cs b/src/net/JNet/Generated/Javax/Naming/LimitExceededException.cs index c12673b635..07344678be 100644 --- a/src/net/JNet/Generated/Javax/Naming/LimitExceededException.cs +++ b/src/net/JNet/Generated/Javax/Naming/LimitExceededException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region LimitExceededException + #region LimitExceededException declaration + /// + /// + /// + public partial class LimitExceededException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.LimitExceededException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LimitExceededException implementation public partial class LimitExceededException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/LinkException.cs b/src/net/JNet/Generated/Javax/Naming/LinkException.cs index 09a1de81b6..aed26bdbc2 100644 --- a/src/net/JNet/Generated/Javax/Naming/LinkException.cs +++ b/src/net/JNet/Generated/Javax/Naming/LinkException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region LinkException + #region LinkException declaration + /// + /// + /// + public partial class LinkException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.LinkException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LinkException implementation public partial class LinkException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/LinkLoopException.cs b/src/net/JNet/Generated/Javax/Naming/LinkLoopException.cs index 7c34969eb5..351748f9c2 100644 --- a/src/net/JNet/Generated/Javax/Naming/LinkLoopException.cs +++ b/src/net/JNet/Generated/Javax/Naming/LinkLoopException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region LinkLoopException + #region LinkLoopException declaration + /// + /// + /// + public partial class LinkLoopException : Javax.Naming.LinkException + { + const string _bridgeClassName = "javax.naming.LinkLoopException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LinkLoopException implementation public partial class LinkLoopException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/LinkRef.cs b/src/net/JNet/Generated/Javax/Naming/LinkRef.cs index f69dfb68dd..14a4e29a88 100644 --- a/src/net/JNet/Generated/Javax/Naming/LinkRef.cs +++ b/src/net/JNet/Generated/Javax/Naming/LinkRef.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region LinkRef + #region LinkRef declaration + /// + /// + /// + public partial class LinkRef : Javax.Naming.Reference + { + const string _bridgeClassName = "javax.naming.LinkRef"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LinkRef() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LinkRef(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LinkRef implementation public partial class LinkRef { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/MalformedLinkException.cs b/src/net/JNet/Generated/Javax/Naming/MalformedLinkException.cs index 33159280eb..f13b9a0353 100644 --- a/src/net/JNet/Generated/Javax/Naming/MalformedLinkException.cs +++ b/src/net/JNet/Generated/Javax/Naming/MalformedLinkException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region MalformedLinkException + #region MalformedLinkException declaration + /// + /// + /// + public partial class MalformedLinkException : Javax.Naming.LinkException + { + const string _bridgeClassName = "javax.naming.MalformedLinkException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MalformedLinkException implementation public partial class MalformedLinkException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Name.cs b/src/net/JNet/Generated/Javax/Naming/Name.cs index 999b7069be..ad4e543e69 100644 --- a/src/net/JNet/Generated/Javax/Naming/Name.cs +++ b/src/net/JNet/Generated/Javax/Naming/Name.cs @@ -25,6 +25,53 @@ namespace Javax.Naming { + #region Name declaration + /// + /// + /// + public partial class Name : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.Name"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Name() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Name class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Name(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IName /// /// .NET interface for TO BE DEFINED FROM USER @@ -130,7 +177,7 @@ public partial interface IName } #endregion - #region Name + #region Name implementation public partial class Name : Javax.Naming.IName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NameAlreadyBoundException.cs b/src/net/JNet/Generated/Javax/Naming/NameAlreadyBoundException.cs index 11c8884d04..bc6705b0e2 100644 --- a/src/net/JNet/Generated/Javax/Naming/NameAlreadyBoundException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NameAlreadyBoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NameAlreadyBoundException + #region NameAlreadyBoundException declaration + /// + /// + /// + public partial class NameAlreadyBoundException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.NameAlreadyBoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NameAlreadyBoundException implementation public partial class NameAlreadyBoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NameClassPair.cs b/src/net/JNet/Generated/Javax/Naming/NameClassPair.cs index 7d187ce4ea..9607c947c7 100644 --- a/src/net/JNet/Generated/Javax/Naming/NameClassPair.cs +++ b/src/net/JNet/Generated/Javax/Naming/NameClassPair.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region NameClassPair + #region NameClassPair declaration + /// + /// + /// + public partial class NameClassPair : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.NameClassPair"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NameClassPair() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NameClassPair(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NameClassPair implementation public partial class NameClassPair { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NameNotFoundException.cs b/src/net/JNet/Generated/Javax/Naming/NameNotFoundException.cs index ce184f86d4..2553e223d2 100644 --- a/src/net/JNet/Generated/Javax/Naming/NameNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NameNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NameNotFoundException + #region NameNotFoundException declaration + /// + /// + /// + public partial class NameNotFoundException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.NameNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NameNotFoundException implementation public partial class NameNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NameParser.cs b/src/net/JNet/Generated/Javax/Naming/NameParser.cs index 1f8897128a..0a7595f611 100644 --- a/src/net/JNet/Generated/Javax/Naming/NameParser.cs +++ b/src/net/JNet/Generated/Javax/Naming/NameParser.cs @@ -25,6 +25,53 @@ namespace Javax.Naming { + #region NameParser declaration + /// + /// + /// + public partial class NameParser : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.NameParser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NameParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NameParser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NameParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NameParser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INameParser /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface INameParser } #endregion - #region NameParser + #region NameParser implementation public partial class NameParser : Javax.Naming.INameParser { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NamingEnumeration.cs b/src/net/JNet/Generated/Javax/Naming/NamingEnumeration.cs index 39a850a288..d6473a0a83 100644 --- a/src/net/JNet/Generated/Javax/Naming/NamingEnumeration.cs +++ b/src/net/JNet/Generated/Javax/Naming/NamingEnumeration.cs @@ -25,7 +25,102 @@ namespace Javax.Naming { - #region NamingEnumeration + #region NamingEnumeration declaration + /// + /// + /// + public partial class NamingEnumeration : Java.Util.Enumeration + { + const string _bridgeClassName = "javax.naming.NamingEnumeration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamingEnumeration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamingEnumeration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamingEnumeration declaration + /// + /// + /// + /// + public partial class NamingEnumeration : Java.Util.Enumeration + { + const string _bridgeClassName = "javax.naming.NamingEnumeration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamingEnumeration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NamingEnumeration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamingEnumeration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamingEnumeration implementation public partial class NamingEnumeration { #region Constructors @@ -117,7 +212,7 @@ public partial interface INamingEnumeration : Java.Util.IEnumeration } #endregion - #region NamingEnumeration + #region NamingEnumeration implementation public partial class NamingEnumeration : Javax.Naming.INamingEnumeration { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NamingException.cs b/src/net/JNet/Generated/Javax/Naming/NamingException.cs index bc434ba4fb..ac77263359 100644 --- a/src/net/JNet/Generated/Javax/Naming/NamingException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NamingException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NamingException + #region NamingException declaration + /// + /// + /// + public partial class NamingException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.naming.NamingException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NamingException implementation public partial class NamingException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NamingSecurityException.cs b/src/net/JNet/Generated/Javax/Naming/NamingSecurityException.cs index cab801bd87..6afc567f07 100644 --- a/src/net/JNet/Generated/Javax/Naming/NamingSecurityException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NamingSecurityException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NamingSecurityException + #region NamingSecurityException declaration + /// + /// + /// + public partial class NamingSecurityException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.NamingSecurityException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NamingSecurityException implementation public partial class NamingSecurityException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NoInitialContextException.cs b/src/net/JNet/Generated/Javax/Naming/NoInitialContextException.cs index 5ebb8676d8..2b44b84a34 100644 --- a/src/net/JNet/Generated/Javax/Naming/NoInitialContextException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NoInitialContextException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NoInitialContextException + #region NoInitialContextException declaration + /// + /// + /// + public partial class NoInitialContextException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.NoInitialContextException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoInitialContextException implementation public partial class NoInitialContextException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NoPermissionException.cs b/src/net/JNet/Generated/Javax/Naming/NoPermissionException.cs index 81e59b742c..1cc0c6c24d 100644 --- a/src/net/JNet/Generated/Javax/Naming/NoPermissionException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NoPermissionException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NoPermissionException + #region NoPermissionException declaration + /// + /// + /// + public partial class NoPermissionException : Javax.Naming.NamingSecurityException + { + const string _bridgeClassName = "javax.naming.NoPermissionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoPermissionException implementation public partial class NoPermissionException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/NotContextException.cs b/src/net/JNet/Generated/Javax/Naming/NotContextException.cs index 67c6a31d63..4da23927ec 100644 --- a/src/net/JNet/Generated/Javax/Naming/NotContextException.cs +++ b/src/net/JNet/Generated/Javax/Naming/NotContextException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region NotContextException + #region NotContextException declaration + /// + /// + /// + public partial class NotContextException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.NotContextException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NotContextException implementation public partial class NotContextException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/OperationNotSupportedException.cs b/src/net/JNet/Generated/Javax/Naming/OperationNotSupportedException.cs index e9478649bb..be95f186cf 100644 --- a/src/net/JNet/Generated/Javax/Naming/OperationNotSupportedException.cs +++ b/src/net/JNet/Generated/Javax/Naming/OperationNotSupportedException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region OperationNotSupportedException + #region OperationNotSupportedException declaration + /// + /// + /// + public partial class OperationNotSupportedException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.OperationNotSupportedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region OperationNotSupportedException implementation public partial class OperationNotSupportedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/PartialResultException.cs b/src/net/JNet/Generated/Javax/Naming/PartialResultException.cs index 1c1528317b..1b18bbf24c 100644 --- a/src/net/JNet/Generated/Javax/Naming/PartialResultException.cs +++ b/src/net/JNet/Generated/Javax/Naming/PartialResultException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region PartialResultException + #region PartialResultException declaration + /// + /// + /// + public partial class PartialResultException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.PartialResultException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PartialResultException implementation public partial class PartialResultException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/RefAddr.cs b/src/net/JNet/Generated/Javax/Naming/RefAddr.cs index 5020b343b8..826031f4d1 100644 --- a/src/net/JNet/Generated/Javax/Naming/RefAddr.cs +++ b/src/net/JNet/Generated/Javax/Naming/RefAddr.cs @@ -25,7 +25,54 @@ namespace Javax.Naming { - #region RefAddr + #region RefAddr declaration + /// + /// + /// + public partial class RefAddr : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.RefAddr"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RefAddr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RefAddr() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RefAddr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RefAddr(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RefAddr implementation public partial class RefAddr { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Reference.cs b/src/net/JNet/Generated/Javax/Naming/Reference.cs index e1f5129d19..7dd359efdd 100644 --- a/src/net/JNet/Generated/Javax/Naming/Reference.cs +++ b/src/net/JNet/Generated/Javax/Naming/Reference.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region Reference + #region Reference declaration + /// + /// + /// + public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.Reference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Reference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Reference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Reference implementation public partial class Reference { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Referenceable.cs b/src/net/JNet/Generated/Javax/Naming/Referenceable.cs index 66754cadd1..395f15668a 100644 --- a/src/net/JNet/Generated/Javax/Naming/Referenceable.cs +++ b/src/net/JNet/Generated/Javax/Naming/Referenceable.cs @@ -25,6 +25,53 @@ namespace Javax.Naming { + #region Referenceable declaration + /// + /// + /// + public partial class Referenceable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.Referenceable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Referenceable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Referenceable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Referenceable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Referenceable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReferenceable /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IReferenceable } #endregion - #region Referenceable + #region Referenceable implementation public partial class Referenceable : Javax.Naming.IReferenceable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/ReferralException.cs b/src/net/JNet/Generated/Javax/Naming/ReferralException.cs index 2208ebd820..113c51c2bb 100644 --- a/src/net/JNet/Generated/Javax/Naming/ReferralException.cs +++ b/src/net/JNet/Generated/Javax/Naming/ReferralException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region ReferralException + #region ReferralException declaration + /// + /// + /// + public partial class ReferralException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.ReferralException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ReferralException implementation public partial class ReferralException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/ServiceUnavailableException.cs b/src/net/JNet/Generated/Javax/Naming/ServiceUnavailableException.cs index f5a5c97af8..f0b35b763f 100644 --- a/src/net/JNet/Generated/Javax/Naming/ServiceUnavailableException.cs +++ b/src/net/JNet/Generated/Javax/Naming/ServiceUnavailableException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region ServiceUnavailableException + #region ServiceUnavailableException declaration + /// + /// + /// + public partial class ServiceUnavailableException : Javax.Naming.NamingException + { + const string _bridgeClassName = "javax.naming.ServiceUnavailableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ServiceUnavailableException implementation public partial class ServiceUnavailableException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/SizeLimitExceededException.cs b/src/net/JNet/Generated/Javax/Naming/SizeLimitExceededException.cs index e2de234918..0bd28084b9 100644 --- a/src/net/JNet/Generated/Javax/Naming/SizeLimitExceededException.cs +++ b/src/net/JNet/Generated/Javax/Naming/SizeLimitExceededException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region SizeLimitExceededException + #region SizeLimitExceededException declaration + /// + /// + /// + public partial class SizeLimitExceededException : Javax.Naming.LimitExceededException + { + const string _bridgeClassName = "javax.naming.SizeLimitExceededException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SizeLimitExceededException implementation public partial class SizeLimitExceededException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Naming/Spi/AllPackageClasses.cs deleted file mode 100644 index 163f33848f..0000000000 --- a/src/net/JNet/Generated/Javax/Naming/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,586 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Naming.Spi -{ - #region DirectoryManager - /// - /// - /// - public partial class DirectoryManager : Javax.Naming.Spi.NamingManager - { - const string _bridgeClassName = "javax.naming.spi.DirectoryManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DirectoryManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DirectoryManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DirObjectFactory - /// - /// - /// - public partial class DirObjectFactory : Javax.Naming.Spi.ObjectFactory - { - const string _bridgeClassName = "javax.naming.spi.DirObjectFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirObjectFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirObjectFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DirStateFactory - /// - /// - /// - public partial class DirStateFactory : Javax.Naming.Spi.StateFactory - { - const string _bridgeClassName = "javax.naming.spi.DirStateFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DirStateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirStateFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DirStateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DirStateFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Result - /// - /// - /// - public partial class Result : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.DirStateFactory$Result"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Result() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Result(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region InitialContextFactory - /// - /// - /// - public partial class InitialContextFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.InitialContextFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InitialContextFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InitialContextFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InitialContextFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InitialContextFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InitialContextFactoryBuilder - /// - /// - /// - public partial class InitialContextFactoryBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.InitialContextFactoryBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InitialContextFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InitialContextFactoryBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InitialContextFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InitialContextFactoryBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamingManager - /// - /// - /// - public partial class NamingManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.NamingManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamingManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NamingManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectFactory - /// - /// - /// - public partial class ObjectFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.ObjectFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectFactoryBuilder - /// - /// - /// - public partial class ObjectFactoryBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.ObjectFactoryBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ObjectFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectFactoryBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ObjectFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ObjectFactoryBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Resolver - /// - /// - /// - public partial class Resolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.Resolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Resolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Resolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Resolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Resolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResolveResult - /// - /// - /// - public partial class ResolveResult : Java.Io.Serializable - { - const string _bridgeClassName = "javax.naming.spi.ResolveResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ResolveResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ResolveResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StateFactory - /// - /// - /// - public partial class StateFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.naming.spi.StateFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StateFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StateFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/DirObjectFactory.cs b/src/net/JNet/Generated/Javax/Naming/Spi/DirObjectFactory.cs index 518f0904cc..b6136c19c1 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/DirObjectFactory.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/DirObjectFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region DirObjectFactory declaration + /// + /// + /// + public partial class DirObjectFactory : Javax.Naming.Spi.ObjectFactory + { + const string _bridgeClassName = "javax.naming.spi.DirObjectFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirObjectFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirObjectFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDirObjectFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface IDirObjectFactory : Javax.Naming.Spi.IObjectFactory } #endregion - #region DirObjectFactory + #region DirObjectFactory implementation public partial class DirObjectFactory : Javax.Naming.Spi.IDirObjectFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/DirStateFactory.cs b/src/net/JNet/Generated/Javax/Naming/Spi/DirStateFactory.cs index 94781c8e9f..c9a6b4210d 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/DirStateFactory.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/DirStateFactory.cs @@ -25,6 +25,98 @@ namespace Javax.Naming.Spi { + #region DirStateFactory declaration + /// + /// + /// + public partial class DirStateFactory : Javax.Naming.Spi.StateFactory + { + const string _bridgeClassName = "javax.naming.spi.DirStateFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DirStateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirStateFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DirStateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DirStateFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Result declaration + /// + /// + /// + public partial class Result : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.DirStateFactory$Result"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Result() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Result(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IDirStateFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +146,7 @@ public partial interface IDirStateFactory : Javax.Naming.Spi.IStateFactory } #endregion - #region DirStateFactory + #region DirStateFactory implementation public partial class DirStateFactory : Javax.Naming.Spi.IDirStateFactory { #region Constructors @@ -92,7 +184,7 @@ public Javax.Naming.Spi.DirStateFactory.Result GetStateToBind(object arg0, Javax #endregion #region Nested classes - #region Result + #region Result implementation public partial class Result { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/DirectoryManager.cs b/src/net/JNet/Generated/Javax/Naming/Spi/DirectoryManager.cs index 77c0c72bb7..8d7eb53204 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/DirectoryManager.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/DirectoryManager.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Spi { - #region DirectoryManager + #region DirectoryManager declaration + /// + /// + /// + public partial class DirectoryManager : Javax.Naming.Spi.NamingManager + { + const string _bridgeClassName = "javax.naming.spi.DirectoryManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DirectoryManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DirectoryManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DirectoryManager implementation public partial class DirectoryManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactory.cs b/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactory.cs index 34b11e847f..bbd19d70b5 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactory.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region InitialContextFactory declaration + /// + /// + /// + public partial class InitialContextFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.InitialContextFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InitialContextFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InitialContextFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InitialContextFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InitialContextFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInitialContextFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IInitialContextFactory } #endregion - #region InitialContextFactory + #region InitialContextFactory implementation public partial class InitialContextFactory : Javax.Naming.Spi.IInitialContextFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactoryBuilder.cs b/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactoryBuilder.cs index ca465c7ce4..a4fbe8d59a 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactoryBuilder.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/InitialContextFactoryBuilder.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region InitialContextFactoryBuilder declaration + /// + /// + /// + public partial class InitialContextFactoryBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.InitialContextFactoryBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InitialContextFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InitialContextFactoryBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InitialContextFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InitialContextFactoryBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInitialContextFactoryBuilder /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IInitialContextFactoryBuilder } #endregion - #region InitialContextFactoryBuilder + #region InitialContextFactoryBuilder implementation public partial class InitialContextFactoryBuilder : Javax.Naming.Spi.IInitialContextFactoryBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/NamingManager.cs b/src/net/JNet/Generated/Javax/Naming/Spi/NamingManager.cs index 90b78ebe3b..9b80e0741b 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/NamingManager.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/NamingManager.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Spi { - #region NamingManager + #region NamingManager declaration + /// + /// + /// + public partial class NamingManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.NamingManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamingManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NamingManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamingManager implementation public partial class NamingManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactory.cs b/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactory.cs index af23821a7e..2d63ecdb87 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactory.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region ObjectFactory declaration + /// + /// + /// + public partial class ObjectFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.ObjectFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IObjectFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IObjectFactory } #endregion - #region ObjectFactory + #region ObjectFactory implementation public partial class ObjectFactory : Javax.Naming.Spi.IObjectFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactoryBuilder.cs b/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactoryBuilder.cs index 090ca22dc1..473d6e221c 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactoryBuilder.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/ObjectFactoryBuilder.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region ObjectFactoryBuilder declaration + /// + /// + /// + public partial class ObjectFactoryBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.ObjectFactoryBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ObjectFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectFactoryBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ObjectFactoryBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ObjectFactoryBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IObjectFactoryBuilder /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IObjectFactoryBuilder } #endregion - #region ObjectFactoryBuilder + #region ObjectFactoryBuilder implementation public partial class ObjectFactoryBuilder : Javax.Naming.Spi.IObjectFactoryBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/ResolveResult.cs b/src/net/JNet/Generated/Javax/Naming/Spi/ResolveResult.cs index 9eac8c3127..23d8d81f8f 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/ResolveResult.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/ResolveResult.cs @@ -25,7 +25,52 @@ namespace Javax.Naming.Spi { - #region ResolveResult + #region ResolveResult declaration + /// + /// + /// + public partial class ResolveResult : Java.Io.Serializable + { + const string _bridgeClassName = "javax.naming.spi.ResolveResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ResolveResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ResolveResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ResolveResult implementation public partial class ResolveResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/Resolver.cs b/src/net/JNet/Generated/Javax/Naming/Spi/Resolver.cs index 6d0b67b0b7..7533a35a4e 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/Resolver.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/Resolver.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region Resolver declaration + /// + /// + /// + public partial class Resolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.Resolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Resolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Resolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Resolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Resolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IResolver } #endregion - #region Resolver + #region Resolver implementation public partial class Resolver : Javax.Naming.Spi.IResolver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/Spi/StateFactory.cs b/src/net/JNet/Generated/Javax/Naming/Spi/StateFactory.cs index 587659cf46..f9a23ebbe1 100644 --- a/src/net/JNet/Generated/Javax/Naming/Spi/StateFactory.cs +++ b/src/net/JNet/Generated/Javax/Naming/Spi/StateFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Naming.Spi { + #region StateFactory declaration + /// + /// + /// + public partial class StateFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.naming.spi.StateFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StateFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StateFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StateFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStateFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IStateFactory } #endregion - #region StateFactory + #region StateFactory implementation public partial class StateFactory : Javax.Naming.Spi.IStateFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/StringRefAddr.cs b/src/net/JNet/Generated/Javax/Naming/StringRefAddr.cs index c288fa1347..e609da9995 100644 --- a/src/net/JNet/Generated/Javax/Naming/StringRefAddr.cs +++ b/src/net/JNet/Generated/Javax/Naming/StringRefAddr.cs @@ -25,7 +25,52 @@ namespace Javax.Naming { - #region StringRefAddr + #region StringRefAddr declaration + /// + /// + /// + public partial class StringRefAddr : Javax.Naming.RefAddr + { + const string _bridgeClassName = "javax.naming.StringRefAddr"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringRefAddr() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringRefAddr(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringRefAddr implementation public partial class StringRefAddr { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Naming/TimeLimitExceededException.cs b/src/net/JNet/Generated/Javax/Naming/TimeLimitExceededException.cs index f38193c98c..235e07a097 100644 --- a/src/net/JNet/Generated/Javax/Naming/TimeLimitExceededException.cs +++ b/src/net/JNet/Generated/Javax/Naming/TimeLimitExceededException.cs @@ -25,7 +25,24 @@ namespace Javax.Naming { - #region TimeLimitExceededException + #region TimeLimitExceededException declaration + /// + /// + /// + public partial class TimeLimitExceededException : Javax.Naming.LimitExceededException + { + const string _bridgeClassName = "javax.naming.TimeLimitExceededException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TimeLimitExceededException implementation public partial class TimeLimitExceededException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Net/AllPackageClasses.cs deleted file mode 100644 index 60d95bc821..0000000000 --- a/src/net/JNet/Generated/Javax/Net/AllPackageClasses.cs +++ /dev/null @@ -1,124 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Net -{ - #region ServerSocketFactory - /// - /// - /// - public partial class ServerSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ServerSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ServerSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ServerSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SocketFactory - /// - /// - /// - public partial class SocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.SocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Net/ServerSocketFactory.cs b/src/net/JNet/Generated/Javax/Net/ServerSocketFactory.cs index fa6268873e..7bfb422045 100644 --- a/src/net/JNet/Generated/Javax/Net/ServerSocketFactory.cs +++ b/src/net/JNet/Generated/Javax/Net/ServerSocketFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Net { - #region ServerSocketFactory + #region ServerSocketFactory declaration + /// + /// + /// + public partial class ServerSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ServerSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ServerSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ServerSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServerSocketFactory implementation public partial class ServerSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/SocketFactory.cs b/src/net/JNet/Generated/Javax/Net/SocketFactory.cs index ead50c4c07..7955a6b07f 100644 --- a/src/net/JNet/Generated/Javax/Net/SocketFactory.cs +++ b/src/net/JNet/Generated/Javax/Net/SocketFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Net { - #region SocketFactory + #region SocketFactory declaration + /// + /// + /// + public partial class SocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.SocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SocketFactory implementation public partial class SocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Net/Ssl/AllPackageClasses.cs deleted file mode 100644 index 3135565c9d..0000000000 --- a/src/net/JNet/Generated/Javax/Net/Ssl/AllPackageClasses.cs +++ /dev/null @@ -1,1913 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Net.Ssl -{ - #region CertPathTrustManagerParameters - /// - /// - /// - public partial class CertPathTrustManagerParameters : Javax.Net.Ssl.ManagerFactoryParameters - { - const string _bridgeClassName = "javax.net.ssl.CertPathTrustManagerParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CertPathTrustManagerParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CertPathTrustManagerParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExtendedSSLSession - /// - /// - /// - public partial class ExtendedSSLSession : Javax.Net.Ssl.SSLSession - { - const string _bridgeClassName = "javax.net.ssl.ExtendedSSLSession"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ExtendedSSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExtendedSSLSession() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ExtendedSSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ExtendedSSLSession(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HandshakeCompletedEvent - /// - /// - /// - public partial class HandshakeCompletedEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.net.ssl.HandshakeCompletedEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HandshakeCompletedEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HandshakeCompletedEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HandshakeCompletedListener - /// - /// - /// - public partial class HandshakeCompletedListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HandshakeCompletedListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.net.ssl.HandshakeCompletedListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region HandshakeCompletedListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class HandshakeCompletedListenerDirect : HandshakeCompletedListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.net.ssl.HandshakeCompletedListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region HostnameVerifier - /// - /// - /// - public partial class HostnameVerifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.HostnameVerifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HostnameVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HostnameVerifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HostnameVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HostnameVerifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HttpsURLConnection - /// - /// - /// - public partial class HttpsURLConnection : Java.Net.HttpURLConnection - { - const string _bridgeClassName = "javax.net.ssl.HttpsURLConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HttpsURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpsURLConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HttpsURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HttpsURLConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyManager - /// - /// - /// - public partial class KeyManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.KeyManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyManagerFactory - /// - /// - /// - public partial class KeyManagerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.KeyManagerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyManagerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyManagerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyManagerFactorySpi - /// - /// - /// - public partial class KeyManagerFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.KeyManagerFactorySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyManagerFactorySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyManagerFactorySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyStoreBuilderParameters - /// - /// - /// - public partial class KeyStoreBuilderParameters : Javax.Net.Ssl.ManagerFactoryParameters - { - const string _bridgeClassName = "javax.net.ssl.KeyStoreBuilderParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyStoreBuilderParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyStoreBuilderParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ManagerFactoryParameters - /// - /// - /// - public partial class ManagerFactoryParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.ManagerFactoryParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ManagerFactoryParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ManagerFactoryParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ManagerFactoryParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ManagerFactoryParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SNIHostName - /// - /// - /// - public partial class SNIHostName : Javax.Net.Ssl.SNIServerName - { - const string _bridgeClassName = "javax.net.ssl.SNIHostName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SNIHostName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SNIHostName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SNIMatcher - /// - /// - /// - public partial class SNIMatcher : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SNIMatcher"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SNIMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SNIMatcher() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SNIMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SNIMatcher(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SNIServerName - /// - /// - /// - public partial class SNIServerName : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SNIServerName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SNIServerName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SNIServerName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SNIServerName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SNIServerName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLContext - /// - /// - /// - public partial class SSLContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SSLContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SSLContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLContextSpi - /// - /// - /// - public partial class SSLContextSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLContextSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLContextSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLContextSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLContextSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLContextSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLEngine - /// - /// - /// - public partial class SSLEngine : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLEngine"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLEngine() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLEngine(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLEngineResult - /// - /// - /// - public partial class SSLEngineResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLEngineResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SSLEngineResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SSLEngineResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region HandshakeStatus - /// - /// - /// - public partial class HandshakeStatus : Java.Lang.Enum - { - const string _bridgeClassName = "javax.net.ssl.SSLEngineResult$HandshakeStatus"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HandshakeStatus() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HandshakeStatus(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Status - /// - /// - /// - public partial class Status : Java.Lang.Enum - { - const string _bridgeClassName = "javax.net.ssl.SSLEngineResult$Status"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Status() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Status(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region SSLException - /// - /// - /// - public partial class SSLException : Java.Io.IOException - { - const string _bridgeClassName = "javax.net.ssl.SSLException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SSLHandshakeException - /// - /// - /// - public partial class SSLHandshakeException : Javax.Net.Ssl.SSLException - { - const string _bridgeClassName = "javax.net.ssl.SSLHandshakeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SSLKeyException - /// - /// - /// - public partial class SSLKeyException : Javax.Net.Ssl.SSLException - { - const string _bridgeClassName = "javax.net.ssl.SSLKeyException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SSLParameters - /// - /// - /// - public partial class SSLParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLParameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SSLParameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SSLParameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLPeerUnverifiedException - /// - /// - /// - public partial class SSLPeerUnverifiedException : Javax.Net.Ssl.SSLException - { - const string _bridgeClassName = "javax.net.ssl.SSLPeerUnverifiedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SSLPermission - /// - /// - /// - public partial class SSLPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.net.ssl.SSLPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SSLPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SSLPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLProtocolException - /// - /// - /// - public partial class SSLProtocolException : Javax.Net.Ssl.SSLException - { - const string _bridgeClassName = "javax.net.ssl.SSLProtocolException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SSLServerSocket - /// - /// - /// - public partial class SSLServerSocket : Java.Net.ServerSocket - { - const string _bridgeClassName = "javax.net.ssl.SSLServerSocket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLServerSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLServerSocket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLServerSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLServerSocket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLServerSocketFactory - /// - /// - /// - public partial class SSLServerSocketFactory : Javax.Net.ServerSocketFactory - { - const string _bridgeClassName = "javax.net.ssl.SSLServerSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLServerSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLServerSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLSession - /// - /// - /// - public partial class SSLSession : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLSession"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSession() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSession(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLSessionBindingEvent - /// - /// - /// - public partial class SSLSessionBindingEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.net.ssl.SSLSessionBindingEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SSLSessionBindingEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SSLSessionBindingEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLSessionBindingListener - /// - /// - /// - public partial class SSLSessionBindingListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SSLSessionBindingListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.net.ssl.SSLSessionBindingListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region SSLSessionBindingListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class SSLSessionBindingListenerDirect : SSLSessionBindingListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.net.ssl.SSLSessionBindingListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region SSLSessionContext - /// - /// - /// - public partial class SSLSessionContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.SSLSessionContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLSessionContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSessionContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLSessionContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSessionContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLSocket - /// - /// - /// - public partial class SSLSocket : Java.Net.Socket - { - const string _bridgeClassName = "javax.net.ssl.SSLSocket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSocket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSocket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SSLSocketFactory - /// - /// - /// - public partial class SSLSocketFactory : Javax.Net.SocketFactory - { - const string _bridgeClassName = "javax.net.ssl.SSLSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SSLSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SSLSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SSLSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardConstants - /// - /// - /// - public partial class StandardConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.StandardConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TrustManager - /// - /// - /// - public partial class TrustManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.TrustManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TrustManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TrustManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TrustManagerFactory - /// - /// - /// - public partial class TrustManagerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.TrustManagerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TrustManagerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TrustManagerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TrustManagerFactorySpi - /// - /// - /// - public partial class TrustManagerFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.net.ssl.TrustManagerFactorySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TrustManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TrustManagerFactorySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TrustManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TrustManagerFactorySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509ExtendedKeyManager - /// - /// - /// - public partial class X509ExtendedKeyManager : Javax.Net.Ssl.X509KeyManager - { - const string _bridgeClassName = "javax.net.ssl.X509ExtendedKeyManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509ExtendedKeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509ExtendedKeyManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509ExtendedKeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509ExtendedKeyManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509ExtendedTrustManager - /// - /// - /// - public partial class X509ExtendedTrustManager : Javax.Net.Ssl.X509TrustManager - { - const string _bridgeClassName = "javax.net.ssl.X509ExtendedTrustManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509ExtendedTrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509ExtendedTrustManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509ExtendedTrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509ExtendedTrustManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509KeyManager - /// - /// - /// - public partial class X509KeyManager : Javax.Net.Ssl.KeyManager - { - const string _bridgeClassName = "javax.net.ssl.X509KeyManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509KeyManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509KeyManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509TrustManager - /// - /// - /// - public partial class X509TrustManager : Javax.Net.Ssl.TrustManager - { - const string _bridgeClassName = "javax.net.ssl.X509TrustManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509TrustManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509TrustManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/CertPathTrustManagerParameters.cs b/src/net/JNet/Generated/Javax/Net/Ssl/CertPathTrustManagerParameters.cs index 6f4267996e..c6954a10d1 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/CertPathTrustManagerParameters.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/CertPathTrustManagerParameters.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region CertPathTrustManagerParameters + #region CertPathTrustManagerParameters declaration + /// + /// + /// + public partial class CertPathTrustManagerParameters : Javax.Net.Ssl.ManagerFactoryParameters + { + const string _bridgeClassName = "javax.net.ssl.CertPathTrustManagerParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CertPathTrustManagerParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CertPathTrustManagerParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CertPathTrustManagerParameters implementation public partial class CertPathTrustManagerParameters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/ExtendedSSLSession.cs b/src/net/JNet/Generated/Javax/Net/Ssl/ExtendedSSLSession.cs index 2257dfe736..48a40d415b 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/ExtendedSSLSession.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/ExtendedSSLSession.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region ExtendedSSLSession + #region ExtendedSSLSession declaration + /// + /// + /// + public partial class ExtendedSSLSession : Javax.Net.Ssl.SSLSession + { + const string _bridgeClassName = "javax.net.ssl.ExtendedSSLSession"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ExtendedSSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExtendedSSLSession() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ExtendedSSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ExtendedSSLSession(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExtendedSSLSession implementation public partial class ExtendedSSLSession { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedEvent.cs b/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedEvent.cs index bf35a6747c..eff88e34b8 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedEvent.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region HandshakeCompletedEvent + #region HandshakeCompletedEvent declaration + /// + /// + /// + public partial class HandshakeCompletedEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.net.ssl.HandshakeCompletedEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HandshakeCompletedEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HandshakeCompletedEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HandshakeCompletedEvent implementation public partial class HandshakeCompletedEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedListener.cs b/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedListener.cs index a5157dd8e9..953320c1a3 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedListener.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/HandshakeCompletedListener.cs @@ -25,6 +25,73 @@ namespace Javax.Net.Ssl { + #region HandshakeCompletedListener declaration + /// + /// + /// + public partial class HandshakeCompletedListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HandshakeCompletedListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.net.ssl.HandshakeCompletedListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region HandshakeCompletedListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class HandshakeCompletedListenerDirect : HandshakeCompletedListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.net.ssl.HandshakeCompletedListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IHandshakeCompletedListener /// /// .NET interface for org.mases.jnet.generated.javax.net.ssl.HandshakeCompletedListener implementing @@ -48,7 +115,7 @@ public partial interface IHandshakeCompletedListener } #endregion - #region HandshakeCompletedListener + #region HandshakeCompletedListener implementation public partial class HandshakeCompletedListener : Javax.Net.Ssl.IHandshakeCompletedListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void HandshakeCompleted(Javax.Net.Ssl.HandshakeCompletedEvent arg } #endregion - #region HandshakeCompletedListenerDirect + #region HandshakeCompletedListenerDirect implementation public partial class HandshakeCompletedListenerDirect : Javax.Net.Ssl.IHandshakeCompletedListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/HostnameVerifier.cs b/src/net/JNet/Generated/Javax/Net/Ssl/HostnameVerifier.cs index 001b72d3f9..f3cbf4197f 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/HostnameVerifier.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/HostnameVerifier.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region HostnameVerifier declaration + /// + /// + /// + public partial class HostnameVerifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.HostnameVerifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HostnameVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HostnameVerifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HostnameVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HostnameVerifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHostnameVerifier /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IHostnameVerifier } #endregion - #region HostnameVerifier + #region HostnameVerifier implementation public partial class HostnameVerifier : Javax.Net.Ssl.IHostnameVerifier { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/HttpsURLConnection.cs b/src/net/JNet/Generated/Javax/Net/Ssl/HttpsURLConnection.cs index e0628edef4..71a1229dc1 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/HttpsURLConnection.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/HttpsURLConnection.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region HttpsURLConnection + #region HttpsURLConnection declaration + /// + /// + /// + public partial class HttpsURLConnection : Java.Net.HttpURLConnection + { + const string _bridgeClassName = "javax.net.ssl.HttpsURLConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HttpsURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpsURLConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HttpsURLConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HttpsURLConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HttpsURLConnection implementation public partial class HttpsURLConnection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/KeyManager.cs b/src/net/JNet/Generated/Javax/Net/Ssl/KeyManager.cs index 6b678ca400..94f46adc29 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/KeyManager.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/KeyManager.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region KeyManager declaration + /// + /// + /// + public partial class KeyManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.KeyManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeyManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IKeyManager } #endregion - #region KeyManager + #region KeyManager implementation public partial class KeyManager : Javax.Net.Ssl.IKeyManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactory.cs b/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactory.cs index 9fa0acbdd4..c64ef3d4f5 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactory.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region KeyManagerFactory + #region KeyManagerFactory declaration + /// + /// + /// + public partial class KeyManagerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.KeyManagerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyManagerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyManagerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyManagerFactory implementation public partial class KeyManagerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactorySpi.cs b/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactorySpi.cs index e02d6f19b1..57db9f4a36 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactorySpi.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/KeyManagerFactorySpi.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region KeyManagerFactorySpi + #region KeyManagerFactorySpi declaration + /// + /// + /// + public partial class KeyManagerFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.KeyManagerFactorySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyManagerFactorySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyManagerFactorySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyManagerFactorySpi implementation public partial class KeyManagerFactorySpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/KeyStoreBuilderParameters.cs b/src/net/JNet/Generated/Javax/Net/Ssl/KeyStoreBuilderParameters.cs index 03953bc8d3..b3a57f6c94 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/KeyStoreBuilderParameters.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/KeyStoreBuilderParameters.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region KeyStoreBuilderParameters + #region KeyStoreBuilderParameters declaration + /// + /// + /// + public partial class KeyStoreBuilderParameters : Javax.Net.Ssl.ManagerFactoryParameters + { + const string _bridgeClassName = "javax.net.ssl.KeyStoreBuilderParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyStoreBuilderParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyStoreBuilderParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyStoreBuilderParameters implementation public partial class KeyStoreBuilderParameters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/ManagerFactoryParameters.cs b/src/net/JNet/Generated/Javax/Net/Ssl/ManagerFactoryParameters.cs index 47bd6d637c..653b73e88d 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/ManagerFactoryParameters.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/ManagerFactoryParameters.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region ManagerFactoryParameters declaration + /// + /// + /// + public partial class ManagerFactoryParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.ManagerFactoryParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ManagerFactoryParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ManagerFactoryParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ManagerFactoryParameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ManagerFactoryParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IManagerFactoryParameters /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IManagerFactoryParameters } #endregion - #region ManagerFactoryParameters + #region ManagerFactoryParameters implementation public partial class ManagerFactoryParameters : Javax.Net.Ssl.IManagerFactoryParameters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SNIHostName.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SNIHostName.cs index 4344c18271..2c78003aff 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SNIHostName.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SNIHostName.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region SNIHostName + #region SNIHostName declaration + /// + /// + /// + public partial class SNIHostName : Javax.Net.Ssl.SNIServerName + { + const string _bridgeClassName = "javax.net.ssl.SNIHostName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SNIHostName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SNIHostName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SNIHostName implementation public partial class SNIHostName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SNIMatcher.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SNIMatcher.cs index 5dabffee4e..12fb704054 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SNIMatcher.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SNIMatcher.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SNIMatcher + #region SNIMatcher declaration + /// + /// + /// + public partial class SNIMatcher : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SNIMatcher"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SNIMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SNIMatcher() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SNIMatcher class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SNIMatcher(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SNIMatcher implementation public partial class SNIMatcher { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SNIServerName.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SNIServerName.cs index 2dc1cc9def..ee264042f5 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SNIServerName.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SNIServerName.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SNIServerName + #region SNIServerName declaration + /// + /// + /// + public partial class SNIServerName : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SNIServerName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SNIServerName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SNIServerName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SNIServerName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SNIServerName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SNIServerName implementation public partial class SNIServerName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLContext.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLContext.cs index 07db3884df..6fa122c90d 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLContext.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLContext.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region SSLContext + #region SSLContext declaration + /// + /// + /// + public partial class SSLContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SSLContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SSLContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLContext implementation public partial class SSLContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLContextSpi.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLContextSpi.cs index d3456bf423..26f72ae450 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLContextSpi.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLContextSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SSLContextSpi + #region SSLContextSpi declaration + /// + /// + /// + public partial class SSLContextSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLContextSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLContextSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLContextSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLContextSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLContextSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLContextSpi implementation public partial class SSLContextSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngine.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngine.cs index e724373cea..25dc09a0c3 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngine.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngine.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SSLEngine + #region SSLEngine declaration + /// + /// + /// + public partial class SSLEngine : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLEngine"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLEngine() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLEngine(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLEngine implementation public partial class SSLEngine { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngineResult.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngineResult.cs index d1d6e2d860..cf6f0092a6 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngineResult.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLEngineResult.cs @@ -25,7 +25,142 @@ namespace Javax.Net.Ssl { - #region SSLEngineResult + #region SSLEngineResult declaration + /// + /// + /// + public partial class SSLEngineResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLEngineResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SSLEngineResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SSLEngineResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region HandshakeStatus declaration + /// + /// + /// + public partial class HandshakeStatus : Java.Lang.Enum + { + const string _bridgeClassName = "javax.net.ssl.SSLEngineResult$HandshakeStatus"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HandshakeStatus() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HandshakeStatus(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Status declaration + /// + /// + /// + public partial class Status : Java.Lang.Enum + { + const string _bridgeClassName = "javax.net.ssl.SSLEngineResult$Status"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Status() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Status(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region SSLEngineResult implementation public partial class SSLEngineResult { #region Constructors @@ -110,7 +245,7 @@ public long SequenceNumber() #endregion #region Nested classes - #region HandshakeStatus + #region HandshakeStatus implementation public partial class HandshakeStatus { #region Constructors @@ -194,7 +329,7 @@ public static Javax.Net.Ssl.SSLEngineResult.HandshakeStatus[] Values() } #endregion - #region Status + #region Status implementation public partial class Status { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLException.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLException.cs index 3aa0c59c97..f71cd97031 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLException.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLException.cs @@ -25,7 +25,24 @@ namespace Javax.Net.Ssl { - #region SSLException + #region SSLException declaration + /// + /// + /// + public partial class SSLException : Java.Io.IOException + { + const string _bridgeClassName = "javax.net.ssl.SSLException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SSLException implementation public partial class SSLException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLHandshakeException.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLHandshakeException.cs index 656d8f7c1a..aecb04b67c 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLHandshakeException.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLHandshakeException.cs @@ -25,7 +25,24 @@ namespace Javax.Net.Ssl { - #region SSLHandshakeException + #region SSLHandshakeException declaration + /// + /// + /// + public partial class SSLHandshakeException : Javax.Net.Ssl.SSLException + { + const string _bridgeClassName = "javax.net.ssl.SSLHandshakeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SSLHandshakeException implementation public partial class SSLHandshakeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLKeyException.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLKeyException.cs index 5549ec5a32..ea3abbb737 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLKeyException.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLKeyException.cs @@ -25,7 +25,24 @@ namespace Javax.Net.Ssl { - #region SSLKeyException + #region SSLKeyException declaration + /// + /// + /// + public partial class SSLKeyException : Javax.Net.Ssl.SSLException + { + const string _bridgeClassName = "javax.net.ssl.SSLKeyException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SSLKeyException implementation public partial class SSLKeyException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLParameters.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLParameters.cs index aafa0ca00e..eaf99bb093 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLParameters.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLParameters.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region SSLParameters + #region SSLParameters declaration + /// + /// + /// + public partial class SSLParameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLParameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SSLParameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SSLParameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLParameters implementation public partial class SSLParameters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLPeerUnverifiedException.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLPeerUnverifiedException.cs index 1477d6cc01..d5c28b68b7 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLPeerUnverifiedException.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLPeerUnverifiedException.cs @@ -25,7 +25,24 @@ namespace Javax.Net.Ssl { - #region SSLPeerUnverifiedException + #region SSLPeerUnverifiedException declaration + /// + /// + /// + public partial class SSLPeerUnverifiedException : Javax.Net.Ssl.SSLException + { + const string _bridgeClassName = "javax.net.ssl.SSLPeerUnverifiedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SSLPeerUnverifiedException implementation public partial class SSLPeerUnverifiedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLPermission.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLPermission.cs index 189e4ff3bf..4249ce75ba 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLPermission.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region SSLPermission + #region SSLPermission declaration + /// + /// + /// + public partial class SSLPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.net.ssl.SSLPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SSLPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SSLPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLPermission implementation public partial class SSLPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLProtocolException.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLProtocolException.cs index 0650eb337b..93e0dbdb84 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLProtocolException.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLProtocolException.cs @@ -25,7 +25,24 @@ namespace Javax.Net.Ssl { - #region SSLProtocolException + #region SSLProtocolException declaration + /// + /// + /// + public partial class SSLProtocolException : Javax.Net.Ssl.SSLException + { + const string _bridgeClassName = "javax.net.ssl.SSLProtocolException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SSLProtocolException implementation public partial class SSLProtocolException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocket.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocket.cs index d51d801e41..96a2a375ae 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocket.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocket.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SSLServerSocket + #region SSLServerSocket declaration + /// + /// + /// + public partial class SSLServerSocket : Java.Net.ServerSocket + { + const string _bridgeClassName = "javax.net.ssl.SSLServerSocket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLServerSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLServerSocket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLServerSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLServerSocket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLServerSocket implementation public partial class SSLServerSocket { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocketFactory.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocketFactory.cs index 741ae3cc77..488cd7c235 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocketFactory.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLServerSocketFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SSLServerSocketFactory + #region SSLServerSocketFactory declaration + /// + /// + /// + public partial class SSLServerSocketFactory : Javax.Net.ServerSocketFactory + { + const string _bridgeClassName = "javax.net.ssl.SSLServerSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLServerSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLServerSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLServerSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLServerSocketFactory implementation public partial class SSLServerSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSession.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSession.cs index d78b4095f9..8adc1095b3 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSession.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSession.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region SSLSession declaration + /// + /// + /// + public partial class SSLSession : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLSession"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSession() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLSession class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSession(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISSLSession /// /// .NET interface for TO BE DEFINED FROM USER @@ -129,7 +176,7 @@ public partial interface ISSLSession } #endregion - #region SSLSession + #region SSLSession implementation public partial class SSLSession : Javax.Net.Ssl.ISSLSession { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingEvent.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingEvent.cs index 88965b19a2..67b752e246 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingEvent.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region SSLSessionBindingEvent + #region SSLSessionBindingEvent declaration + /// + /// + /// + public partial class SSLSessionBindingEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.net.ssl.SSLSessionBindingEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SSLSessionBindingEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SSLSessionBindingEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLSessionBindingEvent implementation public partial class SSLSessionBindingEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingListener.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingListener.cs index f797ae1682..e6fc32b0f7 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingListener.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionBindingListener.cs @@ -25,6 +25,73 @@ namespace Javax.Net.Ssl { + #region SSLSessionBindingListener declaration + /// + /// + /// + public partial class SSLSessionBindingListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SSLSessionBindingListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.net.ssl.SSLSessionBindingListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region SSLSessionBindingListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class SSLSessionBindingListenerDirect : SSLSessionBindingListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.net.ssl.SSLSessionBindingListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ISSLSessionBindingListener /// /// .NET interface for org.mases.jnet.generated.javax.net.ssl.SSLSessionBindingListener implementing @@ -53,7 +120,7 @@ public partial interface ISSLSessionBindingListener } #endregion - #region SSLSessionBindingListener + #region SSLSessionBindingListener implementation public partial class SSLSessionBindingListener : Javax.Net.Ssl.ISSLSessionBindingListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ValueUnbound(Javax.Net.Ssl.SSLSessionBindingEvent arg0) } #endregion - #region SSLSessionBindingListenerDirect + #region SSLSessionBindingListenerDirect implementation public partial class SSLSessionBindingListenerDirect : Javax.Net.Ssl.ISSLSessionBindingListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionContext.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionContext.cs index a76c483d7a..94a7bf80ad 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionContext.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSessionContext.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region SSLSessionContext declaration + /// + /// + /// + public partial class SSLSessionContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.SSLSessionContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLSessionContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSessionContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLSessionContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSessionContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISSLSessionContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface ISSLSessionContext } #endregion - #region SSLSessionContext + #region SSLSessionContext implementation public partial class SSLSessionContext : Javax.Net.Ssl.ISSLSessionContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocket.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocket.cs index 1ec6c376bb..5b96562a7f 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocket.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocket.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SSLSocket + #region SSLSocket declaration + /// + /// + /// + public partial class SSLSocket : Java.Net.Socket + { + const string _bridgeClassName = "javax.net.ssl.SSLSocket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSocket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSocket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLSocket implementation public partial class SSLSocket { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocketFactory.cs b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocketFactory.cs index 119730c0e7..3112b58a58 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocketFactory.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/SSLSocketFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region SSLSocketFactory + #region SSLSocketFactory declaration + /// + /// + /// + public partial class SSLSocketFactory : Javax.Net.SocketFactory + { + const string _bridgeClassName = "javax.net.ssl.SSLSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SSLSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SSLSocketFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SSLSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SSLSocketFactory implementation public partial class SSLSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/StandardConstants.cs b/src/net/JNet/Generated/Javax/Net/Ssl/StandardConstants.cs index 1eb7416a41..2edb2d0909 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/StandardConstants.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/StandardConstants.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region StandardConstants + #region StandardConstants declaration + /// + /// + /// + public partial class StandardConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.StandardConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardConstants implementation public partial class StandardConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/TrustManager.cs b/src/net/JNet/Generated/Javax/Net/Ssl/TrustManager.cs index ece2e404a0..75e56915d9 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/TrustManager.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/TrustManager.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region TrustManager declaration + /// + /// + /// + public partial class TrustManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.TrustManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TrustManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TrustManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITrustManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ITrustManager } #endregion - #region TrustManager + #region TrustManager implementation public partial class TrustManager : Javax.Net.Ssl.ITrustManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactory.cs b/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactory.cs index 1b14c3c0f6..66c581e727 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactory.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Net.Ssl { - #region TrustManagerFactory + #region TrustManagerFactory declaration + /// + /// + /// + public partial class TrustManagerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.TrustManagerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TrustManagerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TrustManagerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TrustManagerFactory implementation public partial class TrustManagerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactorySpi.cs b/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactorySpi.cs index 92871496c1..387f03070e 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactorySpi.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/TrustManagerFactorySpi.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region TrustManagerFactorySpi + #region TrustManagerFactorySpi declaration + /// + /// + /// + public partial class TrustManagerFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.net.ssl.TrustManagerFactorySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TrustManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TrustManagerFactorySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TrustManagerFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TrustManagerFactorySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TrustManagerFactorySpi implementation public partial class TrustManagerFactorySpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedKeyManager.cs b/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedKeyManager.cs index 6be830ccdc..d8481ec7e0 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedKeyManager.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedKeyManager.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region X509ExtendedKeyManager + #region X509ExtendedKeyManager declaration + /// + /// + /// + public partial class X509ExtendedKeyManager : Javax.Net.Ssl.X509KeyManager + { + const string _bridgeClassName = "javax.net.ssl.X509ExtendedKeyManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509ExtendedKeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509ExtendedKeyManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509ExtendedKeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509ExtendedKeyManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509ExtendedKeyManager implementation public partial class X509ExtendedKeyManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedTrustManager.cs b/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedTrustManager.cs index 0577615562..ba6aac7c63 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedTrustManager.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/X509ExtendedTrustManager.cs @@ -25,7 +25,54 @@ namespace Javax.Net.Ssl { - #region X509ExtendedTrustManager + #region X509ExtendedTrustManager declaration + /// + /// + /// + public partial class X509ExtendedTrustManager : Javax.Net.Ssl.X509TrustManager + { + const string _bridgeClassName = "javax.net.ssl.X509ExtendedTrustManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509ExtendedTrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509ExtendedTrustManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509ExtendedTrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509ExtendedTrustManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X509ExtendedTrustManager implementation public partial class X509ExtendedTrustManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/X509KeyManager.cs b/src/net/JNet/Generated/Javax/Net/Ssl/X509KeyManager.cs index 126a340879..fdb3f75d8a 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/X509KeyManager.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/X509KeyManager.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region X509KeyManager declaration + /// + /// + /// + public partial class X509KeyManager : Javax.Net.Ssl.KeyManager + { + const string _bridgeClassName = "javax.net.ssl.X509KeyManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509KeyManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509KeyManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509KeyManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IX509KeyManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -85,7 +132,7 @@ public partial interface IX509KeyManager : Javax.Net.Ssl.IKeyManager } #endregion - #region X509KeyManager + #region X509KeyManager implementation public partial class X509KeyManager : Javax.Net.Ssl.IX509KeyManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Net/Ssl/X509TrustManager.cs b/src/net/JNet/Generated/Javax/Net/Ssl/X509TrustManager.cs index 4919a53efb..fd648761d8 100644 --- a/src/net/JNet/Generated/Javax/Net/Ssl/X509TrustManager.cs +++ b/src/net/JNet/Generated/Javax/Net/Ssl/X509TrustManager.cs @@ -25,6 +25,53 @@ namespace Javax.Net.Ssl { + #region X509TrustManager declaration + /// + /// + /// + public partial class X509TrustManager : Javax.Net.Ssl.TrustManager + { + const string _bridgeClassName = "javax.net.ssl.X509TrustManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509TrustManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509TrustManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509TrustManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IX509TrustManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IX509TrustManager : Javax.Net.Ssl.ITrustManager } #endregion - #region X509TrustManager + #region X509TrustManager implementation public partial class X509TrustManager : Javax.Net.Ssl.IX509TrustManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Print/AllPackageClasses.cs deleted file mode 100644 index 7fc5204ece..0000000000 --- a/src/net/JNet/Generated/Javax/Print/AllPackageClasses.cs +++ /dev/null @@ -1,1155 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Print -{ - #region AttributeException - /// - /// - /// - public partial class AttributeException : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.AttributeException"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AttributeException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeException() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AttributeException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeException(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CancelablePrintJob - /// - /// - /// - public partial class CancelablePrintJob : Javax.Print.DocPrintJob - { - const string _bridgeClassName = "javax.print.CancelablePrintJob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CancelablePrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CancelablePrintJob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CancelablePrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CancelablePrintJob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Doc - /// - /// - /// - public partial class Doc : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.Doc"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Doc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Doc() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Doc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Doc(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocFlavor - /// - /// - /// - public partial class DocFlavor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.DocFlavor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DocFlavor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DocFlavor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BYTE_ARRAY - /// - /// - /// - public partial class BYTE_ARRAY : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$BYTE_ARRAY"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BYTE_ARRAY() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BYTE_ARRAY(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CHAR_ARRAY - /// - /// - /// - public partial class CHAR_ARRAY : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$CHAR_ARRAY"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CHAR_ARRAY() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CHAR_ARRAY(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region INPUT_STREAM - /// - /// - /// - public partial class INPUT_STREAM : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$INPUT_STREAM"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public INPUT_STREAM() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public INPUT_STREAM(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region READER - /// - /// - /// - public partial class READER : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$READER"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public READER() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public READER(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SERVICE_FORMATTED - /// - /// - /// - public partial class SERVICE_FORMATTED : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$SERVICE_FORMATTED"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SERVICE_FORMATTED() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SERVICE_FORMATTED(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region STRING - /// - /// - /// - public partial class STRING : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$STRING"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public STRING() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public STRING(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region URL - /// - /// - /// - public partial class URL : Javax.Print.DocFlavor - { - const string _bridgeClassName = "javax.print.DocFlavor$URL"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public URL() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public URL(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DocPrintJob - /// - /// - /// - public partial class DocPrintJob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.DocPrintJob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocPrintJob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocPrintJob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FlavorException - /// - /// - /// - public partial class FlavorException : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.FlavorException"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FlavorException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlavorException() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FlavorException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlavorException(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiDoc - /// - /// - /// - public partial class MultiDoc : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.MultiDoc"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MultiDoc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiDoc() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MultiDoc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiDoc(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiDocPrintJob - /// - /// - /// - public partial class MultiDocPrintJob : Javax.Print.DocPrintJob - { - const string _bridgeClassName = "javax.print.MultiDocPrintJob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MultiDocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiDocPrintJob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MultiDocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiDocPrintJob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiDocPrintService - /// - /// - /// - public partial class MultiDocPrintService : Javax.Print.PrintService - { - const string _bridgeClassName = "javax.print.MultiDocPrintService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MultiDocPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiDocPrintService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MultiDocPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MultiDocPrintService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintException - /// - /// - /// - public partial class PrintException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.print.PrintException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PrintService - /// - /// - /// - public partial class PrintService : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.PrintService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintServiceLookup - /// - /// - /// - public partial class PrintServiceLookup : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.PrintServiceLookup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintServiceLookup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintServiceLookup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintServiceLookup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintServiceLookup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServiceUI - /// - /// - /// - public partial class ServiceUI : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.ServiceUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ServiceUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ServiceUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServiceUIFactory - /// - /// - /// - public partial class ServiceUIFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.ServiceUIFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ServiceUIFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ServiceUIFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ServiceUIFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ServiceUIFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleDoc - /// - /// - /// - public partial class SimpleDoc : Javax.Print.Doc - { - const string _bridgeClassName = "javax.print.SimpleDoc"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleDoc() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleDoc(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamPrintService - /// - /// - /// - public partial class StreamPrintService : Javax.Print.PrintService - { - const string _bridgeClassName = "javax.print.StreamPrintService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StreamPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StreamPrintService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StreamPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StreamPrintService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamPrintServiceFactory - /// - /// - /// - public partial class StreamPrintServiceFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.StreamPrintServiceFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StreamPrintServiceFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StreamPrintServiceFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StreamPrintServiceFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StreamPrintServiceFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URIException - /// - /// - /// - public partial class URIException : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.URIException"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URIException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIException() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URIException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIException(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Print/Attribute/AllPackageClasses.cs deleted file mode 100644 index 22b3a53a92..0000000000 --- a/src/net/JNet/Generated/Javax/Print/Attribute/AllPackageClasses.cs +++ /dev/null @@ -1,1210 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Print.Attribute -{ - #region Attribute - /// - /// - /// - public partial class Attribute : Java.Io.Serializable - { - const string _bridgeClassName = "javax.print.attribute.Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeSet - /// - /// - /// - public partial class AttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.AttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeSetUtilities - /// - /// - /// - public partial class AttributeSetUtilities : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.AttributeSetUtilities"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeSetUtilities() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeSetUtilities(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeSyntax - /// - /// - /// - public partial class DateTimeSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.DateTimeSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DateTimeSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateTimeSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DateTimeSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DateTimeSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocAttribute - /// - /// - /// - public partial class DocAttribute : Javax.Print.Attribute.Attribute - { - const string _bridgeClassName = "javax.print.attribute.DocAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocAttributeSet - /// - /// - /// - public partial class DocAttributeSet : Javax.Print.Attribute.AttributeSet - { - const string _bridgeClassName = "javax.print.attribute.DocAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EnumSyntax - /// - /// - /// - public partial class EnumSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.EnumSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EnumSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EnumSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashAttributeSet - /// - /// - /// - public partial class HashAttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.HashAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashDocAttributeSet - /// - /// - /// - public partial class HashDocAttributeSet : Javax.Print.Attribute.HashAttributeSet - { - const string _bridgeClassName = "javax.print.attribute.HashDocAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashDocAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashDocAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashPrintJobAttributeSet - /// - /// - /// - public partial class HashPrintJobAttributeSet : Javax.Print.Attribute.HashAttributeSet - { - const string _bridgeClassName = "javax.print.attribute.HashPrintJobAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashPrintJobAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashPrintJobAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashPrintRequestAttributeSet - /// - /// - /// - public partial class HashPrintRequestAttributeSet : Javax.Print.Attribute.HashAttributeSet - { - const string _bridgeClassName = "javax.print.attribute.HashPrintRequestAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashPrintRequestAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashPrintRequestAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HashPrintServiceAttributeSet - /// - /// - /// - public partial class HashPrintServiceAttributeSet : Javax.Print.Attribute.HashAttributeSet - { - const string _bridgeClassName = "javax.print.attribute.HashPrintServiceAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HashPrintServiceAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HashPrintServiceAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IntegerSyntax - /// - /// - /// - public partial class IntegerSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.IntegerSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("IntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntegerSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("IntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public IntegerSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintJobAttribute - /// - /// - /// - public partial class PrintJobAttribute : Javax.Print.Attribute.Attribute - { - const string _bridgeClassName = "javax.print.attribute.PrintJobAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintJobAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintJobAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintJobAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintJobAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintJobAttributeSet - /// - /// - /// - public partial class PrintJobAttributeSet : Javax.Print.Attribute.AttributeSet - { - const string _bridgeClassName = "javax.print.attribute.PrintJobAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintJobAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintJobAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintJobAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintJobAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintRequestAttribute - /// - /// - /// - public partial class PrintRequestAttribute : Javax.Print.Attribute.Attribute - { - const string _bridgeClassName = "javax.print.attribute.PrintRequestAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintRequestAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintRequestAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintRequestAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintRequestAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintRequestAttributeSet - /// - /// - /// - public partial class PrintRequestAttributeSet : Javax.Print.Attribute.AttributeSet - { - const string _bridgeClassName = "javax.print.attribute.PrintRequestAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintRequestAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintRequestAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintRequestAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintRequestAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintServiceAttribute - /// - /// - /// - public partial class PrintServiceAttribute : Javax.Print.Attribute.Attribute - { - const string _bridgeClassName = "javax.print.attribute.PrintServiceAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintServiceAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintServiceAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintServiceAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintServiceAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintServiceAttributeSet - /// - /// - /// - public partial class PrintServiceAttributeSet : Javax.Print.Attribute.AttributeSet - { - const string _bridgeClassName = "javax.print.attribute.PrintServiceAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PrintServiceAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintServiceAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PrintServiceAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PrintServiceAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResolutionSyntax - /// - /// - /// - public partial class ResolutionSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.ResolutionSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ResolutionSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResolutionSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ResolutionSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ResolutionSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SetOfIntegerSyntax - /// - /// - /// - public partial class SetOfIntegerSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.SetOfIntegerSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SetOfIntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SetOfIntegerSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SetOfIntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SetOfIntegerSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Size2DSyntax - /// - /// - /// - public partial class Size2DSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.Size2DSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Size2DSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Size2DSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Size2DSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Size2DSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SupportedValuesAttribute - /// - /// - /// - public partial class SupportedValuesAttribute : Javax.Print.Attribute.Attribute - { - const string _bridgeClassName = "javax.print.attribute.SupportedValuesAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SupportedValuesAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedValuesAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SupportedValuesAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SupportedValuesAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextSyntax - /// - /// - /// - public partial class TextSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.TextSyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TextSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TextSyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TextSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TextSyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnmodifiableSetException - /// - /// - /// - public partial class UnmodifiableSetException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.print.attribute.UnmodifiableSetException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region URISyntax - /// - /// - /// - public partial class URISyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.URISyntax"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URISyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URISyntax() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URISyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URISyntax(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Attribute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Attribute.cs index ef2ef7b4ad..2c3ef04cc4 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Attribute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Attribute.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region Attribute declaration + /// + /// + /// + public partial class Attribute : Java.Io.Serializable + { + const string _bridgeClassName = "javax.print.attribute.Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAttribute : Java.Io.ISerializable } #endregion - #region Attribute + #region Attribute implementation public partial class Attribute : Javax.Print.Attribute.IAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSet.cs index 8afa843a27..413370cee4 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSet.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region AttributeSet declaration + /// + /// + /// + public partial class AttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.AttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -104,7 +151,7 @@ public partial interface IAttributeSet } #endregion - #region AttributeSet + #region AttributeSet implementation public partial class AttributeSet : Javax.Print.Attribute.IAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSetUtilities.cs b/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSetUtilities.cs index d04b81050b..0ee091f694 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSetUtilities.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/AttributeSetUtilities.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute { - #region AttributeSetUtilities + #region AttributeSetUtilities declaration + /// + /// + /// + public partial class AttributeSetUtilities : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.AttributeSetUtilities"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeSetUtilities() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeSetUtilities(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeSetUtilities implementation public partial class AttributeSetUtilities { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/DateTimeSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/DateTimeSyntax.cs index c933859261..421620dbb7 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/DateTimeSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/DateTimeSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region DateTimeSyntax + #region DateTimeSyntax declaration + /// + /// + /// + public partial class DateTimeSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.DateTimeSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DateTimeSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateTimeSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DateTimeSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DateTimeSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateTimeSyntax implementation public partial class DateTimeSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/DocAttribute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/DocAttribute.cs index c289f4c897..59a4841002 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/DocAttribute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/DocAttribute.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region DocAttribute declaration + /// + /// + /// + public partial class DocAttribute : Javax.Print.Attribute.Attribute + { + const string _bridgeClassName = "javax.print.attribute.DocAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IDocAttribute : Javax.Print.Attribute.IAttribute } #endregion - #region DocAttribute + #region DocAttribute implementation public partial class DocAttribute : Javax.Print.Attribute.IDocAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/DocAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/DocAttributeSet.cs index 499bff94ba..546aedb720 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/DocAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/DocAttributeSet.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region DocAttributeSet declaration + /// + /// + /// + public partial class DocAttributeSet : Javax.Print.Attribute.AttributeSet + { + const string _bridgeClassName = "javax.print.attribute.DocAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IDocAttributeSet : Javax.Print.Attribute.IAttributeSet } #endregion - #region DocAttributeSet + #region DocAttributeSet implementation public partial class DocAttributeSet : Javax.Print.Attribute.IDocAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/EnumSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/EnumSyntax.cs index aecad74208..2bca60bae9 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/EnumSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/EnumSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region EnumSyntax + #region EnumSyntax declaration + /// + /// + /// + public partial class EnumSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.EnumSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EnumSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EnumSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EnumSyntax implementation public partial class EnumSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/HashAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/HashAttributeSet.cs index b56015c863..af07b9cb2a 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/HashAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/HashAttributeSet.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute { - #region HashAttributeSet + #region HashAttributeSet declaration + /// + /// + /// + public partial class HashAttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.HashAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashAttributeSet implementation public partial class HashAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/HashDocAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/HashDocAttributeSet.cs index 1f714b352a..46945f0bff 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/HashDocAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/HashDocAttributeSet.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute { - #region HashDocAttributeSet + #region HashDocAttributeSet declaration + /// + /// + /// + public partial class HashDocAttributeSet : Javax.Print.Attribute.HashAttributeSet + { + const string _bridgeClassName = "javax.print.attribute.HashDocAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashDocAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashDocAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashDocAttributeSet implementation public partial class HashDocAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintJobAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintJobAttributeSet.cs index 2e2fa2e075..e6f974162e 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintJobAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintJobAttributeSet.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute { - #region HashPrintJobAttributeSet + #region HashPrintJobAttributeSet declaration + /// + /// + /// + public partial class HashPrintJobAttributeSet : Javax.Print.Attribute.HashAttributeSet + { + const string _bridgeClassName = "javax.print.attribute.HashPrintJobAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashPrintJobAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashPrintJobAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashPrintJobAttributeSet implementation public partial class HashPrintJobAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintRequestAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintRequestAttributeSet.cs index dcfa48908d..609512592c 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintRequestAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintRequestAttributeSet.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute { - #region HashPrintRequestAttributeSet + #region HashPrintRequestAttributeSet declaration + /// + /// + /// + public partial class HashPrintRequestAttributeSet : Javax.Print.Attribute.HashAttributeSet + { + const string _bridgeClassName = "javax.print.attribute.HashPrintRequestAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashPrintRequestAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashPrintRequestAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashPrintRequestAttributeSet implementation public partial class HashPrintRequestAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintServiceAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintServiceAttributeSet.cs index 850427d279..9151e763a9 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintServiceAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/HashPrintServiceAttributeSet.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute { - #region HashPrintServiceAttributeSet + #region HashPrintServiceAttributeSet declaration + /// + /// + /// + public partial class HashPrintServiceAttributeSet : Javax.Print.Attribute.HashAttributeSet + { + const string _bridgeClassName = "javax.print.attribute.HashPrintServiceAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HashPrintServiceAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HashPrintServiceAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HashPrintServiceAttributeSet implementation public partial class HashPrintServiceAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/IntegerSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/IntegerSyntax.cs index 1f6b1539f6..a6613a5056 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/IntegerSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/IntegerSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region IntegerSyntax + #region IntegerSyntax declaration + /// + /// + /// + public partial class IntegerSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.IntegerSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("IntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntegerSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("IntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public IntegerSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IntegerSyntax implementation public partial class IntegerSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttribute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttribute.cs index ffcb1c8537..f42042a5a0 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttribute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttribute.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region PrintJobAttribute declaration + /// + /// + /// + public partial class PrintJobAttribute : Javax.Print.Attribute.Attribute + { + const string _bridgeClassName = "javax.print.attribute.PrintJobAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintJobAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintJobAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintJobAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintJobAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintJobAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPrintJobAttribute : Javax.Print.Attribute.IAttribute } #endregion - #region PrintJobAttribute + #region PrintJobAttribute implementation public partial class PrintJobAttribute : Javax.Print.Attribute.IPrintJobAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttributeSet.cs index 57197f62e5..d4769dd2e5 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/PrintJobAttributeSet.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region PrintJobAttributeSet declaration + /// + /// + /// + public partial class PrintJobAttributeSet : Javax.Print.Attribute.AttributeSet + { + const string _bridgeClassName = "javax.print.attribute.PrintJobAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintJobAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintJobAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintJobAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintJobAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintJobAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IPrintJobAttributeSet : Javax.Print.Attribute.IAttribut } #endregion - #region PrintJobAttributeSet + #region PrintJobAttributeSet implementation public partial class PrintJobAttributeSet : Javax.Print.Attribute.IPrintJobAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttribute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttribute.cs index 0569a62849..8fa289b042 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttribute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttribute.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region PrintRequestAttribute declaration + /// + /// + /// + public partial class PrintRequestAttribute : Javax.Print.Attribute.Attribute + { + const string _bridgeClassName = "javax.print.attribute.PrintRequestAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintRequestAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintRequestAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintRequestAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintRequestAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintRequestAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPrintRequestAttribute : Javax.Print.Attribute.IAttribu } #endregion - #region PrintRequestAttribute + #region PrintRequestAttribute implementation public partial class PrintRequestAttribute : Javax.Print.Attribute.IPrintRequestAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttributeSet.cs index ad0d2129f5..16a76ea036 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/PrintRequestAttributeSet.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region PrintRequestAttributeSet declaration + /// + /// + /// + public partial class PrintRequestAttributeSet : Javax.Print.Attribute.AttributeSet + { + const string _bridgeClassName = "javax.print.attribute.PrintRequestAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintRequestAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintRequestAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintRequestAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintRequestAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintRequestAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IPrintRequestAttributeSet : Javax.Print.Attribute.IAttr } #endregion - #region PrintRequestAttributeSet + #region PrintRequestAttributeSet implementation public partial class PrintRequestAttributeSet : Javax.Print.Attribute.IPrintRequestAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttribute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttribute.cs index d2efdfcc83..448874b838 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttribute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttribute.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region PrintServiceAttribute declaration + /// + /// + /// + public partial class PrintServiceAttribute : Javax.Print.Attribute.Attribute + { + const string _bridgeClassName = "javax.print.attribute.PrintServiceAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintServiceAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintServiceAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintServiceAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintServiceAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintServiceAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IPrintServiceAttribute : Javax.Print.Attribute.IAttribu } #endregion - #region PrintServiceAttribute + #region PrintServiceAttribute implementation public partial class PrintServiceAttribute : Javax.Print.Attribute.IPrintServiceAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttributeSet.cs b/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttributeSet.cs index 51fe565926..af4b4de7b4 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/PrintServiceAttributeSet.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region PrintServiceAttributeSet declaration + /// + /// + /// + public partial class PrintServiceAttributeSet : Javax.Print.Attribute.AttributeSet + { + const string _bridgeClassName = "javax.print.attribute.PrintServiceAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintServiceAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintServiceAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintServiceAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintServiceAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintServiceAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IPrintServiceAttributeSet : Javax.Print.Attribute.IAttr } #endregion - #region PrintServiceAttributeSet + #region PrintServiceAttributeSet implementation public partial class PrintServiceAttributeSet : Javax.Print.Attribute.IPrintServiceAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/ResolutionSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/ResolutionSyntax.cs index 9ec7d20bf3..a8fe51d64c 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/ResolutionSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/ResolutionSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region ResolutionSyntax + #region ResolutionSyntax declaration + /// + /// + /// + public partial class ResolutionSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.ResolutionSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ResolutionSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResolutionSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ResolutionSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ResolutionSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ResolutionSyntax implementation public partial class ResolutionSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/SetOfIntegerSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/SetOfIntegerSyntax.cs index 4f4a9a0e12..dd7e19236b 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/SetOfIntegerSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/SetOfIntegerSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region SetOfIntegerSyntax + #region SetOfIntegerSyntax declaration + /// + /// + /// + public partial class SetOfIntegerSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.SetOfIntegerSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SetOfIntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SetOfIntegerSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SetOfIntegerSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SetOfIntegerSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SetOfIntegerSyntax implementation public partial class SetOfIntegerSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Size2DSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Size2DSyntax.cs index d154f9f9b1..f9a52a2d10 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Size2DSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Size2DSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region Size2DSyntax + #region Size2DSyntax declaration + /// + /// + /// + public partial class Size2DSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.Size2DSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Size2DSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Size2DSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Size2DSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Size2DSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Size2DSyntax implementation public partial class Size2DSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/AllPackageClasses.cs deleted file mode 100644 index d1676f563f..0000000000 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/AllPackageClasses.cs +++ /dev/null @@ -1,3452 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Print.Attribute.Standard -{ - #region Chromaticity - /// - /// - /// - public partial class Chromaticity : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Chromaticity"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Chromaticity() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Chromaticity(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorSupported - /// - /// - /// - public partial class ColorSupported : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.ColorSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Compression - /// - /// - /// - public partial class Compression : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Compression"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Compression() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Compression(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Copies - /// - /// - /// - public partial class Copies : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Copies"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Copies() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Copies(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CopiesSupported - /// - /// - /// - public partial class CopiesSupported : Javax.Print.Attribute.SetOfIntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.CopiesSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CopiesSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CopiesSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeAtCompleted - /// - /// - /// - public partial class DateTimeAtCompleted : Javax.Print.Attribute.DateTimeSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.DateTimeAtCompleted"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateTimeAtCompleted() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateTimeAtCompleted(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeAtCreation - /// - /// - /// - public partial class DateTimeAtCreation : Javax.Print.Attribute.DateTimeSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.DateTimeAtCreation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateTimeAtCreation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateTimeAtCreation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateTimeAtProcessing - /// - /// - /// - public partial class DateTimeAtProcessing : Javax.Print.Attribute.DateTimeSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.DateTimeAtProcessing"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateTimeAtProcessing() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateTimeAtProcessing(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Destination - /// - /// - /// - public partial class Destination : Javax.Print.Attribute.URISyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Destination"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Destination() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Destination(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DialogOwner - /// - /// - /// - public partial class DialogOwner : Javax.Print.Attribute.PrintRequestAttribute - { - const string _bridgeClassName = "javax.print.attribute.standard.DialogOwner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DialogOwner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DialogOwner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DialogTypeSelection - /// - /// - /// - public partial class DialogTypeSelection : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.DialogTypeSelection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DialogTypeSelection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DialogTypeSelection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentName - /// - /// - /// - public partial class DocumentName : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.DocumentName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DocumentName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DocumentName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Fidelity - /// - /// - /// - public partial class Fidelity : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Fidelity"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Fidelity() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Fidelity(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Finishings - /// - /// - /// - public partial class Finishings : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Finishings"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Finishings() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Finishings(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobHoldUntil - /// - /// - /// - public partial class JobHoldUntil : Javax.Print.Attribute.DateTimeSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobHoldUntil"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobHoldUntil() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobHoldUntil(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobImpressions - /// - /// - /// - public partial class JobImpressions : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobImpressions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobImpressions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobImpressions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobImpressionsCompleted - /// - /// - /// - public partial class JobImpressionsCompleted : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobImpressionsCompleted"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobImpressionsCompleted() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobImpressionsCompleted(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobImpressionsSupported - /// - /// - /// - public partial class JobImpressionsSupported : Javax.Print.Attribute.SetOfIntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobImpressionsSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobImpressionsSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobImpressionsSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobKOctets - /// - /// - /// - public partial class JobKOctets : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobKOctets"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobKOctets() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobKOctets(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobKOctetsProcessed - /// - /// - /// - public partial class JobKOctetsProcessed : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobKOctetsProcessed"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobKOctetsProcessed() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobKOctetsProcessed(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobKOctetsSupported - /// - /// - /// - public partial class JobKOctetsSupported : Javax.Print.Attribute.SetOfIntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobKOctetsSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobKOctetsSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobKOctetsSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobMediaSheets - /// - /// - /// - public partial class JobMediaSheets : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobMediaSheets"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobMediaSheets() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobMediaSheets(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobMediaSheetsCompleted - /// - /// - /// - public partial class JobMediaSheetsCompleted : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobMediaSheetsCompleted"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobMediaSheetsCompleted() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobMediaSheetsCompleted(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobMediaSheetsSupported - /// - /// - /// - public partial class JobMediaSheetsSupported : Javax.Print.Attribute.SetOfIntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobMediaSheetsSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobMediaSheetsSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobMediaSheetsSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobMessageFromOperator - /// - /// - /// - public partial class JobMessageFromOperator : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobMessageFromOperator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobMessageFromOperator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobMessageFromOperator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobName - /// - /// - /// - public partial class JobName : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobOriginatingUserName - /// - /// - /// - public partial class JobOriginatingUserName : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobOriginatingUserName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobOriginatingUserName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobOriginatingUserName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobPriority - /// - /// - /// - public partial class JobPriority : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobPriority"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobPriority() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobPriority(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobPrioritySupported - /// - /// - /// - public partial class JobPrioritySupported : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobPrioritySupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobPrioritySupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobPrioritySupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobSheets - /// - /// - /// - public partial class JobSheets : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobSheets"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobSheets() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobSheets(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobState - /// - /// - /// - public partial class JobState : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobState"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobState() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobState(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobStateReason - /// - /// - /// - public partial class JobStateReason : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.JobStateReason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobStateReason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobStateReason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JobStateReasons - /// - /// - /// - public partial class JobStateReasons : Java.Util.HashSet - { - const string _bridgeClassName = "javax.print.attribute.standard.JobStateReasons"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JobStateReasons() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JobStateReasons(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Media - /// - /// - /// - public partial class Media : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Media"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Media class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Media() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Media class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Media(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MediaName - /// - /// - /// - public partial class MediaName : Javax.Print.Attribute.Standard.Media - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MediaPrintableArea - /// - /// - /// - public partial class MediaPrintableArea : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaPrintableArea"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaPrintableArea() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaPrintableArea(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MediaSize - /// - /// - /// - public partial class MediaSize : Javax.Print.Attribute.Size2DSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSize"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaSize() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaSize(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Engineering - /// - /// - /// - public partial class Engineering : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$Engineering"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Engineering() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Engineering(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ISO - /// - /// - /// - public partial class ISO : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$ISO"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ISO() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ISO(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region JIS - /// - /// - /// - public partial class JIS : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$JIS"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JIS() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JIS(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region NA - /// - /// - /// - public partial class NA : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$NA"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NA() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NA(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Other - /// - /// - /// - public partial class Other : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$Other"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Other() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Other(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MediaSizeName - /// - /// - /// - public partial class MediaSizeName : Javax.Print.Attribute.Standard.Media - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaSizeName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaSizeName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaSizeName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MediaTray - /// - /// - /// - public partial class MediaTray : Javax.Print.Attribute.Standard.Media - { - const string _bridgeClassName = "javax.print.attribute.standard.MediaTray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MediaTray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MediaTray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultipleDocumentHandling - /// - /// - /// - public partial class MultipleDocumentHandling : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.MultipleDocumentHandling"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultipleDocumentHandling() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultipleDocumentHandling(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumberOfDocuments - /// - /// - /// - public partial class NumberOfDocuments : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.NumberOfDocuments"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumberOfDocuments() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumberOfDocuments(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumberOfInterveningJobs - /// - /// - /// - public partial class NumberOfInterveningJobs : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.NumberOfInterveningJobs"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumberOfInterveningJobs() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumberOfInterveningJobs(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumberUp - /// - /// - /// - public partial class NumberUp : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.NumberUp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumberUp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumberUp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NumberUpSupported - /// - /// - /// - public partial class NumberUpSupported : Javax.Print.Attribute.SetOfIntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.NumberUpSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumberUpSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumberUpSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OrientationRequested - /// - /// - /// - public partial class OrientationRequested : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.OrientationRequested"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OrientationRequested() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OrientationRequested(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OutputDeviceAssigned - /// - /// - /// - public partial class OutputDeviceAssigned : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.OutputDeviceAssigned"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OutputDeviceAssigned() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OutputDeviceAssigned(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PageRanges - /// - /// - /// - public partial class PageRanges : Javax.Print.Attribute.SetOfIntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PageRanges"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PageRanges() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PageRanges(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PagesPerMinute - /// - /// - /// - public partial class PagesPerMinute : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PagesPerMinute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PagesPerMinute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PagesPerMinute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PagesPerMinuteColor - /// - /// - /// - public partial class PagesPerMinuteColor : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PagesPerMinuteColor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PagesPerMinuteColor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PagesPerMinuteColor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PDLOverrideSupported - /// - /// - /// - public partial class PDLOverrideSupported : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PDLOverrideSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PDLOverrideSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PDLOverrideSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PresentationDirection - /// - /// - /// - public partial class PresentationDirection : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PresentationDirection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PresentationDirection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PresentationDirection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterInfo - /// - /// - /// - public partial class PrinterInfo : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterIsAcceptingJobs - /// - /// - /// - public partial class PrinterIsAcceptingJobs : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterIsAcceptingJobs"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterIsAcceptingJobs() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterIsAcceptingJobs(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterLocation - /// - /// - /// - public partial class PrinterLocation : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterMakeAndModel - /// - /// - /// - public partial class PrinterMakeAndModel : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterMakeAndModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterMakeAndModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterMakeAndModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterMessageFromOperator - /// - /// - /// - public partial class PrinterMessageFromOperator : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterMessageFromOperator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterMessageFromOperator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterMessageFromOperator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterMoreInfo - /// - /// - /// - public partial class PrinterMoreInfo : Javax.Print.Attribute.URISyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterMoreInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterMoreInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterMoreInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterMoreInfoManufacturer - /// - /// - /// - public partial class PrinterMoreInfoManufacturer : Javax.Print.Attribute.URISyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterMoreInfoManufacturer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterMoreInfoManufacturer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterMoreInfoManufacturer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterName - /// - /// - /// - public partial class PrinterName : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterResolution - /// - /// - /// - public partial class PrinterResolution : Javax.Print.Attribute.ResolutionSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterResolution"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterResolution() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterResolution(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterState - /// - /// - /// - public partial class PrinterState : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterState"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterState() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterState(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterStateReason - /// - /// - /// - public partial class PrinterStateReason : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterStateReason"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterStateReason() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterStateReason(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterStateReasons - /// - /// - /// - public partial class PrinterStateReasons : Java.Util.HashMap - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterStateReasons"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterStateReasons() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterStateReasons(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrinterURI - /// - /// - /// - public partial class PrinterURI : Javax.Print.Attribute.URISyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrinterURI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrinterURI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrinterURI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintQuality - /// - /// - /// - public partial class PrintQuality : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.PrintQuality"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintQuality() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintQuality(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QueuedJobCount - /// - /// - /// - public partial class QueuedJobCount : Javax.Print.Attribute.IntegerSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.QueuedJobCount"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public QueuedJobCount() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public QueuedJobCount(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ReferenceUriSchemesSupported - /// - /// - /// - public partial class ReferenceUriSchemesSupported : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.ReferenceUriSchemesSupported"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReferenceUriSchemesSupported() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReferenceUriSchemesSupported(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RequestingUserName - /// - /// - /// - public partial class RequestingUserName : Javax.Print.Attribute.TextSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.RequestingUserName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RequestingUserName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RequestingUserName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Severity - /// - /// - /// - public partial class Severity : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Severity"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Severity() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Severity(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SheetCollate - /// - /// - /// - public partial class SheetCollate : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.SheetCollate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SheetCollate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SheetCollate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Sides - /// - /// - /// - public partial class Sides : Javax.Print.Attribute.EnumSyntax - { - const string _bridgeClassName = "javax.print.attribute.standard.Sides"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Sides() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Sides(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Chromaticity.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Chromaticity.cs index 6c5787443d..54f33abb05 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Chromaticity.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Chromaticity.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Chromaticity + #region Chromaticity declaration + /// + /// + /// + public partial class Chromaticity : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Chromaticity"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Chromaticity() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Chromaticity(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Chromaticity implementation public partial class Chromaticity { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ColorSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ColorSupported.cs index 4469c86ef0..7fa75fcbaf 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ColorSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ColorSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region ColorSupported + #region ColorSupported declaration + /// + /// + /// + public partial class ColorSupported : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.ColorSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorSupported implementation public partial class ColorSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Compression.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Compression.cs index 9960085231..3b05d5f25a 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Compression.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Compression.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Compression + #region Compression declaration + /// + /// + /// + public partial class Compression : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Compression"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Compression() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Compression(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Compression implementation public partial class Compression { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Copies.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Copies.cs index 68c920d46b..78669743bb 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Copies.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Copies.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Copies + #region Copies declaration + /// + /// + /// + public partial class Copies : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Copies"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Copies() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Copies(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Copies implementation public partial class Copies { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/CopiesSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/CopiesSupported.cs index 24da543a44..c5058719c7 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/CopiesSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/CopiesSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region CopiesSupported + #region CopiesSupported declaration + /// + /// + /// + public partial class CopiesSupported : Javax.Print.Attribute.SetOfIntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.CopiesSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CopiesSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CopiesSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CopiesSupported implementation public partial class CopiesSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCompleted.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCompleted.cs index 21ea79feee..4b01933de0 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCompleted.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCompleted.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region DateTimeAtCompleted + #region DateTimeAtCompleted declaration + /// + /// + /// + public partial class DateTimeAtCompleted : Javax.Print.Attribute.DateTimeSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.DateTimeAtCompleted"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateTimeAtCompleted() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateTimeAtCompleted(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateTimeAtCompleted implementation public partial class DateTimeAtCompleted { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCreation.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCreation.cs index 9c0a182b9f..9650baa834 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCreation.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtCreation.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region DateTimeAtCreation + #region DateTimeAtCreation declaration + /// + /// + /// + public partial class DateTimeAtCreation : Javax.Print.Attribute.DateTimeSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.DateTimeAtCreation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateTimeAtCreation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateTimeAtCreation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateTimeAtCreation implementation public partial class DateTimeAtCreation { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtProcessing.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtProcessing.cs index bccb4eaf0e..c75bbfc997 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtProcessing.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DateTimeAtProcessing.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region DateTimeAtProcessing + #region DateTimeAtProcessing declaration + /// + /// + /// + public partial class DateTimeAtProcessing : Javax.Print.Attribute.DateTimeSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.DateTimeAtProcessing"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateTimeAtProcessing() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateTimeAtProcessing(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateTimeAtProcessing implementation public partial class DateTimeAtProcessing { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Destination.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Destination.cs index daf74c43a1..b6b28fa70d 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Destination.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Destination.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Destination + #region Destination declaration + /// + /// + /// + public partial class Destination : Javax.Print.Attribute.URISyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Destination"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Destination() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Destination(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Destination implementation public partial class Destination { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogOwner.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogOwner.cs index 06682cfa76..eef14d5491 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogOwner.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogOwner.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region DialogOwner + #region DialogOwner declaration + /// + /// + /// + public partial class DialogOwner : Javax.Print.Attribute.PrintRequestAttribute + { + const string _bridgeClassName = "javax.print.attribute.standard.DialogOwner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DialogOwner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DialogOwner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DialogOwner implementation public partial class DialogOwner { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogTypeSelection.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogTypeSelection.cs index 031474afda..4a3654a9e8 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogTypeSelection.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DialogTypeSelection.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region DialogTypeSelection + #region DialogTypeSelection declaration + /// + /// + /// + public partial class DialogTypeSelection : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.DialogTypeSelection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DialogTypeSelection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DialogTypeSelection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DialogTypeSelection implementation public partial class DialogTypeSelection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DocumentName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DocumentName.cs index b55a17987d..119ffe76bc 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DocumentName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/DocumentName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region DocumentName + #region DocumentName declaration + /// + /// + /// + public partial class DocumentName : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.DocumentName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DocumentName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DocumentName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DocumentName implementation public partial class DocumentName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Fidelity.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Fidelity.cs index 5d20f23acb..c7eb4898ea 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Fidelity.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Fidelity.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Fidelity + #region Fidelity declaration + /// + /// + /// + public partial class Fidelity : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Fidelity"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Fidelity() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Fidelity(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Fidelity implementation public partial class Fidelity { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Finishings.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Finishings.cs index baafa7a77f..73210e8e05 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Finishings.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Finishings.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Finishings + #region Finishings declaration + /// + /// + /// + public partial class Finishings : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Finishings"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Finishings() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Finishings(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Finishings implementation public partial class Finishings { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobHoldUntil.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobHoldUntil.cs index af77e6da82..960bf4f3c6 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobHoldUntil.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobHoldUntil.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobHoldUntil + #region JobHoldUntil declaration + /// + /// + /// + public partial class JobHoldUntil : Javax.Print.Attribute.DateTimeSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobHoldUntil"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobHoldUntil() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobHoldUntil(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobHoldUntil implementation public partial class JobHoldUntil { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressions.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressions.cs index da17ab50f7..37ba85c68c 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressions.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressions.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobImpressions + #region JobImpressions declaration + /// + /// + /// + public partial class JobImpressions : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobImpressions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobImpressions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobImpressions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobImpressions implementation public partial class JobImpressions { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsCompleted.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsCompleted.cs index 5aec2b0bd0..943bd69f17 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsCompleted.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsCompleted.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobImpressionsCompleted + #region JobImpressionsCompleted declaration + /// + /// + /// + public partial class JobImpressionsCompleted : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobImpressionsCompleted"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobImpressionsCompleted() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobImpressionsCompleted(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobImpressionsCompleted implementation public partial class JobImpressionsCompleted { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsSupported.cs index 37cabe60eb..da3a398bec 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobImpressionsSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobImpressionsSupported + #region JobImpressionsSupported declaration + /// + /// + /// + public partial class JobImpressionsSupported : Javax.Print.Attribute.SetOfIntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobImpressionsSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobImpressionsSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobImpressionsSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobImpressionsSupported implementation public partial class JobImpressionsSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctets.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctets.cs index a1c1c1aa2a..37f15e24de 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctets.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctets.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobKOctets + #region JobKOctets declaration + /// + /// + /// + public partial class JobKOctets : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobKOctets"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobKOctets() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobKOctets(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobKOctets implementation public partial class JobKOctets { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsProcessed.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsProcessed.cs index a8c907b0a6..104719a820 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsProcessed.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsProcessed.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobKOctetsProcessed + #region JobKOctetsProcessed declaration + /// + /// + /// + public partial class JobKOctetsProcessed : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobKOctetsProcessed"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobKOctetsProcessed() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobKOctetsProcessed(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobKOctetsProcessed implementation public partial class JobKOctetsProcessed { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsSupported.cs index 30a921ccc0..e3da0645d8 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobKOctetsSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobKOctetsSupported + #region JobKOctetsSupported declaration + /// + /// + /// + public partial class JobKOctetsSupported : Javax.Print.Attribute.SetOfIntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobKOctetsSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobKOctetsSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobKOctetsSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobKOctetsSupported implementation public partial class JobKOctetsSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheets.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheets.cs index 6444354f65..cc409173a2 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheets.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheets.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobMediaSheets + #region JobMediaSheets declaration + /// + /// + /// + public partial class JobMediaSheets : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobMediaSheets"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobMediaSheets() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobMediaSheets(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobMediaSheets implementation public partial class JobMediaSheets { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsCompleted.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsCompleted.cs index 340e06417d..a8d166b593 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsCompleted.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsCompleted.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobMediaSheetsCompleted + #region JobMediaSheetsCompleted declaration + /// + /// + /// + public partial class JobMediaSheetsCompleted : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobMediaSheetsCompleted"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobMediaSheetsCompleted() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobMediaSheetsCompleted(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobMediaSheetsCompleted implementation public partial class JobMediaSheetsCompleted { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsSupported.cs index 4290ef268c..7c0552c494 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMediaSheetsSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobMediaSheetsSupported + #region JobMediaSheetsSupported declaration + /// + /// + /// + public partial class JobMediaSheetsSupported : Javax.Print.Attribute.SetOfIntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobMediaSheetsSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobMediaSheetsSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobMediaSheetsSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobMediaSheetsSupported implementation public partial class JobMediaSheetsSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMessageFromOperator.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMessageFromOperator.cs index 93530b8049..aa3a5bfdf6 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMessageFromOperator.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobMessageFromOperator.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobMessageFromOperator + #region JobMessageFromOperator declaration + /// + /// + /// + public partial class JobMessageFromOperator : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobMessageFromOperator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobMessageFromOperator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobMessageFromOperator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobMessageFromOperator implementation public partial class JobMessageFromOperator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobName.cs index 7c98c441d0..a26d33db78 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobName + #region JobName declaration + /// + /// + /// + public partial class JobName : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobName implementation public partial class JobName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobOriginatingUserName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobOriginatingUserName.cs index b744f15415..141c937419 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobOriginatingUserName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobOriginatingUserName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobOriginatingUserName + #region JobOriginatingUserName declaration + /// + /// + /// + public partial class JobOriginatingUserName : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobOriginatingUserName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobOriginatingUserName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobOriginatingUserName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobOriginatingUserName implementation public partial class JobOriginatingUserName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPriority.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPriority.cs index 084c9f42df..6e4605b933 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPriority.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPriority.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobPriority + #region JobPriority declaration + /// + /// + /// + public partial class JobPriority : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobPriority"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobPriority() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobPriority(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobPriority implementation public partial class JobPriority { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPrioritySupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPrioritySupported.cs index 76d125312f..29c2234351 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPrioritySupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobPrioritySupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobPrioritySupported + #region JobPrioritySupported declaration + /// + /// + /// + public partial class JobPrioritySupported : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobPrioritySupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobPrioritySupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobPrioritySupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobPrioritySupported implementation public partial class JobPrioritySupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobSheets.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobSheets.cs index 6a007494e9..8fb17c6f1a 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobSheets.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobSheets.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobSheets + #region JobSheets declaration + /// + /// + /// + public partial class JobSheets : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobSheets"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobSheets() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobSheets(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobSheets implementation public partial class JobSheets { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobState.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobState.cs index e2a2ae1180..d35d7008ef 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobState.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobState.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobState + #region JobState declaration + /// + /// + /// + public partial class JobState : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobState"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobState() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobState(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobState implementation public partial class JobState { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReason.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReason.cs index cc3b7a4861..e76f64dc21 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReason.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReason.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobStateReason + #region JobStateReason declaration + /// + /// + /// + public partial class JobStateReason : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.JobStateReason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobStateReason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobStateReason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobStateReason implementation public partial class JobStateReason { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReasons.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReasons.cs index 28d395134c..d462b63bc7 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReasons.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/JobStateReasons.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region JobStateReasons + #region JobStateReasons declaration + /// + /// + /// + public partial class JobStateReasons : Java.Util.HashSet + { + const string _bridgeClassName = "javax.print.attribute.standard.JobStateReasons"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JobStateReasons() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JobStateReasons(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JobStateReasons implementation public partial class JobStateReasons { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Media.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Media.cs index eab0c9959c..29fbd0e617 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Media.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Media.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute.Standard { - #region Media + #region Media declaration + /// + /// + /// + public partial class Media : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Media"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Media class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Media() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Media class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Media(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Media implementation public partial class Media { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaName.cs index fb473966b1..a4bf226e95 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region MediaName + #region MediaName declaration + /// + /// + /// + public partial class MediaName : Javax.Print.Attribute.Standard.Media + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MediaName implementation public partial class MediaName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaPrintableArea.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaPrintableArea.cs index 09f580555c..37f3ea5557 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaPrintableArea.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaPrintableArea.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region MediaPrintableArea + #region MediaPrintableArea declaration + /// + /// + /// + public partial class MediaPrintableArea : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaPrintableArea"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaPrintableArea() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaPrintableArea(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MediaPrintableArea implementation public partial class MediaPrintableArea { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSize.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSize.cs index 69901bf4e9..e5356d9d57 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSize.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSize.cs @@ -25,7 +25,277 @@ namespace Javax.Print.Attribute.Standard { - #region MediaSize + #region MediaSize declaration + /// + /// + /// + public partial class MediaSize : Javax.Print.Attribute.Size2DSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSize"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaSize() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaSize(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Engineering declaration + /// + /// + /// + public partial class Engineering : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$Engineering"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Engineering() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Engineering(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ISO declaration + /// + /// + /// + public partial class ISO : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$ISO"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ISO() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ISO(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region JIS declaration + /// + /// + /// + public partial class JIS : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$JIS"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JIS() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JIS(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region NA declaration + /// + /// + /// + public partial class NA : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$NA"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NA() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NA(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Other declaration + /// + /// + /// + public partial class Other : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSize$Other"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Other() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Other(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MediaSize implementation public partial class MediaSize { #region Constructors @@ -136,7 +406,7 @@ public Java.Lang.String Name #endregion #region Nested classes - #region Engineering + #region Engineering implementation public partial class Engineering { #region Constructors @@ -197,7 +467,7 @@ public partial class Engineering } #endregion - #region ISO + #region ISO implementation public partial class ISO { #region Constructors @@ -390,7 +660,7 @@ public partial class ISO } #endregion - #region JIS + #region JIS implementation public partial class JIS { #region Constructors @@ -631,7 +901,7 @@ public partial class JIS } #endregion - #region NA + #region NA implementation public partial class NA { #region Constructors @@ -758,7 +1028,7 @@ public partial class NA } #endregion - #region Other + #region Other implementation public partial class Other { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSizeName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSizeName.cs index 11869a501d..eaf4038019 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSizeName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaSizeName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region MediaSizeName + #region MediaSizeName declaration + /// + /// + /// + public partial class MediaSizeName : Javax.Print.Attribute.Standard.Media + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaSizeName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaSizeName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaSizeName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MediaSizeName implementation public partial class MediaSizeName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaTray.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaTray.cs index 55db4bdb40..8409396500 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaTray.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MediaTray.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region MediaTray + #region MediaTray declaration + /// + /// + /// + public partial class MediaTray : Javax.Print.Attribute.Standard.Media + { + const string _bridgeClassName = "javax.print.attribute.standard.MediaTray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MediaTray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MediaTray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MediaTray implementation public partial class MediaTray { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MultipleDocumentHandling.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MultipleDocumentHandling.cs index e7b5831bcb..2daa08b7c8 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MultipleDocumentHandling.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/MultipleDocumentHandling.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region MultipleDocumentHandling + #region MultipleDocumentHandling declaration + /// + /// + /// + public partial class MultipleDocumentHandling : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.MultipleDocumentHandling"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultipleDocumentHandling() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultipleDocumentHandling(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultipleDocumentHandling implementation public partial class MultipleDocumentHandling { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfDocuments.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfDocuments.cs index ef2daab46b..6b8dcb9f22 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfDocuments.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfDocuments.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region NumberOfDocuments + #region NumberOfDocuments declaration + /// + /// + /// + public partial class NumberOfDocuments : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.NumberOfDocuments"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumberOfDocuments() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumberOfDocuments(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NumberOfDocuments implementation public partial class NumberOfDocuments { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfInterveningJobs.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfInterveningJobs.cs index b2a1357c48..5424f51b63 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfInterveningJobs.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberOfInterveningJobs.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region NumberOfInterveningJobs + #region NumberOfInterveningJobs declaration + /// + /// + /// + public partial class NumberOfInterveningJobs : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.NumberOfInterveningJobs"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumberOfInterveningJobs() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumberOfInterveningJobs(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NumberOfInterveningJobs implementation public partial class NumberOfInterveningJobs { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUp.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUp.cs index d4557ee96f..3fbe4095bb 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUp.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUp.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region NumberUp + #region NumberUp declaration + /// + /// + /// + public partial class NumberUp : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.NumberUp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumberUp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumberUp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NumberUp implementation public partial class NumberUp { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUpSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUpSupported.cs index 2afaca370f..7aa200a07a 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUpSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/NumberUpSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region NumberUpSupported + #region NumberUpSupported declaration + /// + /// + /// + public partial class NumberUpSupported : Javax.Print.Attribute.SetOfIntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.NumberUpSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumberUpSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumberUpSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NumberUpSupported implementation public partial class NumberUpSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OrientationRequested.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OrientationRequested.cs index 7981ed4903..afad605348 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OrientationRequested.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OrientationRequested.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region OrientationRequested + #region OrientationRequested declaration + /// + /// + /// + public partial class OrientationRequested : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.OrientationRequested"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OrientationRequested() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OrientationRequested(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OrientationRequested implementation public partial class OrientationRequested { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OutputDeviceAssigned.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OutputDeviceAssigned.cs index f9f1652d9b..927c0ab65a 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OutputDeviceAssigned.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/OutputDeviceAssigned.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region OutputDeviceAssigned + #region OutputDeviceAssigned declaration + /// + /// + /// + public partial class OutputDeviceAssigned : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.OutputDeviceAssigned"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OutputDeviceAssigned() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OutputDeviceAssigned(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OutputDeviceAssigned implementation public partial class OutputDeviceAssigned { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PDLOverrideSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PDLOverrideSupported.cs index 44115d5f51..84f78f7f3e 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PDLOverrideSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PDLOverrideSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PDLOverrideSupported + #region PDLOverrideSupported declaration + /// + /// + /// + public partial class PDLOverrideSupported : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PDLOverrideSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PDLOverrideSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PDLOverrideSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PDLOverrideSupported implementation public partial class PDLOverrideSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PageRanges.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PageRanges.cs index a45e1bccd8..3c1b3ad5b8 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PageRanges.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PageRanges.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PageRanges + #region PageRanges declaration + /// + /// + /// + public partial class PageRanges : Javax.Print.Attribute.SetOfIntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PageRanges"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PageRanges() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PageRanges(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PageRanges implementation public partial class PageRanges { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinute.cs index 172d83d323..8e45d1367e 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinute.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PagesPerMinute + #region PagesPerMinute declaration + /// + /// + /// + public partial class PagesPerMinute : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PagesPerMinute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PagesPerMinute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PagesPerMinute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PagesPerMinute implementation public partial class PagesPerMinute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinuteColor.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinuteColor.cs index b0cc323e2e..fa3d6e82ef 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinuteColor.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PagesPerMinuteColor.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PagesPerMinuteColor + #region PagesPerMinuteColor declaration + /// + /// + /// + public partial class PagesPerMinuteColor : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PagesPerMinuteColor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PagesPerMinuteColor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PagesPerMinuteColor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PagesPerMinuteColor implementation public partial class PagesPerMinuteColor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PresentationDirection.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PresentationDirection.cs index cd606ff17f..7f159d6c3a 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PresentationDirection.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PresentationDirection.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PresentationDirection + #region PresentationDirection declaration + /// + /// + /// + public partial class PresentationDirection : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PresentationDirection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PresentationDirection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PresentationDirection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PresentationDirection implementation public partial class PresentationDirection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrintQuality.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrintQuality.cs index 063f37cb3b..960de24da1 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrintQuality.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrintQuality.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrintQuality + #region PrintQuality declaration + /// + /// + /// + public partial class PrintQuality : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrintQuality"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintQuality() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintQuality(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintQuality implementation public partial class PrintQuality { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterInfo.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterInfo.cs index 6b7d07b97a..2b156639df 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterInfo.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterInfo + #region PrinterInfo declaration + /// + /// + /// + public partial class PrinterInfo : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterInfo implementation public partial class PrinterInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterIsAcceptingJobs.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterIsAcceptingJobs.cs index 89ac0bccef..1af901c20e 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterIsAcceptingJobs.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterIsAcceptingJobs.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterIsAcceptingJobs + #region PrinterIsAcceptingJobs declaration + /// + /// + /// + public partial class PrinterIsAcceptingJobs : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterIsAcceptingJobs"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterIsAcceptingJobs() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterIsAcceptingJobs(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterIsAcceptingJobs implementation public partial class PrinterIsAcceptingJobs { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterLocation.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterLocation.cs index c41d05657a..a4723e0b8b 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterLocation.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterLocation.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterLocation + #region PrinterLocation declaration + /// + /// + /// + public partial class PrinterLocation : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterLocation implementation public partial class PrinterLocation { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMakeAndModel.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMakeAndModel.cs index 8a2d90e4cf..fb94f992e0 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMakeAndModel.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMakeAndModel.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterMakeAndModel + #region PrinterMakeAndModel declaration + /// + /// + /// + public partial class PrinterMakeAndModel : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterMakeAndModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterMakeAndModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterMakeAndModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterMakeAndModel implementation public partial class PrinterMakeAndModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMessageFromOperator.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMessageFromOperator.cs index a8f173d6f7..4aa5d11a68 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMessageFromOperator.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMessageFromOperator.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterMessageFromOperator + #region PrinterMessageFromOperator declaration + /// + /// + /// + public partial class PrinterMessageFromOperator : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterMessageFromOperator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterMessageFromOperator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterMessageFromOperator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterMessageFromOperator implementation public partial class PrinterMessageFromOperator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfo.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfo.cs index 31a0956702..00c4bb5704 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfo.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfo.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterMoreInfo + #region PrinterMoreInfo declaration + /// + /// + /// + public partial class PrinterMoreInfo : Javax.Print.Attribute.URISyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterMoreInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterMoreInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterMoreInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterMoreInfo implementation public partial class PrinterMoreInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfoManufacturer.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfoManufacturer.cs index 8673c9f464..b101395ce6 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfoManufacturer.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterMoreInfoManufacturer.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterMoreInfoManufacturer + #region PrinterMoreInfoManufacturer declaration + /// + /// + /// + public partial class PrinterMoreInfoManufacturer : Javax.Print.Attribute.URISyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterMoreInfoManufacturer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterMoreInfoManufacturer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterMoreInfoManufacturer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterMoreInfoManufacturer implementation public partial class PrinterMoreInfoManufacturer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterName.cs index 467538d400..0ef5b3a0ef 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterName + #region PrinterName declaration + /// + /// + /// + public partial class PrinterName : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterName implementation public partial class PrinterName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterResolution.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterResolution.cs index 31d5d6811a..be543566c3 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterResolution.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterResolution.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterResolution + #region PrinterResolution declaration + /// + /// + /// + public partial class PrinterResolution : Javax.Print.Attribute.ResolutionSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterResolution"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterResolution() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterResolution(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterResolution implementation public partial class PrinterResolution { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterState.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterState.cs index 416bf4f04e..795c91f573 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterState.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterState.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterState + #region PrinterState declaration + /// + /// + /// + public partial class PrinterState : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterState"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterState() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterState(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterState implementation public partial class PrinterState { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReason.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReason.cs index be82686195..693e5a9ff3 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReason.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReason.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterStateReason + #region PrinterStateReason declaration + /// + /// + /// + public partial class PrinterStateReason : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterStateReason"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterStateReason() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterStateReason(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterStateReason implementation public partial class PrinterStateReason { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReasons.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReasons.cs index 74d0f7ec11..b103b32109 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReasons.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterStateReasons.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterStateReasons + #region PrinterStateReasons declaration + /// + /// + /// + public partial class PrinterStateReasons : Java.Util.HashMap + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterStateReasons"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterStateReasons() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterStateReasons(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterStateReasons implementation public partial class PrinterStateReasons { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterURI.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterURI.cs index 5f29226e80..d77d3fecfc 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterURI.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/PrinterURI.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region PrinterURI + #region PrinterURI declaration + /// + /// + /// + public partial class PrinterURI : Javax.Print.Attribute.URISyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.PrinterURI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrinterURI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrinterURI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrinterURI implementation public partial class PrinterURI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/QueuedJobCount.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/QueuedJobCount.cs index 0079768109..5a57031adf 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/QueuedJobCount.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/QueuedJobCount.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region QueuedJobCount + #region QueuedJobCount declaration + /// + /// + /// + public partial class QueuedJobCount : Javax.Print.Attribute.IntegerSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.QueuedJobCount"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public QueuedJobCount() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public QueuedJobCount(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region QueuedJobCount implementation public partial class QueuedJobCount { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ReferenceUriSchemesSupported.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ReferenceUriSchemesSupported.cs index d9859cadff..543aea87d3 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ReferenceUriSchemesSupported.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/ReferenceUriSchemesSupported.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region ReferenceUriSchemesSupported + #region ReferenceUriSchemesSupported declaration + /// + /// + /// + public partial class ReferenceUriSchemesSupported : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.ReferenceUriSchemesSupported"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReferenceUriSchemesSupported() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReferenceUriSchemesSupported(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReferenceUriSchemesSupported implementation public partial class ReferenceUriSchemesSupported { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/RequestingUserName.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/RequestingUserName.cs index 5799f79c3d..ebea2ecc19 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/RequestingUserName.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/RequestingUserName.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region RequestingUserName + #region RequestingUserName declaration + /// + /// + /// + public partial class RequestingUserName : Javax.Print.Attribute.TextSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.RequestingUserName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RequestingUserName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RequestingUserName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RequestingUserName implementation public partial class RequestingUserName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Severity.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Severity.cs index ab8bbda7ae..f900abbab1 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Severity.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Severity.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Severity + #region Severity declaration + /// + /// + /// + public partial class Severity : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Severity"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Severity() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Severity(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Severity implementation public partial class Severity { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/SheetCollate.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/SheetCollate.cs index 4fabaa4b6a..5c3d176a26 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/SheetCollate.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/SheetCollate.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region SheetCollate + #region SheetCollate declaration + /// + /// + /// + public partial class SheetCollate : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.SheetCollate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SheetCollate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SheetCollate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SheetCollate implementation public partial class SheetCollate { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Sides.cs b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Sides.cs index 2578ea278d..406cfd624b 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Sides.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/Standard/Sides.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Attribute.Standard { - #region Sides + #region Sides declaration + /// + /// + /// + public partial class Sides : Javax.Print.Attribute.EnumSyntax + { + const string _bridgeClassName = "javax.print.attribute.standard.Sides"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Sides() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Sides(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Sides implementation public partial class Sides { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/SupportedValuesAttribute.cs b/src/net/JNet/Generated/Javax/Print/Attribute/SupportedValuesAttribute.cs index 9867d90c4a..abdbda50ed 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/SupportedValuesAttribute.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/SupportedValuesAttribute.cs @@ -25,6 +25,53 @@ namespace Javax.Print.Attribute { + #region SupportedValuesAttribute declaration + /// + /// + /// + public partial class SupportedValuesAttribute : Javax.Print.Attribute.Attribute + { + const string _bridgeClassName = "javax.print.attribute.SupportedValuesAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SupportedValuesAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedValuesAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SupportedValuesAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SupportedValuesAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISupportedValuesAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISupportedValuesAttribute : Javax.Print.Attribute.IAttr } #endregion - #region SupportedValuesAttribute + #region SupportedValuesAttribute implementation public partial class SupportedValuesAttribute : Javax.Print.Attribute.ISupportedValuesAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/TextSyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/TextSyntax.cs index c57ae1bfc7..c5912410af 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/TextSyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/TextSyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region TextSyntax + #region TextSyntax declaration + /// + /// + /// + public partial class TextSyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.TextSyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TextSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TextSyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TextSyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TextSyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextSyntax implementation public partial class TextSyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/URISyntax.cs b/src/net/JNet/Generated/Javax/Print/Attribute/URISyntax.cs index c85f39d78f..fdf2d61830 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/URISyntax.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/URISyntax.cs @@ -25,7 +25,54 @@ namespace Javax.Print.Attribute { - #region URISyntax + #region URISyntax declaration + /// + /// + /// + public partial class URISyntax : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.attribute.URISyntax"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URISyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URISyntax() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URISyntax class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URISyntax(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region URISyntax implementation public partial class URISyntax { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Attribute/UnmodifiableSetException.cs b/src/net/JNet/Generated/Javax/Print/Attribute/UnmodifiableSetException.cs index 8b28c16256..0e81bbba7d 100644 --- a/src/net/JNet/Generated/Javax/Print/Attribute/UnmodifiableSetException.cs +++ b/src/net/JNet/Generated/Javax/Print/Attribute/UnmodifiableSetException.cs @@ -25,7 +25,24 @@ namespace Javax.Print.Attribute { - #region UnmodifiableSetException + #region UnmodifiableSetException declaration + /// + /// + /// + public partial class UnmodifiableSetException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.print.attribute.UnmodifiableSetException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnmodifiableSetException implementation public partial class UnmodifiableSetException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/AttributeException.cs b/src/net/JNet/Generated/Javax/Print/AttributeException.cs index bb83b405e4..7da9a8d6ee 100644 --- a/src/net/JNet/Generated/Javax/Print/AttributeException.cs +++ b/src/net/JNet/Generated/Javax/Print/AttributeException.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region AttributeException declaration + /// + /// + /// + public partial class AttributeException : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.AttributeException"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AttributeException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeException() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AttributeException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeException(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttributeException /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAttributeException } #endregion - #region AttributeException + #region AttributeException implementation public partial class AttributeException : Javax.Print.IAttributeException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/CancelablePrintJob.cs b/src/net/JNet/Generated/Javax/Print/CancelablePrintJob.cs index ff938a304a..0115cee451 100644 --- a/src/net/JNet/Generated/Javax/Print/CancelablePrintJob.cs +++ b/src/net/JNet/Generated/Javax/Print/CancelablePrintJob.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region CancelablePrintJob declaration + /// + /// + /// + public partial class CancelablePrintJob : Javax.Print.DocPrintJob + { + const string _bridgeClassName = "javax.print.CancelablePrintJob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CancelablePrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CancelablePrintJob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CancelablePrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CancelablePrintJob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICancelablePrintJob /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface ICancelablePrintJob : Javax.Print.IDocPrintJob } #endregion - #region CancelablePrintJob + #region CancelablePrintJob implementation public partial class CancelablePrintJob : Javax.Print.ICancelablePrintJob { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Doc.cs b/src/net/JNet/Generated/Javax/Print/Doc.cs index 83c0f65497..a7956fe761 100644 --- a/src/net/JNet/Generated/Javax/Print/Doc.cs +++ b/src/net/JNet/Generated/Javax/Print/Doc.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region Doc declaration + /// + /// + /// + public partial class Doc : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.Doc"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Doc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Doc() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Doc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Doc(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDoc /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IDoc } #endregion - #region Doc + #region Doc implementation public partial class Doc : Javax.Print.IDoc { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/DocFlavor.cs b/src/net/JNet/Generated/Javax/Print/DocFlavor.cs index 2f3faebe18..efeba2201f 100644 --- a/src/net/JNet/Generated/Javax/Print/DocFlavor.cs +++ b/src/net/JNet/Generated/Javax/Print/DocFlavor.cs @@ -25,7 +25,367 @@ namespace Javax.Print { - #region DocFlavor + #region DocFlavor declaration + /// + /// + /// + public partial class DocFlavor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.DocFlavor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DocFlavor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DocFlavor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BYTE_ARRAY declaration + /// + /// + /// + public partial class BYTE_ARRAY : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$BYTE_ARRAY"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BYTE_ARRAY() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BYTE_ARRAY(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CHAR_ARRAY declaration + /// + /// + /// + public partial class CHAR_ARRAY : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$CHAR_ARRAY"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CHAR_ARRAY() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CHAR_ARRAY(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region INPUT_STREAM declaration + /// + /// + /// + public partial class INPUT_STREAM : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$INPUT_STREAM"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public INPUT_STREAM() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public INPUT_STREAM(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region READER declaration + /// + /// + /// + public partial class READER : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$READER"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public READER() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public READER(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SERVICE_FORMATTED declaration + /// + /// + /// + public partial class SERVICE_FORMATTED : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$SERVICE_FORMATTED"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SERVICE_FORMATTED() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SERVICE_FORMATTED(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region STRING declaration + /// + /// + /// + public partial class STRING : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$STRING"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public STRING() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public STRING(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region URL declaration + /// + /// + /// + public partial class URL : Javax.Print.DocFlavor + { + const string _bridgeClassName = "javax.print.DocFlavor$URL"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public URL() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public URL(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DocFlavor implementation public partial class DocFlavor { #region Constructors @@ -109,7 +469,7 @@ public Java.Lang.String GetParameter(Java.Lang.String arg0) #endregion #region Nested classes - #region BYTE_ARRAY + #region BYTE_ARRAY implementation public partial class BYTE_ARRAY { #region Constructors @@ -262,7 +622,7 @@ public BYTE_ARRAY(Java.Lang.String arg0) } #endregion - #region CHAR_ARRAY + #region CHAR_ARRAY implementation public partial class CHAR_ARRAY { #region Constructors @@ -313,7 +673,7 @@ public CHAR_ARRAY(Java.Lang.String arg0) } #endregion - #region INPUT_STREAM + #region INPUT_STREAM implementation public partial class INPUT_STREAM { #region Constructors @@ -466,7 +826,7 @@ public INPUT_STREAM(Java.Lang.String arg0) } #endregion - #region READER + #region READER implementation public partial class READER { #region Constructors @@ -517,7 +877,7 @@ public READER(Java.Lang.String arg0) } #endregion - #region SERVICE_FORMATTED + #region SERVICE_FORMATTED implementation public partial class SERVICE_FORMATTED { #region Constructors @@ -574,7 +934,7 @@ public SERVICE_FORMATTED(Java.Lang.String arg0) } #endregion - #region STRING + #region STRING implementation public partial class STRING { #region Constructors @@ -625,7 +985,7 @@ public STRING(Java.Lang.String arg0) } #endregion - #region URL + #region URL implementation public partial class URL { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/DocPrintJob.cs b/src/net/JNet/Generated/Javax/Print/DocPrintJob.cs index 64a7433426..1a3700dbb6 100644 --- a/src/net/JNet/Generated/Javax/Print/DocPrintJob.cs +++ b/src/net/JNet/Generated/Javax/Print/DocPrintJob.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region DocPrintJob declaration + /// + /// + /// + public partial class DocPrintJob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.DocPrintJob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocPrintJob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocPrintJob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocPrintJob /// /// .NET interface for TO BE DEFINED FROM USER @@ -79,7 +126,7 @@ public partial interface IDocPrintJob } #endregion - #region DocPrintJob + #region DocPrintJob implementation public partial class DocPrintJob : Javax.Print.IDocPrintJob { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Print/Event/AllPackageClasses.cs deleted file mode 100644 index 91baed09bc..0000000000 --- a/src/net/JNet/Generated/Javax/Print/Event/AllPackageClasses.cs +++ /dev/null @@ -1,478 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Print.Event -{ - #region PrintEvent - /// - /// - /// - public partial class PrintEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.print.event.PrintEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintJobAdapter - /// - /// - /// - public partial class PrintJobAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintJobAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintJobAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PrintJobAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PrintJobAdapterDirect : PrintJobAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.print.event.PrintJobAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PrintJobAttributeEvent - /// - /// - /// - public partial class PrintJobAttributeEvent : Javax.Print.Event.PrintEvent - { - const string _bridgeClassName = "javax.print.event.PrintJobAttributeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintJobAttributeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintJobAttributeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintJobAttributeListener - /// - /// - /// - public partial class PrintJobAttributeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintJobAttributeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintJobAttributeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PrintJobAttributeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PrintJobAttributeListenerDirect : PrintJobAttributeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.print.event.PrintJobAttributeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PrintJobEvent - /// - /// - /// - public partial class PrintJobEvent : Javax.Print.Event.PrintEvent - { - const string _bridgeClassName = "javax.print.event.PrintJobEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintJobEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintJobEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintJobListener - /// - /// - /// - public partial class PrintJobListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintJobListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintJobListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PrintJobListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PrintJobListenerDirect : PrintJobListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.print.event.PrintJobListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PrintServiceAttributeEvent - /// - /// - /// - public partial class PrintServiceAttributeEvent : Javax.Print.Event.PrintEvent - { - const string _bridgeClassName = "javax.print.event.PrintServiceAttributeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintServiceAttributeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintServiceAttributeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PrintServiceAttributeListener - /// - /// - /// - public partial class PrintServiceAttributeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintServiceAttributeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintServiceAttributeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PrintServiceAttributeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PrintServiceAttributeListenerDirect : PrintServiceAttributeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.print.event.PrintServiceAttributeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintEvent.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintEvent.cs index ce68769270..c7bab79981 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintEvent.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Event { - #region PrintEvent + #region PrintEvent declaration + /// + /// + /// + public partial class PrintEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.print.event.PrintEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintEvent implementation public partial class PrintEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintJobAdapter.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintJobAdapter.cs index b4bb0b5427..82646371c7 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintJobAdapter.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintJobAdapter.cs @@ -25,7 +25,74 @@ namespace Javax.Print.Event { - #region PrintJobAdapter + #region PrintJobAdapter declaration + /// + /// + /// + public partial class PrintJobAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintJobAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintJobAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PrintJobAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PrintJobAdapterDirect : PrintJobAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.print.event.PrintJobAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region PrintJobAdapter implementation public partial class PrintJobAdapter { #region Constructors @@ -195,7 +262,7 @@ public virtual void PrintJobRequiresAttention(Javax.Print.Event.PrintJobEvent ar } #endregion - #region PrintJobAdapterDirect + #region PrintJobAdapterDirect implementation public partial class PrintJobAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeEvent.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeEvent.cs index e852f739e8..b65069c67b 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeEvent.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Event { - #region PrintJobAttributeEvent + #region PrintJobAttributeEvent declaration + /// + /// + /// + public partial class PrintJobAttributeEvent : Javax.Print.Event.PrintEvent + { + const string _bridgeClassName = "javax.print.event.PrintJobAttributeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintJobAttributeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintJobAttributeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintJobAttributeEvent implementation public partial class PrintJobAttributeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeListener.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeListener.cs index 2da7a08c9b..99242b4c5c 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeListener.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintJobAttributeListener.cs @@ -25,6 +25,73 @@ namespace Javax.Print.Event { + #region PrintJobAttributeListener declaration + /// + /// + /// + public partial class PrintJobAttributeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintJobAttributeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintJobAttributeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PrintJobAttributeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PrintJobAttributeListenerDirect : PrintJobAttributeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.print.event.PrintJobAttributeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IPrintJobAttributeListener /// /// .NET interface for org.mases.jnet.generated.javax.print.event.PrintJobAttributeListener implementing @@ -48,7 +115,7 @@ public partial interface IPrintJobAttributeListener } #endregion - #region PrintJobAttributeListener + #region PrintJobAttributeListener implementation public partial class PrintJobAttributeListener : Javax.Print.Event.IPrintJobAttributeListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void AttributeUpdate(Javax.Print.Event.PrintJobAttributeEvent arg } #endregion - #region PrintJobAttributeListenerDirect + #region PrintJobAttributeListenerDirect implementation public partial class PrintJobAttributeListenerDirect : Javax.Print.Event.IPrintJobAttributeListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintJobEvent.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintJobEvent.cs index 184bec7677..69327af647 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintJobEvent.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintJobEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Event { - #region PrintJobEvent + #region PrintJobEvent declaration + /// + /// + /// + public partial class PrintJobEvent : Javax.Print.Event.PrintEvent + { + const string _bridgeClassName = "javax.print.event.PrintJobEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintJobEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintJobEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintJobEvent implementation public partial class PrintJobEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintJobListener.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintJobListener.cs index 548b9854c9..06b73ec8ab 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintJobListener.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintJobListener.cs @@ -25,6 +25,73 @@ namespace Javax.Print.Event { + #region PrintJobListener declaration + /// + /// + /// + public partial class PrintJobListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintJobListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintJobListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PrintJobListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PrintJobListenerDirect : PrintJobListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.print.event.PrintJobListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IPrintJobListener /// /// .NET interface for org.mases.jnet.generated.javax.print.event.PrintJobListener implementing @@ -73,7 +140,7 @@ public partial interface IPrintJobListener } #endregion - #region PrintJobListener + #region PrintJobListener implementation public partial class PrintJobListener : Javax.Print.Event.IPrintJobListener { #region Constructors @@ -243,7 +310,7 @@ public virtual void PrintJobRequiresAttention(Javax.Print.Event.PrintJobEvent ar } #endregion - #region PrintJobListenerDirect + #region PrintJobListenerDirect implementation public partial class PrintJobListenerDirect : Javax.Print.Event.IPrintJobListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeEvent.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeEvent.cs index 63fdc4fbd8..a98bdaa608 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeEvent.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Print.Event { - #region PrintServiceAttributeEvent + #region PrintServiceAttributeEvent declaration + /// + /// + /// + public partial class PrintServiceAttributeEvent : Javax.Print.Event.PrintEvent + { + const string _bridgeClassName = "javax.print.event.PrintServiceAttributeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintServiceAttributeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintServiceAttributeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintServiceAttributeEvent implementation public partial class PrintServiceAttributeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeListener.cs b/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeListener.cs index c9463d50d0..83d32730c2 100644 --- a/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeListener.cs +++ b/src/net/JNet/Generated/Javax/Print/Event/PrintServiceAttributeListener.cs @@ -25,6 +25,73 @@ namespace Javax.Print.Event { + #region PrintServiceAttributeListener declaration + /// + /// + /// + public partial class PrintServiceAttributeListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintServiceAttributeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.print.event.PrintServiceAttributeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PrintServiceAttributeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PrintServiceAttributeListenerDirect : PrintServiceAttributeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.print.event.PrintServiceAttributeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IPrintServiceAttributeListener /// /// .NET interface for org.mases.jnet.generated.javax.print.event.PrintServiceAttributeListener implementing @@ -48,7 +115,7 @@ public partial interface IPrintServiceAttributeListener } #endregion - #region PrintServiceAttributeListener + #region PrintServiceAttributeListener implementation public partial class PrintServiceAttributeListener : Javax.Print.Event.IPrintServiceAttributeListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void AttributeUpdate(Javax.Print.Event.PrintServiceAttributeEvent } #endregion - #region PrintServiceAttributeListenerDirect + #region PrintServiceAttributeListenerDirect implementation public partial class PrintServiceAttributeListenerDirect : Javax.Print.Event.IPrintServiceAttributeListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/FlavorException.cs b/src/net/JNet/Generated/Javax/Print/FlavorException.cs index 9974ea1be3..f45ef555ae 100644 --- a/src/net/JNet/Generated/Javax/Print/FlavorException.cs +++ b/src/net/JNet/Generated/Javax/Print/FlavorException.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region FlavorException declaration + /// + /// + /// + public partial class FlavorException : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.FlavorException"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FlavorException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlavorException() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FlavorException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlavorException(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFlavorException /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IFlavorException } #endregion - #region FlavorException + #region FlavorException implementation public partial class FlavorException : Javax.Print.IFlavorException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/MultiDoc.cs b/src/net/JNet/Generated/Javax/Print/MultiDoc.cs index f8f0ce01cb..9b83d3857d 100644 --- a/src/net/JNet/Generated/Javax/Print/MultiDoc.cs +++ b/src/net/JNet/Generated/Javax/Print/MultiDoc.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region MultiDoc declaration + /// + /// + /// + public partial class MultiDoc : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.MultiDoc"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MultiDoc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiDoc() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MultiDoc class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiDoc(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMultiDoc /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IMultiDoc } #endregion - #region MultiDoc + #region MultiDoc implementation public partial class MultiDoc : Javax.Print.IMultiDoc { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/MultiDocPrintJob.cs b/src/net/JNet/Generated/Javax/Print/MultiDocPrintJob.cs index 51fd1d5a0e..ea6dbc9c02 100644 --- a/src/net/JNet/Generated/Javax/Print/MultiDocPrintJob.cs +++ b/src/net/JNet/Generated/Javax/Print/MultiDocPrintJob.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region MultiDocPrintJob declaration + /// + /// + /// + public partial class MultiDocPrintJob : Javax.Print.DocPrintJob + { + const string _bridgeClassName = "javax.print.MultiDocPrintJob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MultiDocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiDocPrintJob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MultiDocPrintJob class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiDocPrintJob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMultiDocPrintJob /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IMultiDocPrintJob : Javax.Print.IDocPrintJob } #endregion - #region MultiDocPrintJob + #region MultiDocPrintJob implementation public partial class MultiDocPrintJob : Javax.Print.IMultiDocPrintJob { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/MultiDocPrintService.cs b/src/net/JNet/Generated/Javax/Print/MultiDocPrintService.cs index 4fbc88a0d7..7e2e802223 100644 --- a/src/net/JNet/Generated/Javax/Print/MultiDocPrintService.cs +++ b/src/net/JNet/Generated/Javax/Print/MultiDocPrintService.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region MultiDocPrintService declaration + /// + /// + /// + public partial class MultiDocPrintService : Javax.Print.PrintService + { + const string _bridgeClassName = "javax.print.MultiDocPrintService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MultiDocPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiDocPrintService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MultiDocPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MultiDocPrintService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMultiDocPrintService /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IMultiDocPrintService : Javax.Print.IPrintService } #endregion - #region MultiDocPrintService + #region MultiDocPrintService implementation public partial class MultiDocPrintService : Javax.Print.IMultiDocPrintService { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/PrintException.cs b/src/net/JNet/Generated/Javax/Print/PrintException.cs index 2b6e333cb9..0e9bd978d0 100644 --- a/src/net/JNet/Generated/Javax/Print/PrintException.cs +++ b/src/net/JNet/Generated/Javax/Print/PrintException.cs @@ -25,7 +25,24 @@ namespace Javax.Print { - #region PrintException + #region PrintException declaration + /// + /// + /// + public partial class PrintException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.print.PrintException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region PrintException implementation public partial class PrintException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/PrintService.cs b/src/net/JNet/Generated/Javax/Print/PrintService.cs index 7243be0c2d..4346b306b8 100644 --- a/src/net/JNet/Generated/Javax/Print/PrintService.cs +++ b/src/net/JNet/Generated/Javax/Print/PrintService.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region PrintService declaration + /// + /// + /// + public partial class PrintService : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.PrintService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPrintService /// /// .NET interface for TO BE DEFINED FROM USER @@ -126,7 +173,7 @@ public partial interface IPrintService } #endregion - #region PrintService + #region PrintService implementation public partial class PrintService : Javax.Print.IPrintService { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/PrintServiceLookup.cs b/src/net/JNet/Generated/Javax/Print/PrintServiceLookup.cs index 47561cd530..d199d41a09 100644 --- a/src/net/JNet/Generated/Javax/Print/PrintServiceLookup.cs +++ b/src/net/JNet/Generated/Javax/Print/PrintServiceLookup.cs @@ -25,7 +25,54 @@ namespace Javax.Print { - #region PrintServiceLookup + #region PrintServiceLookup declaration + /// + /// + /// + public partial class PrintServiceLookup : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.PrintServiceLookup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PrintServiceLookup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintServiceLookup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PrintServiceLookup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PrintServiceLookup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrintServiceLookup implementation public partial class PrintServiceLookup { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/ServiceUI.cs b/src/net/JNet/Generated/Javax/Print/ServiceUI.cs index 7ebeb49aa5..61d9a682e5 100644 --- a/src/net/JNet/Generated/Javax/Print/ServiceUI.cs +++ b/src/net/JNet/Generated/Javax/Print/ServiceUI.cs @@ -25,7 +25,52 @@ namespace Javax.Print { - #region ServiceUI + #region ServiceUI declaration + /// + /// + /// + public partial class ServiceUI : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.ServiceUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ServiceUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ServiceUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServiceUI implementation public partial class ServiceUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/ServiceUIFactory.cs b/src/net/JNet/Generated/Javax/Print/ServiceUIFactory.cs index d441eb9057..e5120865db 100644 --- a/src/net/JNet/Generated/Javax/Print/ServiceUIFactory.cs +++ b/src/net/JNet/Generated/Javax/Print/ServiceUIFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Print { - #region ServiceUIFactory + #region ServiceUIFactory declaration + /// + /// + /// + public partial class ServiceUIFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.ServiceUIFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ServiceUIFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ServiceUIFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ServiceUIFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ServiceUIFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServiceUIFactory implementation public partial class ServiceUIFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/SimpleDoc.cs b/src/net/JNet/Generated/Javax/Print/SimpleDoc.cs index cd23a6e5cb..82093df8f8 100644 --- a/src/net/JNet/Generated/Javax/Print/SimpleDoc.cs +++ b/src/net/JNet/Generated/Javax/Print/SimpleDoc.cs @@ -25,7 +25,52 @@ namespace Javax.Print { - #region SimpleDoc + #region SimpleDoc declaration + /// + /// + /// + public partial class SimpleDoc : Javax.Print.Doc + { + const string _bridgeClassName = "javax.print.SimpleDoc"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleDoc() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleDoc(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleDoc implementation public partial class SimpleDoc { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/StreamPrintService.cs b/src/net/JNet/Generated/Javax/Print/StreamPrintService.cs index 9e41e41236..70aaae15fd 100644 --- a/src/net/JNet/Generated/Javax/Print/StreamPrintService.cs +++ b/src/net/JNet/Generated/Javax/Print/StreamPrintService.cs @@ -25,7 +25,54 @@ namespace Javax.Print { - #region StreamPrintService + #region StreamPrintService declaration + /// + /// + /// + public partial class StreamPrintService : Javax.Print.PrintService + { + const string _bridgeClassName = "javax.print.StreamPrintService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StreamPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StreamPrintService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StreamPrintService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StreamPrintService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamPrintService implementation public partial class StreamPrintService { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/StreamPrintServiceFactory.cs b/src/net/JNet/Generated/Javax/Print/StreamPrintServiceFactory.cs index 8cfb42e00c..22a496ebc7 100644 --- a/src/net/JNet/Generated/Javax/Print/StreamPrintServiceFactory.cs +++ b/src/net/JNet/Generated/Javax/Print/StreamPrintServiceFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Print { - #region StreamPrintServiceFactory + #region StreamPrintServiceFactory declaration + /// + /// + /// + public partial class StreamPrintServiceFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.StreamPrintServiceFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StreamPrintServiceFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StreamPrintServiceFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StreamPrintServiceFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StreamPrintServiceFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamPrintServiceFactory implementation public partial class StreamPrintServiceFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Print/URIException.cs b/src/net/JNet/Generated/Javax/Print/URIException.cs index 773f200a2f..9cdfb52bb7 100644 --- a/src/net/JNet/Generated/Javax/Print/URIException.cs +++ b/src/net/JNet/Generated/Javax/Print/URIException.cs @@ -25,6 +25,53 @@ namespace Javax.Print { + #region URIException declaration + /// + /// + /// + public partial class URIException : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.print.URIException"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URIException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIException() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URIException class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIException(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IURIException /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IURIException } #endregion - #region URIException + #region URIException implementation public partial class URIException : Javax.Print.IURIException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Rmi/Ssl/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Rmi/Ssl/AllPackageClasses.cs deleted file mode 100644 index 0af9a7a26f..0000000000 --- a/src/net/JNet/Generated/Javax/Rmi/Ssl/AllPackageClasses.cs +++ /dev/null @@ -1,120 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Rmi.Ssl -{ - #region SslRMIClientSocketFactory - /// - /// - /// - public partial class SslRMIClientSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.rmi.ssl.SslRMIClientSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SslRMIClientSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SslRMIClientSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SslRMIServerSocketFactory - /// - /// - /// - public partial class SslRMIServerSocketFactory : Java.Rmi.Server.RMIServerSocketFactory - { - const string _bridgeClassName = "javax.rmi.ssl.SslRMIServerSocketFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SslRMIServerSocketFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SslRMIServerSocketFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIClientSocketFactory.cs b/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIClientSocketFactory.cs index d6405325fd..92671be601 100644 --- a/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIClientSocketFactory.cs +++ b/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIClientSocketFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Rmi.Ssl { - #region SslRMIClientSocketFactory + #region SslRMIClientSocketFactory declaration + /// + /// + /// + public partial class SslRMIClientSocketFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.rmi.ssl.SslRMIClientSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SslRMIClientSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SslRMIClientSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SslRMIClientSocketFactory implementation public partial class SslRMIClientSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIServerSocketFactory.cs b/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIServerSocketFactory.cs index 8615ea2dcc..bffe6a0593 100644 --- a/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIServerSocketFactory.cs +++ b/src/net/JNet/Generated/Javax/Rmi/Ssl/SslRMIServerSocketFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Rmi.Ssl { - #region SslRMIServerSocketFactory + #region SslRMIServerSocketFactory declaration + /// + /// + /// + public partial class SslRMIServerSocketFactory : Java.Rmi.Server.RMIServerSocketFactory + { + const string _bridgeClassName = "javax.rmi.ssl.SslRMIServerSocketFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SslRMIServerSocketFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SslRMIServerSocketFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SslRMIServerSocketFactory implementation public partial class SslRMIServerSocketFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/AbstractScriptEngine.cs b/src/net/JNet/Generated/Javax/Script/AbstractScriptEngine.cs index 2e06e3d03f..bac2f137d9 100644 --- a/src/net/JNet/Generated/Javax/Script/AbstractScriptEngine.cs +++ b/src/net/JNet/Generated/Javax/Script/AbstractScriptEngine.cs @@ -25,7 +25,54 @@ namespace Javax.Script { - #region AbstractScriptEngine + #region AbstractScriptEngine declaration + /// + /// + /// + public partial class AbstractScriptEngine : Javax.Script.ScriptEngine + { + const string _bridgeClassName = "javax.script.AbstractScriptEngine"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractScriptEngine() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractScriptEngine(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractScriptEngine implementation public partial class AbstractScriptEngine { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Script/AllPackageClasses.cs deleted file mode 100644 index 4f3e98805b..0000000000 --- a/src/net/JNet/Generated/Javax/Script/AllPackageClasses.cs +++ /dev/null @@ -1,558 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Script -{ - #region AbstractScriptEngine - /// - /// - /// - public partial class AbstractScriptEngine : Javax.Script.ScriptEngine - { - const string _bridgeClassName = "javax.script.AbstractScriptEngine"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractScriptEngine() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractScriptEngine(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Bindings - /// - /// - /// - public partial class Bindings : Java.Util.Map - { - const string _bridgeClassName = "javax.script.Bindings"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Bindings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Bindings() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Bindings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Bindings(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Compilable - /// - /// - /// - public partial class Compilable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.Compilable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Compilable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Compilable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Compilable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Compilable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompiledScript - /// - /// - /// - public partial class CompiledScript : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.CompiledScript"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompiledScript class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompiledScript() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompiledScript class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompiledScript(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Invocable - /// - /// - /// - public partial class Invocable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.Invocable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Invocable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Invocable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Invocable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Invocable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScriptContext - /// - /// - /// - public partial class ScriptContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.ScriptContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScriptContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScriptContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScriptContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScriptContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScriptEngine - /// - /// - /// - public partial class ScriptEngine : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.ScriptEngine"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScriptEngine() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScriptEngine(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScriptEngineFactory - /// - /// - /// - public partial class ScriptEngineFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.ScriptEngineFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScriptEngineFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScriptEngineFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScriptEngineFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScriptEngineFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScriptEngineManager - /// - /// - /// - public partial class ScriptEngineManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.script.ScriptEngineManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScriptEngineManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScriptEngineManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScriptException - /// - /// - /// - public partial class ScriptException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.script.ScriptException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SimpleBindings - /// - /// - /// - public partial class SimpleBindings : Javax.Script.Bindings - { - const string _bridgeClassName = "javax.script.SimpleBindings"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleBindings() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleBindings(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleScriptContext - /// - /// - /// - public partial class SimpleScriptContext : Javax.Script.ScriptContext - { - const string _bridgeClassName = "javax.script.SimpleScriptContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleScriptContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleScriptContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Script/Bindings.cs b/src/net/JNet/Generated/Javax/Script/Bindings.cs index 289573e517..821a50db14 100644 --- a/src/net/JNet/Generated/Javax/Script/Bindings.cs +++ b/src/net/JNet/Generated/Javax/Script/Bindings.cs @@ -25,6 +25,53 @@ namespace Javax.Script { + #region Bindings declaration + /// + /// + /// + public partial class Bindings : Java.Util.Map + { + const string _bridgeClassName = "javax.script.Bindings"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Bindings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Bindings() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Bindings class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Bindings(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBindings /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IBindings : Java.Util.IMap } #endregion - #region Bindings + #region Bindings implementation public partial class Bindings : Javax.Script.IBindings { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/Compilable.cs b/src/net/JNet/Generated/Javax/Script/Compilable.cs index 7b31e11237..0369a6673e 100644 --- a/src/net/JNet/Generated/Javax/Script/Compilable.cs +++ b/src/net/JNet/Generated/Javax/Script/Compilable.cs @@ -25,6 +25,53 @@ namespace Javax.Script { + #region Compilable declaration + /// + /// + /// + public partial class Compilable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.Compilable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Compilable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Compilable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Compilable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Compilable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICompilable /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface ICompilable } #endregion - #region Compilable + #region Compilable implementation public partial class Compilable : Javax.Script.ICompilable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/CompiledScript.cs b/src/net/JNet/Generated/Javax/Script/CompiledScript.cs index 20c973d692..8d9aa47792 100644 --- a/src/net/JNet/Generated/Javax/Script/CompiledScript.cs +++ b/src/net/JNet/Generated/Javax/Script/CompiledScript.cs @@ -25,7 +25,54 @@ namespace Javax.Script { - #region CompiledScript + #region CompiledScript declaration + /// + /// + /// + public partial class CompiledScript : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.CompiledScript"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompiledScript class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompiledScript() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompiledScript class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompiledScript(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompiledScript implementation public partial class CompiledScript { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/Invocable.cs b/src/net/JNet/Generated/Javax/Script/Invocable.cs index dc9e1c7c32..7a31684bbc 100644 --- a/src/net/JNet/Generated/Javax/Script/Invocable.cs +++ b/src/net/JNet/Generated/Javax/Script/Invocable.cs @@ -25,6 +25,53 @@ namespace Javax.Script { + #region Invocable declaration + /// + /// + /// + public partial class Invocable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.Invocable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Invocable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Invocable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Invocable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Invocable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IInvocable /// /// .NET interface for TO BE DEFINED FROM USER @@ -77,7 +124,7 @@ public partial interface IInvocable } #endregion - #region Invocable + #region Invocable implementation public partial class Invocable : Javax.Script.IInvocable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/ScriptContext.cs b/src/net/JNet/Generated/Javax/Script/ScriptContext.cs index b07f6e6791..e13eaf6835 100644 --- a/src/net/JNet/Generated/Javax/Script/ScriptContext.cs +++ b/src/net/JNet/Generated/Javax/Script/ScriptContext.cs @@ -25,6 +25,53 @@ namespace Javax.Script { + #region ScriptContext declaration + /// + /// + /// + public partial class ScriptContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.ScriptContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScriptContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScriptContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScriptContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScriptContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScriptContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -104,7 +151,7 @@ public partial interface IScriptContext } #endregion - #region ScriptContext + #region ScriptContext implementation public partial class ScriptContext : Javax.Script.IScriptContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/ScriptEngine.cs b/src/net/JNet/Generated/Javax/Script/ScriptEngine.cs index 9035912ef5..3d158ab37d 100644 --- a/src/net/JNet/Generated/Javax/Script/ScriptEngine.cs +++ b/src/net/JNet/Generated/Javax/Script/ScriptEngine.cs @@ -25,6 +25,53 @@ namespace Javax.Script { + #region ScriptEngine declaration + /// + /// + /// + public partial class ScriptEngine : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.ScriptEngine"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScriptEngine() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScriptEngine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScriptEngine(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScriptEngine /// /// .NET interface for TO BE DEFINED FROM USER @@ -126,7 +173,7 @@ public partial interface IScriptEngine } #endregion - #region ScriptEngine + #region ScriptEngine implementation public partial class ScriptEngine : Javax.Script.IScriptEngine { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/ScriptEngineFactory.cs b/src/net/JNet/Generated/Javax/Script/ScriptEngineFactory.cs index 4b6d929b16..068e97a278 100644 --- a/src/net/JNet/Generated/Javax/Script/ScriptEngineFactory.cs +++ b/src/net/JNet/Generated/Javax/Script/ScriptEngineFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Script { + #region ScriptEngineFactory declaration + /// + /// + /// + public partial class ScriptEngineFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.ScriptEngineFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScriptEngineFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScriptEngineFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScriptEngineFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScriptEngineFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScriptEngineFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -101,7 +148,7 @@ public partial interface IScriptEngineFactory } #endregion - #region ScriptEngineFactory + #region ScriptEngineFactory implementation public partial class ScriptEngineFactory : Javax.Script.IScriptEngineFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/ScriptEngineManager.cs b/src/net/JNet/Generated/Javax/Script/ScriptEngineManager.cs index ddef3d95de..464346e726 100644 --- a/src/net/JNet/Generated/Javax/Script/ScriptEngineManager.cs +++ b/src/net/JNet/Generated/Javax/Script/ScriptEngineManager.cs @@ -25,7 +25,52 @@ namespace Javax.Script { - #region ScriptEngineManager + #region ScriptEngineManager declaration + /// + /// + /// + public partial class ScriptEngineManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.script.ScriptEngineManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScriptEngineManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScriptEngineManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScriptEngineManager implementation public partial class ScriptEngineManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/ScriptException.cs b/src/net/JNet/Generated/Javax/Script/ScriptException.cs index e6cb003bd9..e300d1348e 100644 --- a/src/net/JNet/Generated/Javax/Script/ScriptException.cs +++ b/src/net/JNet/Generated/Javax/Script/ScriptException.cs @@ -25,7 +25,24 @@ namespace Javax.Script { - #region ScriptException + #region ScriptException declaration + /// + /// + /// + public partial class ScriptException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.script.ScriptException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ScriptException implementation public partial class ScriptException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/SimpleBindings.cs b/src/net/JNet/Generated/Javax/Script/SimpleBindings.cs index 56edb6e7b0..970989e341 100644 --- a/src/net/JNet/Generated/Javax/Script/SimpleBindings.cs +++ b/src/net/JNet/Generated/Javax/Script/SimpleBindings.cs @@ -25,7 +25,52 @@ namespace Javax.Script { - #region SimpleBindings + #region SimpleBindings declaration + /// + /// + /// + public partial class SimpleBindings : Javax.Script.Bindings + { + const string _bridgeClassName = "javax.script.SimpleBindings"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleBindings() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleBindings(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleBindings implementation public partial class SimpleBindings { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Script/SimpleScriptContext.cs b/src/net/JNet/Generated/Javax/Script/SimpleScriptContext.cs index c5e39f188c..a0a1dd9a6d 100644 --- a/src/net/JNet/Generated/Javax/Script/SimpleScriptContext.cs +++ b/src/net/JNet/Generated/Javax/Script/SimpleScriptContext.cs @@ -25,7 +25,52 @@ namespace Javax.Script { - #region SimpleScriptContext + #region SimpleScriptContext declaration + /// + /// + /// + public partial class SimpleScriptContext : Javax.Script.ScriptContext + { + const string _bridgeClassName = "javax.script.SimpleScriptContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleScriptContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleScriptContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleScriptContext implementation public partial class SimpleScriptContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Auth/AllPackageClasses.cs deleted file mode 100644 index 49dce03fc1..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Auth/AllPackageClasses.cs +++ /dev/null @@ -1,338 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Auth -{ - #region AuthPermission - /// - /// - /// - public partial class AuthPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.security.auth.AuthPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AuthPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AuthPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Destroyable - /// - /// - /// - public partial class Destroyable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.Destroyable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Destroyable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Destroyable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Destroyable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Destroyable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DestroyFailedException - /// - /// - /// - public partial class DestroyFailedException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.security.auth.DestroyFailedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region PrivateCredentialPermission - /// - /// - /// - public partial class PrivateCredentialPermission : Java.Security.Permission - { - const string _bridgeClassName = "javax.security.auth.PrivateCredentialPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrivateCredentialPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrivateCredentialPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Refreshable - /// - /// - /// - public partial class Refreshable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.Refreshable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Refreshable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Refreshable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Refreshable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Refreshable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RefreshFailedException - /// - /// - /// - public partial class RefreshFailedException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.security.auth.RefreshFailedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Subject - /// - /// - /// - public partial class Subject : Java.Io.Serializable - { - const string _bridgeClassName = "javax.security.auth.Subject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Subject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Subject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SubjectDomainCombiner - /// - /// - /// - public partial class SubjectDomainCombiner : Java.Security.DomainCombiner - { - const string _bridgeClassName = "javax.security.auth.SubjectDomainCombiner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SubjectDomainCombiner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SubjectDomainCombiner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Auth/AuthPermission.cs b/src/net/JNet/Generated/Javax/Security/Auth/AuthPermission.cs index 8cc218c8b1..ab43591d06 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/AuthPermission.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/AuthPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth { - #region AuthPermission + #region AuthPermission declaration + /// + /// + /// + public partial class AuthPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.security.auth.AuthPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AuthPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AuthPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AuthPermission implementation public partial class AuthPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/AllPackageClasses.cs deleted file mode 100644 index 26a484a26e..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/AllPackageClasses.cs +++ /dev/null @@ -1,456 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Auth.Callback -{ - #region Callback - /// - /// - /// - public partial class Callback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.Callback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Callback class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Callback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Callback class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Callback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CallbackHandler - /// - /// - /// - public partial class CallbackHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.CallbackHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CallbackHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CallbackHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CallbackHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CallbackHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChoiceCallback - /// - /// - /// - public partial class ChoiceCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.ChoiceCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChoiceCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChoiceCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConfirmationCallback - /// - /// - /// - public partial class ConfirmationCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.ConfirmationCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConfirmationCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConfirmationCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LanguageCallback - /// - /// - /// - public partial class LanguageCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.LanguageCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LanguageCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LanguageCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NameCallback - /// - /// - /// - public partial class NameCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.NameCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NameCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NameCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PasswordCallback - /// - /// - /// - public partial class PasswordCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.PasswordCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PasswordCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PasswordCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextInputCallback - /// - /// - /// - public partial class TextInputCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.TextInputCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextInputCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextInputCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextOutputCallback - /// - /// - /// - public partial class TextOutputCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.callback.TextOutputCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextOutputCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextOutputCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedCallbackException - /// - /// - /// - public partial class UnsupportedCallbackException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.security.auth.callback.UnsupportedCallbackException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/Callback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/Callback.cs index 609c9c42fd..c5b64d248f 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/Callback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/Callback.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Auth.Callback { + #region Callback declaration + /// + /// + /// + public partial class Callback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.Callback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Callback class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Callback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Callback class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Callback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICallback /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICallback } #endregion - #region Callback + #region Callback implementation public partial class Callback : Javax.Security.Auth.Callback.ICallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/CallbackHandler.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/CallbackHandler.cs index d3347d9b3f..551675779e 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/CallbackHandler.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/CallbackHandler.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Auth.Callback { + #region CallbackHandler declaration + /// + /// + /// + public partial class CallbackHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.CallbackHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CallbackHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CallbackHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CallbackHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CallbackHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICallbackHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface ICallbackHandler } #endregion - #region CallbackHandler + #region CallbackHandler implementation public partial class CallbackHandler : Javax.Security.Auth.Callback.ICallbackHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/ChoiceCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/ChoiceCallback.cs index 244e179b9f..bb5fe17d30 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/ChoiceCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/ChoiceCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region ChoiceCallback + #region ChoiceCallback declaration + /// + /// + /// + public partial class ChoiceCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.ChoiceCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChoiceCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChoiceCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChoiceCallback implementation public partial class ChoiceCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/ConfirmationCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/ConfirmationCallback.cs index 16c4c13484..fcd049d15b 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/ConfirmationCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/ConfirmationCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region ConfirmationCallback + #region ConfirmationCallback declaration + /// + /// + /// + public partial class ConfirmationCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.ConfirmationCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConfirmationCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConfirmationCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConfirmationCallback implementation public partial class ConfirmationCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/LanguageCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/LanguageCallback.cs index 0eca9d2087..bd9032f7f9 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/LanguageCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/LanguageCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region LanguageCallback + #region LanguageCallback declaration + /// + /// + /// + public partial class LanguageCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.LanguageCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LanguageCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LanguageCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LanguageCallback implementation public partial class LanguageCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/NameCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/NameCallback.cs index bbd892af6d..3cfc6995eb 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/NameCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/NameCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region NameCallback + #region NameCallback declaration + /// + /// + /// + public partial class NameCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.NameCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NameCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NameCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NameCallback implementation public partial class NameCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/PasswordCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/PasswordCallback.cs index 0e8285ce6c..2a16234056 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/PasswordCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/PasswordCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region PasswordCallback + #region PasswordCallback declaration + /// + /// + /// + public partial class PasswordCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.PasswordCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PasswordCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PasswordCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PasswordCallback implementation public partial class PasswordCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextInputCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextInputCallback.cs index 98a293c293..a7d75078c0 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextInputCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextInputCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region TextInputCallback + #region TextInputCallback declaration + /// + /// + /// + public partial class TextInputCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.TextInputCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextInputCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextInputCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextInputCallback implementation public partial class TextInputCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextOutputCallback.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextOutputCallback.cs index 78fdd2989e..05ed4bc807 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextOutputCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/TextOutputCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Callback { - #region TextOutputCallback + #region TextOutputCallback declaration + /// + /// + /// + public partial class TextOutputCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.callback.TextOutputCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextOutputCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextOutputCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextOutputCallback implementation public partial class TextOutputCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Callback/UnsupportedCallbackException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Callback/UnsupportedCallbackException.cs index 8de1516355..38018e3b62 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Callback/UnsupportedCallbackException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Callback/UnsupportedCallbackException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Callback { - #region UnsupportedCallbackException + #region UnsupportedCallbackException declaration + /// + /// + /// + public partial class UnsupportedCallbackException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.security.auth.callback.UnsupportedCallbackException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedCallbackException implementation public partial class UnsupportedCallbackException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/DestroyFailedException.cs b/src/net/JNet/Generated/Javax/Security/Auth/DestroyFailedException.cs index 23e48c12ef..8eb1e05119 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/DestroyFailedException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/DestroyFailedException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth { - #region DestroyFailedException + #region DestroyFailedException declaration + /// + /// + /// + public partial class DestroyFailedException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.security.auth.DestroyFailedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DestroyFailedException implementation public partial class DestroyFailedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Destroyable.cs b/src/net/JNet/Generated/Javax/Security/Auth/Destroyable.cs index b8a77ed13f..18ed25fa7f 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Destroyable.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Destroyable.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Auth { + #region Destroyable declaration + /// + /// + /// + public partial class Destroyable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.Destroyable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Destroyable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Destroyable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Destroyable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Destroyable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDestroyable /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IDestroyable } #endregion - #region Destroyable + #region Destroyable implementation public partial class Destroyable : Javax.Security.Auth.IDestroyable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/AllPackageClasses.cs deleted file mode 100644 index 9a07d9cda6..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/AllPackageClasses.cs +++ /dev/null @@ -1,390 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Auth.Kerberos -{ - #region DelegationPermission - /// - /// - /// - public partial class DelegationPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.security.auth.kerberos.DelegationPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DelegationPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DelegationPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EncryptionKey - /// - /// - /// - public partial class EncryptionKey : Javax.Crypto.SecretKey - { - const string _bridgeClassName = "javax.security.auth.kerberos.EncryptionKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EncryptionKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EncryptionKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KerberosCredMessage - /// - /// - /// - public partial class KerberosCredMessage : Javax.Security.Auth.Destroyable - { - const string _bridgeClassName = "javax.security.auth.kerberos.KerberosCredMessage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KerberosCredMessage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KerberosCredMessage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KerberosKey - /// - /// - /// - public partial class KerberosKey : Javax.Crypto.SecretKey - { - const string _bridgeClassName = "javax.security.auth.kerberos.KerberosKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KerberosKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KerberosKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KerberosPrincipal - /// - /// - /// - public partial class KerberosPrincipal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.kerberos.KerberosPrincipal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KerberosPrincipal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KerberosPrincipal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KerberosTicket - /// - /// - /// - public partial class KerberosTicket : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.kerberos.KerberosTicket"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KerberosTicket() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KerberosTicket(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyTab - /// - /// - /// - public partial class KeyTab : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.kerberos.KeyTab"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyTab() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyTab(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ServicePermission - /// - /// - /// - public partial class ServicePermission : Java.Security.Permission - { - const string _bridgeClassName = "javax.security.auth.kerberos.ServicePermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ServicePermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ServicePermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/DelegationPermission.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/DelegationPermission.cs index cb73e3b9cc..52c909ad07 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/DelegationPermission.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/DelegationPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region DelegationPermission + #region DelegationPermission declaration + /// + /// + /// + public partial class DelegationPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.security.auth.kerberos.DelegationPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DelegationPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DelegationPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DelegationPermission implementation public partial class DelegationPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/EncryptionKey.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/EncryptionKey.cs index 0ca18dda77..8f5558e074 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/EncryptionKey.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/EncryptionKey.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region EncryptionKey + #region EncryptionKey declaration + /// + /// + /// + public partial class EncryptionKey : Javax.Crypto.SecretKey + { + const string _bridgeClassName = "javax.security.auth.kerberos.EncryptionKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EncryptionKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EncryptionKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EncryptionKey implementation public partial class EncryptionKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosCredMessage.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosCredMessage.cs index ef1b968bb9..47fd1846b4 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosCredMessage.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosCredMessage.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region KerberosCredMessage + #region KerberosCredMessage declaration + /// + /// + /// + public partial class KerberosCredMessage : Javax.Security.Auth.Destroyable + { + const string _bridgeClassName = "javax.security.auth.kerberos.KerberosCredMessage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KerberosCredMessage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KerberosCredMessage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KerberosCredMessage implementation public partial class KerberosCredMessage { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosKey.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosKey.cs index 4565f726f3..df64aaa324 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosKey.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosKey.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region KerberosKey + #region KerberosKey declaration + /// + /// + /// + public partial class KerberosKey : Javax.Crypto.SecretKey + { + const string _bridgeClassName = "javax.security.auth.kerberos.KerberosKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KerberosKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KerberosKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KerberosKey implementation public partial class KerberosKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosPrincipal.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosPrincipal.cs index 588d35df3a..b220ec6a3e 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosPrincipal.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosPrincipal.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region KerberosPrincipal + #region KerberosPrincipal declaration + /// + /// + /// + public partial class KerberosPrincipal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.kerberos.KerberosPrincipal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KerberosPrincipal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KerberosPrincipal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KerberosPrincipal implementation public partial class KerberosPrincipal { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosTicket.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosTicket.cs index 9672b82034..aa6d11dfe7 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosTicket.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KerberosTicket.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region KerberosTicket + #region KerberosTicket declaration + /// + /// + /// + public partial class KerberosTicket : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.kerberos.KerberosTicket"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KerberosTicket() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KerberosTicket(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KerberosTicket implementation public partial class KerberosTicket { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KeyTab.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KeyTab.cs index 81f1f581d2..d2b8680576 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KeyTab.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/KeyTab.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region KeyTab + #region KeyTab declaration + /// + /// + /// + public partial class KeyTab : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.kerberos.KeyTab"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyTab() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyTab(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyTab implementation public partial class KeyTab { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/ServicePermission.cs b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/ServicePermission.cs index 15c574ad35..06a7cfb770 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/ServicePermission.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Kerberos/ServicePermission.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Kerberos { - #region ServicePermission + #region ServicePermission declaration + /// + /// + /// + public partial class ServicePermission : Java.Security.Permission + { + const string _bridgeClassName = "javax.security.auth.kerberos.ServicePermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ServicePermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ServicePermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ServicePermission implementation public partial class ServicePermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountException.cs index a88715102b..8908b0a50b 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region AccountException + #region AccountException declaration + /// + /// + /// + public partial class AccountException : Javax.Security.Auth.Login.LoginException + { + const string _bridgeClassName = "javax.security.auth.login.AccountException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccountException implementation public partial class AccountException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountExpiredException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountExpiredException.cs index 7385b1df4d..315bd075a9 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountExpiredException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountExpiredException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region AccountExpiredException + #region AccountExpiredException declaration + /// + /// + /// + public partial class AccountExpiredException : Javax.Security.Auth.Login.AccountException + { + const string _bridgeClassName = "javax.security.auth.login.AccountExpiredException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccountExpiredException implementation public partial class AccountExpiredException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountLockedException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountLockedException.cs index 507e0126c1..17322fbe2f 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountLockedException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountLockedException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region AccountLockedException + #region AccountLockedException declaration + /// + /// + /// + public partial class AccountLockedException : Javax.Security.Auth.Login.AccountException + { + const string _bridgeClassName = "javax.security.auth.login.AccountLockedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccountLockedException implementation public partial class AccountLockedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountNotFoundException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountNotFoundException.cs index 58cc0085ad..77bc481999 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/AccountNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region AccountNotFoundException + #region AccountNotFoundException declaration + /// + /// + /// + public partial class AccountNotFoundException : Javax.Security.Auth.Login.AccountException + { + const string _bridgeClassName = "javax.security.auth.login.AccountNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AccountNotFoundException implementation public partial class AccountNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/AllPackageClasses.cs deleted file mode 100644 index ac9a9a0a49..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/AllPackageClasses.cs +++ /dev/null @@ -1,459 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Auth.Login -{ - #region AccountException - /// - /// - /// - public partial class AccountException : Javax.Security.Auth.Login.LoginException - { - const string _bridgeClassName = "javax.security.auth.login.AccountException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AccountExpiredException - /// - /// - /// - public partial class AccountExpiredException : Javax.Security.Auth.Login.AccountException - { - const string _bridgeClassName = "javax.security.auth.login.AccountExpiredException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AccountLockedException - /// - /// - /// - public partial class AccountLockedException : Javax.Security.Auth.Login.AccountException - { - const string _bridgeClassName = "javax.security.auth.login.AccountLockedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AccountNotFoundException - /// - /// - /// - public partial class AccountNotFoundException : Javax.Security.Auth.Login.AccountException - { - const string _bridgeClassName = "javax.security.auth.login.AccountNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AppConfigurationEntry - /// - /// - /// - public partial class AppConfigurationEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.login.AppConfigurationEntry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AppConfigurationEntry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AppConfigurationEntry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region LoginModuleControlFlag - /// - /// - /// - public partial class LoginModuleControlFlag : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.login.AppConfigurationEntry$LoginModuleControlFlag"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LoginModuleControlFlag() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LoginModuleControlFlag(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Configuration - /// - /// - /// - public partial class Configuration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.login.Configuration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Configuration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Configuration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Configuration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Configuration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Parameters - /// - /// - /// - public partial class Parameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.login.Configuration$Parameters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parameters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parameters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ConfigurationSpi - /// - /// - /// - public partial class ConfigurationSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.login.ConfigurationSpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConfigurationSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConfigurationSpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConfigurationSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConfigurationSpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CredentialException - /// - /// - /// - public partial class CredentialException : Javax.Security.Auth.Login.LoginException - { - const string _bridgeClassName = "javax.security.auth.login.CredentialException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CredentialExpiredException - /// - /// - /// - public partial class CredentialExpiredException : Javax.Security.Auth.Login.CredentialException - { - const string _bridgeClassName = "javax.security.auth.login.CredentialExpiredException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CredentialNotFoundException - /// - /// - /// - public partial class CredentialNotFoundException : Javax.Security.Auth.Login.CredentialException - { - const string _bridgeClassName = "javax.security.auth.login.CredentialNotFoundException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FailedLoginException - /// - /// - /// - public partial class FailedLoginException : Javax.Security.Auth.Login.LoginException - { - const string _bridgeClassName = "javax.security.auth.login.FailedLoginException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LoginContext - /// - /// - /// - public partial class LoginContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.login.LoginContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LoginContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LoginContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LoginException - /// - /// - /// - public partial class LoginException : Java.Security.GeneralSecurityException - { - const string _bridgeClassName = "javax.security.auth.login.LoginException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/AppConfigurationEntry.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/AppConfigurationEntry.cs index 5c65060519..d67cd64819 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/AppConfigurationEntry.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/AppConfigurationEntry.cs @@ -25,7 +25,97 @@ namespace Javax.Security.Auth.Login { - #region AppConfigurationEntry + #region AppConfigurationEntry declaration + /// + /// + /// + public partial class AppConfigurationEntry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.login.AppConfigurationEntry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AppConfigurationEntry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AppConfigurationEntry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region LoginModuleControlFlag declaration + /// + /// + /// + public partial class LoginModuleControlFlag : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.login.AppConfigurationEntry$LoginModuleControlFlag"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LoginModuleControlFlag() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LoginModuleControlFlag(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AppConfigurationEntry implementation public partial class AppConfigurationEntry { #region Constructors @@ -80,7 +170,7 @@ public Java.Lang.String LoginModuleName #endregion #region Nested classes - #region LoginModuleControlFlag + #region LoginModuleControlFlag implementation public partial class LoginModuleControlFlag { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/Configuration.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/Configuration.cs index 2619e6c72f..b15c905f18 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/Configuration.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/Configuration.cs @@ -25,7 +25,101 @@ namespace Javax.Security.Auth.Login { - #region Configuration + #region Configuration declaration + /// + /// + /// + public partial class Configuration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.login.Configuration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Configuration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Configuration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Configuration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Configuration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Parameters declaration + /// + /// + /// + public partial class Parameters : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.login.Configuration$Parameters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parameters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Parameters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parameters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Configuration implementation public partial class Configuration { #region Constructors @@ -137,7 +231,7 @@ public void Refresh() #endregion #region Nested classes - #region Parameters + #region Parameters implementation public partial class Parameters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/ConfigurationSpi.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/ConfigurationSpi.cs index 6e3e386805..a3a2b22958 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/ConfigurationSpi.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/ConfigurationSpi.cs @@ -25,7 +25,54 @@ namespace Javax.Security.Auth.Login { - #region ConfigurationSpi + #region ConfigurationSpi declaration + /// + /// + /// + public partial class ConfigurationSpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.login.ConfigurationSpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConfigurationSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConfigurationSpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConfigurationSpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConfigurationSpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConfigurationSpi implementation public partial class ConfigurationSpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialException.cs index 13e7463c67..9e3e6e52ea 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region CredentialException + #region CredentialException declaration + /// + /// + /// + public partial class CredentialException : Javax.Security.Auth.Login.LoginException + { + const string _bridgeClassName = "javax.security.auth.login.CredentialException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CredentialException implementation public partial class CredentialException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialExpiredException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialExpiredException.cs index c018e4646f..70f1ae797a 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialExpiredException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialExpiredException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region CredentialExpiredException + #region CredentialExpiredException declaration + /// + /// + /// + public partial class CredentialExpiredException : Javax.Security.Auth.Login.CredentialException + { + const string _bridgeClassName = "javax.security.auth.login.CredentialExpiredException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CredentialExpiredException implementation public partial class CredentialExpiredException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialNotFoundException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialNotFoundException.cs index 61a0ea55e9..b012d9cc86 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialNotFoundException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/CredentialNotFoundException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region CredentialNotFoundException + #region CredentialNotFoundException declaration + /// + /// + /// + public partial class CredentialNotFoundException : Javax.Security.Auth.Login.CredentialException + { + const string _bridgeClassName = "javax.security.auth.login.CredentialNotFoundException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CredentialNotFoundException implementation public partial class CredentialNotFoundException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/FailedLoginException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/FailedLoginException.cs index 6ae080772c..31ea6d8ad7 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/FailedLoginException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/FailedLoginException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region FailedLoginException + #region FailedLoginException declaration + /// + /// + /// + public partial class FailedLoginException : Javax.Security.Auth.Login.LoginException + { + const string _bridgeClassName = "javax.security.auth.login.FailedLoginException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FailedLoginException implementation public partial class FailedLoginException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginContext.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginContext.cs index 53f962b5e5..3384be580f 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginContext.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginContext.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.Login { - #region LoginContext + #region LoginContext declaration + /// + /// + /// + public partial class LoginContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.login.LoginContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LoginContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LoginContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LoginContext implementation public partial class LoginContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginException.cs b/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginException.cs index d591c60f20..7fd631efe1 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Login/LoginException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth.Login { - #region LoginException + #region LoginException declaration + /// + /// + /// + public partial class LoginException : Java.Security.GeneralSecurityException + { + const string _bridgeClassName = "javax.security.auth.login.LoginException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LoginException implementation public partial class LoginException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/PrivateCredentialPermission.cs b/src/net/JNet/Generated/Javax/Security/Auth/PrivateCredentialPermission.cs index 01c76e50e5..8d418db4e3 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/PrivateCredentialPermission.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/PrivateCredentialPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth { - #region PrivateCredentialPermission + #region PrivateCredentialPermission declaration + /// + /// + /// + public partial class PrivateCredentialPermission : Java.Security.Permission + { + const string _bridgeClassName = "javax.security.auth.PrivateCredentialPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrivateCredentialPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrivateCredentialPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PrivateCredentialPermission implementation public partial class PrivateCredentialPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/RefreshFailedException.cs b/src/net/JNet/Generated/Javax/Security/Auth/RefreshFailedException.cs index 01be11808f..8953546501 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/RefreshFailedException.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/RefreshFailedException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Auth { - #region RefreshFailedException + #region RefreshFailedException declaration + /// + /// + /// + public partial class RefreshFailedException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.security.auth.RefreshFailedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RefreshFailedException implementation public partial class RefreshFailedException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Refreshable.cs b/src/net/JNet/Generated/Javax/Security/Auth/Refreshable.cs index 11b353097e..29bfa8e8c1 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Refreshable.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Refreshable.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Auth { + #region Refreshable declaration + /// + /// + /// + public partial class Refreshable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.Refreshable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Refreshable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Refreshable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Refreshable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Refreshable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRefreshable /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IRefreshable } #endregion - #region Refreshable + #region Refreshable implementation public partial class Refreshable : Javax.Security.Auth.IRefreshable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Auth/Spi/AllPackageClasses.cs deleted file mode 100644 index 9e50c44d0e..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Auth/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,77 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Auth.Spi -{ - #region LoginModule - /// - /// - /// - public partial class LoginModule : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.spi.LoginModule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LoginModule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LoginModule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LoginModule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LoginModule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Spi/LoginModule.cs b/src/net/JNet/Generated/Javax/Security/Auth/Spi/LoginModule.cs index e9884f10f1..c65f5b86ed 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Spi/LoginModule.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Spi/LoginModule.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Auth.Spi { + #region LoginModule declaration + /// + /// + /// + public partial class LoginModule : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.spi.LoginModule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LoginModule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LoginModule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LoginModule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LoginModule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILoginModule /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface ILoginModule } #endregion - #region LoginModule + #region LoginModule implementation public partial class LoginModule : Javax.Security.Auth.Spi.ILoginModule { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/Subject.cs b/src/net/JNet/Generated/Javax/Security/Auth/Subject.cs index 1b7784ea0b..92eeb91ac5 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/Subject.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/Subject.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth { - #region Subject + #region Subject declaration + /// + /// + /// + public partial class Subject : Java.Io.Serializable + { + const string _bridgeClassName = "javax.security.auth.Subject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Subject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Subject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Subject implementation public partial class Subject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/SubjectDomainCombiner.cs b/src/net/JNet/Generated/Javax/Security/Auth/SubjectDomainCombiner.cs index 669f269285..37ee024b28 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/SubjectDomainCombiner.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/SubjectDomainCombiner.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth { - #region SubjectDomainCombiner + #region SubjectDomainCombiner declaration + /// + /// + /// + public partial class SubjectDomainCombiner : Java.Security.DomainCombiner + { + const string _bridgeClassName = "javax.security.auth.SubjectDomainCombiner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SubjectDomainCombiner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SubjectDomainCombiner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SubjectDomainCombiner implementation public partial class SubjectDomainCombiner { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/X500/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Auth/X500/AllPackageClasses.cs deleted file mode 100644 index c9c2a050cb..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Auth/X500/AllPackageClasses.cs +++ /dev/null @@ -1,120 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Auth.X500 -{ - #region X500Principal - /// - /// - /// - public partial class X500Principal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.auth.x500.X500Principal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public X500Principal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public X500Principal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X500PrivateCredential - /// - /// - /// - public partial class X500PrivateCredential : Javax.Security.Auth.Destroyable - { - const string _bridgeClassName = "javax.security.auth.x500.X500PrivateCredential"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public X500PrivateCredential() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public X500PrivateCredential(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Auth/X500/X500Principal.cs b/src/net/JNet/Generated/Javax/Security/Auth/X500/X500Principal.cs index ac034b0e80..1500c7562b 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/X500/X500Principal.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/X500/X500Principal.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.X500 { - #region X500Principal + #region X500Principal declaration + /// + /// + /// + public partial class X500Principal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.auth.x500.X500Principal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public X500Principal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public X500Principal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X500Principal implementation public partial class X500Principal { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Auth/X500/X500PrivateCredential.cs b/src/net/JNet/Generated/Javax/Security/Auth/X500/X500PrivateCredential.cs index 7c4aa9eeb6..5da3f07968 100644 --- a/src/net/JNet/Generated/Javax/Security/Auth/X500/X500PrivateCredential.cs +++ b/src/net/JNet/Generated/Javax/Security/Auth/X500/X500PrivateCredential.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Auth.X500 { - #region X500PrivateCredential + #region X500PrivateCredential declaration + /// + /// + /// + public partial class X500PrivateCredential : Javax.Security.Auth.Destroyable + { + const string _bridgeClassName = "javax.security.auth.x500.X500PrivateCredential"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public X500PrivateCredential() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public X500PrivateCredential(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region X500PrivateCredential implementation public partial class X500PrivateCredential { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Cert/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Cert/AllPackageClasses.cs deleted file mode 100644 index 65c6f6eacf..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Cert/AllPackageClasses.cs +++ /dev/null @@ -1,30 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Cert -{ - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Security/Sasl/AllPackageClasses.cs deleted file mode 100644 index 172c6b03b0..0000000000 --- a/src/net/JNet/Generated/Javax/Security/Sasl/AllPackageClasses.cs +++ /dev/null @@ -1,432 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Security.Sasl -{ - #region AuthenticationException - /// - /// - /// - public partial class AuthenticationException : Javax.Security.Sasl.SaslException - { - const string _bridgeClassName = "javax.security.sasl.AuthenticationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region AuthorizeCallback - /// - /// - /// - public partial class AuthorizeCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.sasl.AuthorizeCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AuthorizeCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AuthorizeCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RealmCallback - /// - /// - /// - public partial class RealmCallback : Javax.Security.Auth.Callback.TextInputCallback - { - const string _bridgeClassName = "javax.security.sasl.RealmCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RealmCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RealmCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RealmChoiceCallback - /// - /// - /// - public partial class RealmChoiceCallback : Javax.Security.Auth.Callback.ChoiceCallback - { - const string _bridgeClassName = "javax.security.sasl.RealmChoiceCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RealmChoiceCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RealmChoiceCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Sasl - /// - /// - /// - public partial class Sasl : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.sasl.Sasl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Sasl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Sasl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SaslClient - /// - /// - /// - public partial class SaslClient : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.sasl.SaslClient"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SaslClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslClient() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SaslClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslClient(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SaslClientFactory - /// - /// - /// - public partial class SaslClientFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.sasl.SaslClientFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SaslClientFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslClientFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SaslClientFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslClientFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SaslException - /// - /// - /// - public partial class SaslException : Java.Io.IOException - { - const string _bridgeClassName = "javax.security.sasl.SaslException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SaslServer - /// - /// - /// - public partial class SaslServer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.sasl.SaslServer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SaslServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslServer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SaslServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslServer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SaslServerFactory - /// - /// - /// - public partial class SaslServerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.security.sasl.SaslServerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SaslServerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslServerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SaslServerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SaslServerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/AuthenticationException.cs b/src/net/JNet/Generated/Javax/Security/Sasl/AuthenticationException.cs index 206c1e5f7c..289a1fc22d 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/AuthenticationException.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/AuthenticationException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Sasl { - #region AuthenticationException + #region AuthenticationException declaration + /// + /// + /// + public partial class AuthenticationException : Javax.Security.Sasl.SaslException + { + const string _bridgeClassName = "javax.security.sasl.AuthenticationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region AuthenticationException implementation public partial class AuthenticationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/AuthorizeCallback.cs b/src/net/JNet/Generated/Javax/Security/Sasl/AuthorizeCallback.cs index 33166f66b7..83cda34de3 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/AuthorizeCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/AuthorizeCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Sasl { - #region AuthorizeCallback + #region AuthorizeCallback declaration + /// + /// + /// + public partial class AuthorizeCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.sasl.AuthorizeCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AuthorizeCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AuthorizeCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AuthorizeCallback implementation public partial class AuthorizeCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/RealmCallback.cs b/src/net/JNet/Generated/Javax/Security/Sasl/RealmCallback.cs index 8caed0d17f..09e3649e34 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/RealmCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/RealmCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Sasl { - #region RealmCallback + #region RealmCallback declaration + /// + /// + /// + public partial class RealmCallback : Javax.Security.Auth.Callback.TextInputCallback + { + const string _bridgeClassName = "javax.security.sasl.RealmCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RealmCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RealmCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RealmCallback implementation public partial class RealmCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/RealmChoiceCallback.cs b/src/net/JNet/Generated/Javax/Security/Sasl/RealmChoiceCallback.cs index f3b4c45e47..dfa5b747d2 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/RealmChoiceCallback.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/RealmChoiceCallback.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Sasl { - #region RealmChoiceCallback + #region RealmChoiceCallback declaration + /// + /// + /// + public partial class RealmChoiceCallback : Javax.Security.Auth.Callback.ChoiceCallback + { + const string _bridgeClassName = "javax.security.sasl.RealmChoiceCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RealmChoiceCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RealmChoiceCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RealmChoiceCallback implementation public partial class RealmChoiceCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/Sasl.cs b/src/net/JNet/Generated/Javax/Security/Sasl/Sasl.cs index 1996998a95..98fdd0b2f7 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/Sasl.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/Sasl.cs @@ -25,7 +25,52 @@ namespace Javax.Security.Sasl { - #region Sasl + #region Sasl declaration + /// + /// + /// + public partial class Sasl : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.sasl.Sasl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Sasl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Sasl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Sasl implementation public partial class Sasl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/SaslClient.cs b/src/net/JNet/Generated/Javax/Security/Sasl/SaslClient.cs index 6b419425ac..8cafea206b 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/SaslClient.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/SaslClient.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Sasl { + #region SaslClient declaration + /// + /// + /// + public partial class SaslClient : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.sasl.SaslClient"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SaslClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslClient() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SaslClient class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslClient(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISaslClient /// /// .NET interface for TO BE DEFINED FROM USER @@ -93,7 +140,7 @@ public partial interface ISaslClient } #endregion - #region SaslClient + #region SaslClient implementation public partial class SaslClient : Javax.Security.Sasl.ISaslClient { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/SaslClientFactory.cs b/src/net/JNet/Generated/Javax/Security/Sasl/SaslClientFactory.cs index 484ca962e0..b677a4a408 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/SaslClientFactory.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/SaslClientFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Sasl { + #region SaslClientFactory declaration + /// + /// + /// + public partial class SaslClientFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.sasl.SaslClientFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SaslClientFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslClientFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SaslClientFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslClientFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISaslClientFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface ISaslClientFactory } #endregion - #region SaslClientFactory + #region SaslClientFactory implementation public partial class SaslClientFactory : Javax.Security.Sasl.ISaslClientFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/SaslException.cs b/src/net/JNet/Generated/Javax/Security/Sasl/SaslException.cs index c9e511e706..9d6479a08d 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/SaslException.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/SaslException.cs @@ -25,7 +25,24 @@ namespace Javax.Security.Sasl { - #region SaslException + #region SaslException declaration + /// + /// + /// + public partial class SaslException : Java.Io.IOException + { + const string _bridgeClassName = "javax.security.sasl.SaslException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SaslException implementation public partial class SaslException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/SaslServer.cs b/src/net/JNet/Generated/Javax/Security/Sasl/SaslServer.cs index 714e98f262..1ae82b6664 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/SaslServer.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/SaslServer.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Sasl { + #region SaslServer declaration + /// + /// + /// + public partial class SaslServer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.sasl.SaslServer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SaslServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslServer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SaslServer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslServer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISaslServer /// /// .NET interface for TO BE DEFINED FROM USER @@ -92,7 +139,7 @@ public partial interface ISaslServer } #endregion - #region SaslServer + #region SaslServer implementation public partial class SaslServer : Javax.Security.Sasl.ISaslServer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Security/Sasl/SaslServerFactory.cs b/src/net/JNet/Generated/Javax/Security/Sasl/SaslServerFactory.cs index 434a1608c8..2daa28b521 100644 --- a/src/net/JNet/Generated/Javax/Security/Sasl/SaslServerFactory.cs +++ b/src/net/JNet/Generated/Javax/Security/Sasl/SaslServerFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Security.Sasl { + #region SaslServerFactory declaration + /// + /// + /// + public partial class SaslServerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.security.sasl.SaslServerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SaslServerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslServerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SaslServerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SaslServerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISaslServerFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface ISaslServerFactory } #endregion - #region SaslServerFactory + #region SaslServerFactory implementation public partial class SaslServerFactory : Javax.Security.Sasl.ISaslServerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/ATR.cs b/src/net/JNet/Generated/Javax/Smartcardio/ATR.cs index d7a757dd7b..d482f2c062 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/ATR.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/ATR.cs @@ -25,7 +25,52 @@ namespace Javax.Smartcardio { - #region ATR + #region ATR declaration + /// + /// + /// + public partial class ATR : Java.Io.Serializable + { + const string _bridgeClassName = "javax.smartcardio.ATR"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ATR() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ATR(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ATR implementation public partial class ATR { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Smartcardio/AllPackageClasses.cs deleted file mode 100644 index 8326a17749..0000000000 --- a/src/net/JNet/Generated/Javax/Smartcardio/AllPackageClasses.cs +++ /dev/null @@ -1,569 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Smartcardio -{ - #region ATR - /// - /// - /// - public partial class ATR : Java.Io.Serializable - { - const string _bridgeClassName = "javax.smartcardio.ATR"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ATR() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ATR(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Card - /// - /// - /// - public partial class Card : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.smartcardio.Card"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Card class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Card() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Card class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Card(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CardChannel - /// - /// - /// - public partial class CardChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.smartcardio.CardChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CardChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CardChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CardChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CardChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CardException - /// - /// - /// - public partial class CardException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.smartcardio.CardException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CardNotPresentException - /// - /// - /// - public partial class CardNotPresentException : Javax.Smartcardio.CardException - { - const string _bridgeClassName = "javax.smartcardio.CardNotPresentException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CardPermission - /// - /// - /// - public partial class CardPermission : Java.Security.Permission - { - const string _bridgeClassName = "javax.smartcardio.CardPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CardPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CardPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CardTerminal - /// - /// - /// - public partial class CardTerminal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.smartcardio.CardTerminal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CardTerminal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CardTerminal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CardTerminal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CardTerminal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CardTerminals - /// - /// - /// - public partial class CardTerminals : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.smartcardio.CardTerminals"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CardTerminals class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CardTerminals() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CardTerminals class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CardTerminals(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region State - /// - /// - /// - public partial class State : Java.Lang.Enum - { - const string _bridgeClassName = "javax.smartcardio.CardTerminals$State"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public State() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public State(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region CommandAPDU - /// - /// - /// - public partial class CommandAPDU : Java.Io.Serializable - { - const string _bridgeClassName = "javax.smartcardio.CommandAPDU"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CommandAPDU() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CommandAPDU(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ResponseAPDU - /// - /// - /// - public partial class ResponseAPDU : Java.Io.Serializable - { - const string _bridgeClassName = "javax.smartcardio.ResponseAPDU"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ResponseAPDU() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ResponseAPDU(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TerminalFactory - /// - /// - /// - public partial class TerminalFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.smartcardio.TerminalFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TerminalFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TerminalFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TerminalFactorySpi - /// - /// - /// - public partial class TerminalFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.smartcardio.TerminalFactorySpi"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TerminalFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TerminalFactorySpi() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TerminalFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TerminalFactorySpi(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Smartcardio/Card.cs b/src/net/JNet/Generated/Javax/Smartcardio/Card.cs index 8d5fed4cb9..1c1aacc401 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/Card.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/Card.cs @@ -25,7 +25,54 @@ namespace Javax.Smartcardio { - #region Card + #region Card declaration + /// + /// + /// + public partial class Card : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.smartcardio.Card"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Card class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Card() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Card class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Card(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Card implementation public partial class Card { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CardChannel.cs b/src/net/JNet/Generated/Javax/Smartcardio/CardChannel.cs index 8d376c339f..598f6df5f7 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CardChannel.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CardChannel.cs @@ -25,7 +25,54 @@ namespace Javax.Smartcardio { - #region CardChannel + #region CardChannel declaration + /// + /// + /// + public partial class CardChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.smartcardio.CardChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CardChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CardChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CardChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CardChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CardChannel implementation public partial class CardChannel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CardException.cs b/src/net/JNet/Generated/Javax/Smartcardio/CardException.cs index b9e1e73386..206ab3a4f5 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CardException.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CardException.cs @@ -25,7 +25,24 @@ namespace Javax.Smartcardio { - #region CardException + #region CardException declaration + /// + /// + /// + public partial class CardException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.smartcardio.CardException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CardException implementation public partial class CardException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CardNotPresentException.cs b/src/net/JNet/Generated/Javax/Smartcardio/CardNotPresentException.cs index b8911b2005..47c371cfb3 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CardNotPresentException.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CardNotPresentException.cs @@ -25,7 +25,24 @@ namespace Javax.Smartcardio { - #region CardNotPresentException + #region CardNotPresentException declaration + /// + /// + /// + public partial class CardNotPresentException : Javax.Smartcardio.CardException + { + const string _bridgeClassName = "javax.smartcardio.CardNotPresentException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CardNotPresentException implementation public partial class CardNotPresentException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CardPermission.cs b/src/net/JNet/Generated/Javax/Smartcardio/CardPermission.cs index 7420ee6960..22bb604a38 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CardPermission.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CardPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Smartcardio { - #region CardPermission + #region CardPermission declaration + /// + /// + /// + public partial class CardPermission : Java.Security.Permission + { + const string _bridgeClassName = "javax.smartcardio.CardPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CardPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CardPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CardPermission implementation public partial class CardPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CardTerminal.cs b/src/net/JNet/Generated/Javax/Smartcardio/CardTerminal.cs index 1329257a32..388c34eb61 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CardTerminal.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CardTerminal.cs @@ -25,7 +25,54 @@ namespace Javax.Smartcardio { - #region CardTerminal + #region CardTerminal declaration + /// + /// + /// + public partial class CardTerminal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.smartcardio.CardTerminal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CardTerminal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CardTerminal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CardTerminal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CardTerminal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CardTerminal implementation public partial class CardTerminal { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CardTerminals.cs b/src/net/JNet/Generated/Javax/Smartcardio/CardTerminals.cs index 8013b15ea0..95acc5d3ee 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CardTerminals.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CardTerminals.cs @@ -25,7 +25,99 @@ namespace Javax.Smartcardio { - #region CardTerminals + #region CardTerminals declaration + /// + /// + /// + public partial class CardTerminals : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.smartcardio.CardTerminals"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CardTerminals class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CardTerminals() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CardTerminals class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CardTerminals(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region State declaration + /// + /// + /// + public partial class State : Java.Lang.Enum + { + const string _bridgeClassName = "javax.smartcardio.CardTerminals$State"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public State() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public State(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CardTerminals implementation public partial class CardTerminals { #region Constructors @@ -95,7 +187,7 @@ public void WaitForChange() #endregion #region Nested classes - #region State + #region State implementation public partial class State { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/CommandAPDU.cs b/src/net/JNet/Generated/Javax/Smartcardio/CommandAPDU.cs index 359f3c6f42..84f3ea0f6b 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/CommandAPDU.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/CommandAPDU.cs @@ -25,7 +25,52 @@ namespace Javax.Smartcardio { - #region CommandAPDU + #region CommandAPDU declaration + /// + /// + /// + public partial class CommandAPDU : Java.Io.Serializable + { + const string _bridgeClassName = "javax.smartcardio.CommandAPDU"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CommandAPDU() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CommandAPDU(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CommandAPDU implementation public partial class CommandAPDU { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/ResponseAPDU.cs b/src/net/JNet/Generated/Javax/Smartcardio/ResponseAPDU.cs index 16502fbe0e..780c343dae 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/ResponseAPDU.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/ResponseAPDU.cs @@ -25,7 +25,52 @@ namespace Javax.Smartcardio { - #region ResponseAPDU + #region ResponseAPDU declaration + /// + /// + /// + public partial class ResponseAPDU : Java.Io.Serializable + { + const string _bridgeClassName = "javax.smartcardio.ResponseAPDU"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ResponseAPDU() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ResponseAPDU(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ResponseAPDU implementation public partial class ResponseAPDU { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactory.cs b/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactory.cs index b354d12da9..5956cb4643 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactory.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Smartcardio { - #region TerminalFactory + #region TerminalFactory declaration + /// + /// + /// + public partial class TerminalFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.smartcardio.TerminalFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TerminalFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TerminalFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TerminalFactory implementation public partial class TerminalFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactorySpi.cs b/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactorySpi.cs index 2f7f9d5685..2c75bd66a1 100644 --- a/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactorySpi.cs +++ b/src/net/JNet/Generated/Javax/Smartcardio/TerminalFactorySpi.cs @@ -25,7 +25,54 @@ namespace Javax.Smartcardio { - #region TerminalFactorySpi + #region TerminalFactorySpi declaration + /// + /// + /// + public partial class TerminalFactorySpi : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.smartcardio.TerminalFactorySpi"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TerminalFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TerminalFactorySpi() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TerminalFactorySpi class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TerminalFactorySpi(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TerminalFactorySpi implementation public partial class TerminalFactorySpi { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sound/Midi/AllPackageClasses.cs deleted file mode 100644 index d583c37bc6..0000000000 --- a/src/net/JNet/Generated/Javax/Sound/Midi/AllPackageClasses.cs +++ /dev/null @@ -1,1302 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sound.Midi -{ - #region ControllerEventListener - /// - /// - /// - public partial class ControllerEventListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ControllerEventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.sound.midi.ControllerEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ControllerEventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ControllerEventListenerDirect : ControllerEventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.sound.midi.ControllerEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region Instrument - /// - /// - /// - public partial class Instrument : Javax.Sound.Midi.SoundbankResource - { - const string _bridgeClassName = "javax.sound.midi.Instrument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Instrument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Instrument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Instrument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Instrument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InvalidMidiDataException - /// - /// - /// - public partial class InvalidMidiDataException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.sound.midi.InvalidMidiDataException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region MetaEventListener - /// - /// - /// - public partial class MetaEventListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetaEventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.sound.midi.MetaEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MetaEventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MetaEventListenerDirect : MetaEventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.sound.midi.MetaEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MetaMessage - /// - /// - /// - public partial class MetaMessage : Javax.Sound.Midi.MidiMessage - { - const string _bridgeClassName = "javax.sound.midi.MetaMessage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetaMessage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetaMessage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiChannel - /// - /// - /// - public partial class MidiChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.MidiChannel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiChannel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiChannel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiDevice - /// - /// - /// - public partial class MidiDevice : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "javax.sound.midi.MidiDevice"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDevice() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDevice(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Info - /// - /// - /// - public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.MidiDevice$Info"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Info() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Info(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MidiDeviceReceiver - /// - /// - /// - public partial class MidiDeviceReceiver : Javax.Sound.Midi.Receiver - { - const string _bridgeClassName = "javax.sound.midi.MidiDeviceReceiver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiDeviceReceiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDeviceReceiver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiDeviceReceiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDeviceReceiver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiDeviceTransmitter - /// - /// - /// - public partial class MidiDeviceTransmitter : Javax.Sound.Midi.Transmitter - { - const string _bridgeClassName = "javax.sound.midi.MidiDeviceTransmitter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiDeviceTransmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDeviceTransmitter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiDeviceTransmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDeviceTransmitter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiEvent - /// - /// - /// - public partial class MidiEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.MidiEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MidiEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MidiEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiFileFormat - /// - /// - /// - public partial class MidiFileFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.MidiFileFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MidiFileFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MidiFileFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiMessage - /// - /// - /// - public partial class MidiMessage : Java.Lang.Cloneable - { - const string _bridgeClassName = "javax.sound.midi.MidiMessage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiMessage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiMessage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiMessage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiMessage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiSystem - /// - /// - /// - public partial class MidiSystem : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.MidiSystem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MidiSystem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MidiSystem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiUnavailableException - /// - /// - /// - public partial class MidiUnavailableException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.sound.midi.MidiUnavailableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Patch - /// - /// - /// - public partial class Patch : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.Patch"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Patch() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Patch(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Receiver - /// - /// - /// - public partial class Receiver : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "javax.sound.midi.Receiver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Receiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Receiver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Receiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Receiver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Sequence - /// - /// - /// - public partial class Sequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.Sequence"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Sequence() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Sequence(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Sequencer - /// - /// - /// - public partial class Sequencer : Javax.Sound.Midi.MidiDevice - { - const string _bridgeClassName = "javax.sound.midi.Sequencer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Sequencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Sequencer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Sequencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Sequencer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region SyncMode - /// - /// - /// - public partial class SyncMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.Sequencer$SyncMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SyncMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SyncMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ShortMessage - /// - /// - /// - public partial class ShortMessage : Javax.Sound.Midi.MidiMessage - { - const string _bridgeClassName = "javax.sound.midi.ShortMessage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ShortMessage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ShortMessage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Soundbank - /// - /// - /// - public partial class Soundbank : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.Soundbank"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Soundbank class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Soundbank() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Soundbank class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Soundbank(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SoundbankResource - /// - /// - /// - public partial class SoundbankResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.SoundbankResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SoundbankResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SoundbankResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SoundbankResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SoundbankResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Synthesizer - /// - /// - /// - public partial class Synthesizer : Javax.Sound.Midi.MidiDevice - { - const string _bridgeClassName = "javax.sound.midi.Synthesizer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Synthesizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Synthesizer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Synthesizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Synthesizer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SysexMessage - /// - /// - /// - public partial class SysexMessage : Javax.Sound.Midi.MidiMessage - { - const string _bridgeClassName = "javax.sound.midi.SysexMessage"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SysexMessage() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SysexMessage(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Track - /// - /// - /// - public partial class Track : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.Track"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Track() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Track(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Transmitter - /// - /// - /// - public partial class Transmitter : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "javax.sound.midi.Transmitter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Transmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transmitter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Transmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transmitter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VoiceStatus - /// - /// - /// - public partial class VoiceStatus : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.VoiceStatus"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VoiceStatus() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public VoiceStatus(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/ControllerEventListener.cs b/src/net/JNet/Generated/Javax/Sound/Midi/ControllerEventListener.cs index ac56e519fe..c85f0d85ec 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/ControllerEventListener.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/ControllerEventListener.cs @@ -25,6 +25,73 @@ namespace Javax.Sound.Midi { + #region ControllerEventListener declaration + /// + /// + /// + public partial class ControllerEventListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ControllerEventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.sound.midi.ControllerEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ControllerEventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ControllerEventListenerDirect : ControllerEventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.sound.midi.ControllerEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IControllerEventListener /// /// .NET interface for org.mases.jnet.generated.javax.sound.midi.ControllerEventListener implementing @@ -48,7 +115,7 @@ public partial interface IControllerEventListener } #endregion - #region ControllerEventListener + #region ControllerEventListener implementation public partial class ControllerEventListener : Javax.Sound.Midi.IControllerEventListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ControlChange(Javax.Sound.Midi.ShortMessage arg0) } #endregion - #region ControllerEventListenerDirect + #region ControllerEventListenerDirect implementation public partial class ControllerEventListenerDirect : Javax.Sound.Midi.IControllerEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Instrument.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Instrument.cs index bf66ce4e74..4d80deb414 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Instrument.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Instrument.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi { - #region Instrument + #region Instrument declaration + /// + /// + /// + public partial class Instrument : Javax.Sound.Midi.SoundbankResource + { + const string _bridgeClassName = "javax.sound.midi.Instrument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Instrument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Instrument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Instrument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Instrument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Instrument implementation public partial class Instrument { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/InvalidMidiDataException.cs b/src/net/JNet/Generated/Javax/Sound/Midi/InvalidMidiDataException.cs index 9fb2cb2b1f..ce7edafe7b 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/InvalidMidiDataException.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/InvalidMidiDataException.cs @@ -25,7 +25,24 @@ namespace Javax.Sound.Midi { - #region InvalidMidiDataException + #region InvalidMidiDataException declaration + /// + /// + /// + public partial class InvalidMidiDataException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.sound.midi.InvalidMidiDataException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region InvalidMidiDataException implementation public partial class InvalidMidiDataException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MetaEventListener.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MetaEventListener.cs index 8e8b4b0a20..180c99a541 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MetaEventListener.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MetaEventListener.cs @@ -25,6 +25,73 @@ namespace Javax.Sound.Midi { + #region MetaEventListener declaration + /// + /// + /// + public partial class MetaEventListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetaEventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.sound.midi.MetaEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MetaEventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MetaEventListenerDirect : MetaEventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.sound.midi.MetaEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMetaEventListener /// /// .NET interface for org.mases.jnet.generated.javax.sound.midi.MetaEventListener implementing @@ -48,7 +115,7 @@ public partial interface IMetaEventListener } #endregion - #region MetaEventListener + #region MetaEventListener implementation public partial class MetaEventListener : Javax.Sound.Midi.IMetaEventListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void Meta(Javax.Sound.Midi.MetaMessage arg0) } #endregion - #region MetaEventListenerDirect + #region MetaEventListenerDirect implementation public partial class MetaEventListenerDirect : Javax.Sound.Midi.IMetaEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MetaMessage.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MetaMessage.cs index 3befa2293c..cde59639cd 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MetaMessage.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MetaMessage.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region MetaMessage + #region MetaMessage declaration + /// + /// + /// + public partial class MetaMessage : Javax.Sound.Midi.MidiMessage + { + const string _bridgeClassName = "javax.sound.midi.MetaMessage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetaMessage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetaMessage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetaMessage implementation public partial class MetaMessage { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiChannel.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiChannel.cs index 97c3e72db6..92c496b9a3 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiChannel.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiChannel.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region MidiChannel declaration + /// + /// + /// + public partial class MidiChannel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.MidiChannel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiChannel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiChannel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiChannel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMidiChannel /// /// .NET interface for TO BE DEFINED FROM USER @@ -141,7 +188,7 @@ public partial interface IMidiChannel } #endregion - #region MidiChannel + #region MidiChannel implementation public partial class MidiChannel : Javax.Sound.Midi.IMidiChannel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiDevice.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiDevice.cs index fac974682a..e6b403fdb4 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiDevice.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiDevice.cs @@ -25,6 +25,98 @@ namespace Javax.Sound.Midi { + #region MidiDevice declaration + /// + /// + /// + public partial class MidiDevice : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "javax.sound.midi.MidiDevice"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDevice() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiDevice class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDevice(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Info declaration + /// + /// + /// + public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.MidiDevice$Info"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Info() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Info(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IMidiDevice /// /// .NET interface for TO BE DEFINED FROM USER @@ -89,7 +181,7 @@ public partial interface IMidiDevice : Java.Lang.IAutoCloseable } #endregion - #region MidiDevice + #region MidiDevice implementation public partial class MidiDevice : Javax.Sound.Midi.IMidiDevice { #region Constructors @@ -192,7 +284,7 @@ public void Open() #endregion #region Nested classes - #region Info + #region Info implementation public partial class Info { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceReceiver.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceReceiver.cs index 9f0fedcc8f..97018f6b3a 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceReceiver.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceReceiver.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region MidiDeviceReceiver declaration + /// + /// + /// + public partial class MidiDeviceReceiver : Javax.Sound.Midi.Receiver + { + const string _bridgeClassName = "javax.sound.midi.MidiDeviceReceiver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiDeviceReceiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDeviceReceiver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiDeviceReceiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDeviceReceiver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMidiDeviceReceiver /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IMidiDeviceReceiver : Javax.Sound.Midi.IReceiver } #endregion - #region MidiDeviceReceiver + #region MidiDeviceReceiver implementation public partial class MidiDeviceReceiver : Javax.Sound.Midi.IMidiDeviceReceiver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceTransmitter.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceTransmitter.cs index 41dcd1e32d..27c09ad504 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceTransmitter.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiDeviceTransmitter.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region MidiDeviceTransmitter declaration + /// + /// + /// + public partial class MidiDeviceTransmitter : Javax.Sound.Midi.Transmitter + { + const string _bridgeClassName = "javax.sound.midi.MidiDeviceTransmitter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiDeviceTransmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDeviceTransmitter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiDeviceTransmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDeviceTransmitter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMidiDeviceTransmitter /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IMidiDeviceTransmitter : Javax.Sound.Midi.ITransmitter } #endregion - #region MidiDeviceTransmitter + #region MidiDeviceTransmitter implementation public partial class MidiDeviceTransmitter : Javax.Sound.Midi.IMidiDeviceTransmitter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiEvent.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiEvent.cs index 2c7dd7ee3a..be19cabf80 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiEvent.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region MidiEvent + #region MidiEvent declaration + /// + /// + /// + public partial class MidiEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.MidiEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MidiEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MidiEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiEvent implementation public partial class MidiEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiFileFormat.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiFileFormat.cs index 2a3ad3b103..9a9b788309 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiFileFormat.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiFileFormat.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region MidiFileFormat + #region MidiFileFormat declaration + /// + /// + /// + public partial class MidiFileFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.MidiFileFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MidiFileFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MidiFileFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiFileFormat implementation public partial class MidiFileFormat { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiMessage.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiMessage.cs index 22fdc8a09b..4253871590 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiMessage.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiMessage.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi { - #region MidiMessage + #region MidiMessage declaration + /// + /// + /// + public partial class MidiMessage : Java.Lang.Cloneable + { + const string _bridgeClassName = "javax.sound.midi.MidiMessage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiMessage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiMessage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiMessage class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiMessage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiMessage implementation public partial class MidiMessage { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiSystem.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiSystem.cs index 8ed7d9bff1..e23e2ea017 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiSystem.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiSystem.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region MidiSystem + #region MidiSystem declaration + /// + /// + /// + public partial class MidiSystem : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.MidiSystem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MidiSystem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MidiSystem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiSystem implementation public partial class MidiSystem { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/MidiUnavailableException.cs b/src/net/JNet/Generated/Javax/Sound/Midi/MidiUnavailableException.cs index 94c8b6e5c0..295cd6cb93 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/MidiUnavailableException.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/MidiUnavailableException.cs @@ -25,7 +25,24 @@ namespace Javax.Sound.Midi { - #region MidiUnavailableException + #region MidiUnavailableException declaration + /// + /// + /// + public partial class MidiUnavailableException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.sound.midi.MidiUnavailableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MidiUnavailableException implementation public partial class MidiUnavailableException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Patch.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Patch.cs index 2483a772d2..1ad5ffed97 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Patch.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Patch.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region Patch + #region Patch declaration + /// + /// + /// + public partial class Patch : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.Patch"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Patch() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Patch(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Patch implementation public partial class Patch { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Receiver.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Receiver.cs index e1338c7796..a7255a00c6 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Receiver.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Receiver.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region Receiver declaration + /// + /// + /// + public partial class Receiver : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "javax.sound.midi.Receiver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Receiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Receiver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Receiver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Receiver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReceiver /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IReceiver : Java.Lang.IAutoCloseable } #endregion - #region Receiver + #region Receiver implementation public partial class Receiver : Javax.Sound.Midi.IReceiver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Sequence.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Sequence.cs index c5485cbd8d..d7a79281d0 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Sequence.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Sequence.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region Sequence + #region Sequence declaration + /// + /// + /// + public partial class Sequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.Sequence"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Sequence() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Sequence(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Sequence implementation public partial class Sequence { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Sequencer.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Sequencer.cs index 525ac44b2f..b642d1c9e1 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Sequencer.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Sequencer.cs @@ -25,6 +25,98 @@ namespace Javax.Sound.Midi { + #region Sequencer declaration + /// + /// + /// + public partial class Sequencer : Javax.Sound.Midi.MidiDevice + { + const string _bridgeClassName = "javax.sound.midi.Sequencer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Sequencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Sequencer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Sequencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Sequencer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region SyncMode declaration + /// + /// + /// + public partial class SyncMode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.Sequencer$SyncMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SyncMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SyncMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region ISequencer /// /// .NET interface for TO BE DEFINED FROM USER @@ -202,7 +294,7 @@ public partial interface ISequencer : Javax.Sound.Midi.IMidiDevice } #endregion - #region Sequencer + #region Sequencer implementation public partial class Sequencer : Javax.Sound.Midi.ISequencer { #region Constructors @@ -490,7 +582,7 @@ public void StopRecording() #endregion #region Nested classes - #region SyncMode + #region SyncMode implementation public partial class SyncMode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/ShortMessage.cs b/src/net/JNet/Generated/Javax/Sound/Midi/ShortMessage.cs index 7176ac81d4..1d93b61821 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/ShortMessage.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/ShortMessage.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region ShortMessage + #region ShortMessage declaration + /// + /// + /// + public partial class ShortMessage : Javax.Sound.Midi.MidiMessage + { + const string _bridgeClassName = "javax.sound.midi.ShortMessage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ShortMessage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ShortMessage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ShortMessage implementation public partial class ShortMessage { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Soundbank.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Soundbank.cs index 920eea35b0..3508994337 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Soundbank.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Soundbank.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region Soundbank declaration + /// + /// + /// + public partial class Soundbank : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.Soundbank"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Soundbank class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Soundbank() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Soundbank class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Soundbank(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISoundbank /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface ISoundbank } #endregion - #region Soundbank + #region Soundbank implementation public partial class Soundbank : Javax.Sound.Midi.ISoundbank { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/SoundbankResource.cs b/src/net/JNet/Generated/Javax/Sound/Midi/SoundbankResource.cs index 99e8fa7eae..da385b94ef 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/SoundbankResource.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/SoundbankResource.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi { - #region SoundbankResource + #region SoundbankResource declaration + /// + /// + /// + public partial class SoundbankResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.SoundbankResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SoundbankResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SoundbankResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SoundbankResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SoundbankResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SoundbankResource implementation public partial class SoundbankResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/AllPackageClasses.cs deleted file mode 100644 index d22599f7ff..0000000000 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,218 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sound.Midi.Spi -{ - #region MidiDeviceProvider - /// - /// - /// - public partial class MidiDeviceProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.spi.MidiDeviceProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiDeviceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDeviceProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiDeviceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiDeviceProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiFileReader - /// - /// - /// - public partial class MidiFileReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.spi.MidiFileReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiFileReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiFileReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MidiFileWriter - /// - /// - /// - public partial class MidiFileWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.spi.MidiFileWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MidiFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiFileWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MidiFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MidiFileWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SoundbankReader - /// - /// - /// - public partial class SoundbankReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.midi.spi.SoundbankReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SoundbankReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SoundbankReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SoundbankReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SoundbankReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiDeviceProvider.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiDeviceProvider.cs index f4843c6238..1522edac6d 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiDeviceProvider.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiDeviceProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi.Spi { - #region MidiDeviceProvider + #region MidiDeviceProvider declaration + /// + /// + /// + public partial class MidiDeviceProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.spi.MidiDeviceProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiDeviceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDeviceProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiDeviceProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiDeviceProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiDeviceProvider implementation public partial class MidiDeviceProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileReader.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileReader.cs index 615f83b896..8f88121257 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileReader.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileReader.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi.Spi { - #region MidiFileReader + #region MidiFileReader declaration + /// + /// + /// + public partial class MidiFileReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.spi.MidiFileReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiFileReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiFileReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiFileReader implementation public partial class MidiFileReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileWriter.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileWriter.cs index a75214b12a..5e8d9ae674 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileWriter.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/MidiFileWriter.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi.Spi { - #region MidiFileWriter + #region MidiFileWriter declaration + /// + /// + /// + public partial class MidiFileWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.spi.MidiFileWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MidiFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiFileWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MidiFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MidiFileWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MidiFileWriter implementation public partial class MidiFileWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/SoundbankReader.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/SoundbankReader.cs index 1a3d30c643..85d90c51ad 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Spi/SoundbankReader.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Spi/SoundbankReader.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Midi.Spi { - #region SoundbankReader + #region SoundbankReader declaration + /// + /// + /// + public partial class SoundbankReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.spi.SoundbankReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SoundbankReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SoundbankReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SoundbankReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SoundbankReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SoundbankReader implementation public partial class SoundbankReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Synthesizer.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Synthesizer.cs index 507a68f49d..815e8297b0 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Synthesizer.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Synthesizer.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region Synthesizer declaration + /// + /// + /// + public partial class Synthesizer : Javax.Sound.Midi.MidiDevice + { + const string _bridgeClassName = "javax.sound.midi.Synthesizer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Synthesizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Synthesizer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Synthesizer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Synthesizer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISynthesizer /// /// .NET interface for TO BE DEFINED FROM USER @@ -119,7 +166,7 @@ public partial interface ISynthesizer : Javax.Sound.Midi.IMidiDevice } #endregion - #region Synthesizer + #region Synthesizer implementation public partial class Synthesizer : Javax.Sound.Midi.ISynthesizer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/SysexMessage.cs b/src/net/JNet/Generated/Javax/Sound/Midi/SysexMessage.cs index b4c78cec08..cff188698f 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/SysexMessage.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/SysexMessage.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region SysexMessage + #region SysexMessage declaration + /// + /// + /// + public partial class SysexMessage : Javax.Sound.Midi.MidiMessage + { + const string _bridgeClassName = "javax.sound.midi.SysexMessage"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SysexMessage() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SysexMessage(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SysexMessage implementation public partial class SysexMessage { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Track.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Track.cs index 7e7dba95b9..8cd8c04990 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Track.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Track.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region Track + #region Track declaration + /// + /// + /// + public partial class Track : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.Track"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Track() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Track(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Track implementation public partial class Track { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/Transmitter.cs b/src/net/JNet/Generated/Javax/Sound/Midi/Transmitter.cs index 6f9761580a..7ce831fd07 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/Transmitter.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/Transmitter.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Midi { + #region Transmitter declaration + /// + /// + /// + public partial class Transmitter : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "javax.sound.midi.Transmitter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Transmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transmitter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Transmitter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transmitter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransmitter /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ITransmitter : Java.Lang.IAutoCloseable } #endregion - #region Transmitter + #region Transmitter implementation public partial class Transmitter : Javax.Sound.Midi.ITransmitter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Midi/VoiceStatus.cs b/src/net/JNet/Generated/Javax/Sound/Midi/VoiceStatus.cs index 94999cd743..2afc9f356d 100644 --- a/src/net/JNet/Generated/Javax/Sound/Midi/VoiceStatus.cs +++ b/src/net/JNet/Generated/Javax/Sound/Midi/VoiceStatus.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Midi { - #region VoiceStatus + #region VoiceStatus declaration + /// + /// + /// + public partial class VoiceStatus : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.midi.VoiceStatus"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VoiceStatus() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public VoiceStatus(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VoiceStatus implementation public partial class VoiceStatus { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/AllPackageClasses.cs deleted file mode 100644 index 84d3369bc9..0000000000 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/AllPackageClasses.cs +++ /dev/null @@ -1,1550 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sound.Sampled -{ - #region AudioFileFormat - /// - /// - /// - public partial class AudioFileFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.AudioFileFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AudioFileFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AudioFileFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.AudioFileFormat$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AudioFormat - /// - /// - /// - public partial class AudioFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.AudioFormat"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AudioFormat() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AudioFormat(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Encoding - /// - /// - /// - public partial class Encoding : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.AudioFormat$Encoding"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Encoding() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Encoding(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AudioInputStream - /// - /// - /// - public partial class AudioInputStream : Java.Io.InputStream - { - const string _bridgeClassName = "javax.sound.sampled.AudioInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AudioInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AudioInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AudioPermission - /// - /// - /// - public partial class AudioPermission : Java.Security.BasicPermission - { - const string _bridgeClassName = "javax.sound.sampled.AudioPermission"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AudioPermission() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AudioPermission(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AudioSystem - /// - /// - /// - public partial class AudioSystem : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.AudioSystem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AudioSystem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AudioSystem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BooleanControl - /// - /// - /// - public partial class BooleanControl : Javax.Sound.Sampled.Control - { - const string _bridgeClassName = "javax.sound.sampled.BooleanControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BooleanControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BooleanControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BooleanControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BooleanControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Javax.Sound.Sampled.Control.Type - { - const string _bridgeClassName = "javax.sound.sampled.BooleanControl$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Clip - /// - /// - /// - public partial class Clip : Javax.Sound.Sampled.DataLine - { - const string _bridgeClassName = "javax.sound.sampled.Clip"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Clip class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Clip() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Clip class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Clip(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompoundControl - /// - /// - /// - public partial class CompoundControl : Javax.Sound.Sampled.Control - { - const string _bridgeClassName = "javax.sound.sampled.CompoundControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompoundControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompoundControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompoundControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompoundControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Javax.Sound.Sampled.Control.Type - { - const string _bridgeClassName = "javax.sound.sampled.CompoundControl$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Control - /// - /// - /// - public partial class Control : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.Control"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Control() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Control(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.Control$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DataLine - /// - /// - /// - public partial class DataLine : Javax.Sound.Sampled.Line - { - const string _bridgeClassName = "javax.sound.sampled.DataLine"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataLine() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataLine(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Info - /// - /// - /// - public partial class Info : Javax.Sound.Sampled.Line.Info - { - const string _bridgeClassName = "javax.sound.sampled.DataLine$Info"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Info() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Info(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region EnumControl - /// - /// - /// - public partial class EnumControl : Javax.Sound.Sampled.Control - { - const string _bridgeClassName = "javax.sound.sampled.EnumControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EnumControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EnumControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EnumControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Javax.Sound.Sampled.Control.Type - { - const string _bridgeClassName = "javax.sound.sampled.EnumControl$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FloatControl - /// - /// - /// - public partial class FloatControl : Javax.Sound.Sampled.Control - { - const string _bridgeClassName = "javax.sound.sampled.FloatControl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FloatControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FloatControl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FloatControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FloatControl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Javax.Sound.Sampled.Control.Type - { - const string _bridgeClassName = "javax.sound.sampled.FloatControl$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Line - /// - /// - /// - public partial class Line : Java.Lang.AutoCloseable - { - const string _bridgeClassName = "javax.sound.sampled.Line"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Line class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Line() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Line class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Line(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Info - /// - /// - /// - public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.Line$Info"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Info() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Info(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region LineEvent - /// - /// - /// - public partial class LineEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.sound.sampled.LineEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LineEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LineEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.LineEvent$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region LineListener - /// - /// - /// - public partial class LineListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LineListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.sound.sampled.LineListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region LineListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class LineListenerDirect : LineListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.sound.sampled.LineListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region LineUnavailableException - /// - /// - /// - public partial class LineUnavailableException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.sound.sampled.LineUnavailableException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Mixer - /// - /// - /// - public partial class Mixer : Javax.Sound.Sampled.Line - { - const string _bridgeClassName = "javax.sound.sampled.Mixer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Mixer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Mixer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Mixer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Mixer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Info - /// - /// - /// - public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.Mixer$Info"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Info() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Info(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Port - /// - /// - /// - public partial class Port : Javax.Sound.Sampled.Line - { - const string _bridgeClassName = "javax.sound.sampled.Port"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Port class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Port() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Port class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Port(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Info - /// - /// - /// - public partial class Info : Javax.Sound.Sampled.Line.Info - { - const string _bridgeClassName = "javax.sound.sampled.Port$Info"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Info() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Info(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ReverbType - /// - /// - /// - public partial class ReverbType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.ReverbType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ReverbType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ReverbType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SourceDataLine - /// - /// - /// - public partial class SourceDataLine : Javax.Sound.Sampled.DataLine - { - const string _bridgeClassName = "javax.sound.sampled.SourceDataLine"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SourceDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SourceDataLine() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SourceDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SourceDataLine(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TargetDataLine - /// - /// - /// - public partial class TargetDataLine : Javax.Sound.Sampled.DataLine - { - const string _bridgeClassName = "javax.sound.sampled.TargetDataLine"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TargetDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TargetDataLine() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TargetDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TargetDataLine(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UnsupportedAudioFileException - /// - /// - /// - public partial class UnsupportedAudioFileException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.sound.sampled.UnsupportedAudioFileException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFileFormat.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFileFormat.cs index db87dc74a3..ac3051fed8 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFileFormat.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFileFormat.cs @@ -25,7 +25,97 @@ namespace Javax.Sound.Sampled { - #region AudioFileFormat + #region AudioFileFormat declaration + /// + /// + /// + public partial class AudioFileFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.AudioFileFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AudioFileFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AudioFileFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.AudioFileFormat$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AudioFileFormat implementation public partial class AudioFileFormat { #region Constructors @@ -115,7 +205,7 @@ public object GetProperty(Java.Lang.String arg0) #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFormat.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFormat.cs index b67d87f12b..1246c7a679 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFormat.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioFormat.cs @@ -25,7 +25,97 @@ namespace Javax.Sound.Sampled { - #region AudioFormat + #region AudioFormat declaration + /// + /// + /// + public partial class AudioFormat : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.AudioFormat"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AudioFormat() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AudioFormat(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Encoding declaration + /// + /// + /// + public partial class Encoding : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.AudioFormat$Encoding"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Encoding() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Encoding(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AudioFormat implementation public partial class AudioFormat { #region Constructors @@ -166,7 +256,7 @@ public object GetProperty(Java.Lang.String arg0) #endregion #region Nested classes - #region Encoding + #region Encoding implementation public partial class Encoding { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioInputStream.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioInputStream.cs index f69e8f24e2..72ebfd1765 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioInputStream.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioInputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Sampled { - #region AudioInputStream + #region AudioInputStream declaration + /// + /// + /// + public partial class AudioInputStream : Java.Io.InputStream + { + const string _bridgeClassName = "javax.sound.sampled.AudioInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AudioInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AudioInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AudioInputStream implementation public partial class AudioInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioPermission.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioPermission.cs index 836bc6644b..f59e2e15cf 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioPermission.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioPermission.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Sampled { - #region AudioPermission + #region AudioPermission declaration + /// + /// + /// + public partial class AudioPermission : Java.Security.BasicPermission + { + const string _bridgeClassName = "javax.sound.sampled.AudioPermission"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AudioPermission() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AudioPermission(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AudioPermission implementation public partial class AudioPermission { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioSystem.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioSystem.cs index 9697ebb926..b4ccb12ee0 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/AudioSystem.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/AudioSystem.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Sampled { - #region AudioSystem + #region AudioSystem declaration + /// + /// + /// + public partial class AudioSystem : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.AudioSystem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AudioSystem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AudioSystem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AudioSystem implementation public partial class AudioSystem { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/BooleanControl.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/BooleanControl.cs index 87104f4958..6e95d7cdf3 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/BooleanControl.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/BooleanControl.cs @@ -25,7 +25,99 @@ namespace Javax.Sound.Sampled { - #region BooleanControl + #region BooleanControl declaration + /// + /// + /// + public partial class BooleanControl : Javax.Sound.Sampled.Control + { + const string _bridgeClassName = "javax.sound.sampled.BooleanControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BooleanControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BooleanControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BooleanControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BooleanControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Javax.Sound.Sampled.Control.Type + { + const string _bridgeClassName = "javax.sound.sampled.BooleanControl$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BooleanControl implementation public partial class BooleanControl { #region Constructors @@ -65,7 +157,7 @@ public Java.Lang.String GetStateLabel(bool arg0) #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Clip.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Clip.cs index 31eb832dac..4bcc369364 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Clip.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Clip.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Sampled { + #region Clip declaration + /// + /// + /// + public partial class Clip : Javax.Sound.Sampled.DataLine + { + const string _bridgeClassName = "javax.sound.sampled.Clip"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Clip class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Clip() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Clip class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Clip(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IClip /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +135,7 @@ public partial interface IClip : Javax.Sound.Sampled.IDataLine } #endregion - #region Clip + #region Clip implementation public partial class Clip : Javax.Sound.Sampled.IClip { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/CompoundControl.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/CompoundControl.cs index 983aad5293..27953683d9 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/CompoundControl.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/CompoundControl.cs @@ -25,7 +25,99 @@ namespace Javax.Sound.Sampled { - #region CompoundControl + #region CompoundControl declaration + /// + /// + /// + public partial class CompoundControl : Javax.Sound.Sampled.Control + { + const string _bridgeClassName = "javax.sound.sampled.CompoundControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompoundControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompoundControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompoundControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompoundControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Javax.Sound.Sampled.Control.Type + { + const string _bridgeClassName = "javax.sound.sampled.CompoundControl$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CompoundControl implementation public partial class CompoundControl { #region Constructors @@ -56,7 +148,7 @@ public Javax.Sound.Sampled.Control[] MemberControls #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Control.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Control.cs index c0c5666e1e..98b92f9b58 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Control.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Control.cs @@ -25,7 +25,99 @@ namespace Javax.Sound.Sampled { - #region Control + #region Control declaration + /// + /// + /// + public partial class Control : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.Control"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Control() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Control class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Control(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.Control$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Control implementation public partial class Control { #region Constructors @@ -56,7 +148,7 @@ public Javax.Sound.Sampled.Control.Type GetType #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/DataLine.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/DataLine.cs index fdf876aa0a..2f707d4f59 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/DataLine.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/DataLine.cs @@ -25,6 +25,98 @@ namespace Javax.Sound.Sampled { + #region DataLine declaration + /// + /// + /// + public partial class DataLine : Javax.Sound.Sampled.Line + { + const string _bridgeClassName = "javax.sound.sampled.DataLine"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataLine() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataLine(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Info declaration + /// + /// + /// + public partial class Info : Javax.Sound.Sampled.Line.Info + { + const string _bridgeClassName = "javax.sound.sampled.DataLine$Info"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Info() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Info(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IDataLine /// /// .NET interface for TO BE DEFINED FROM USER @@ -98,7 +190,7 @@ public partial interface IDataLine : Javax.Sound.Sampled.ILine } #endregion - #region DataLine + #region DataLine implementation public partial class DataLine : Javax.Sound.Sampled.IDataLine { #region Constructors @@ -216,7 +308,7 @@ public void Stop() #endregion #region Nested classes - #region Info + #region Info implementation public partial class Info { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/EnumControl.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/EnumControl.cs index a041ab57d3..4ba79ccef2 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/EnumControl.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/EnumControl.cs @@ -25,7 +25,99 @@ namespace Javax.Sound.Sampled { - #region EnumControl + #region EnumControl declaration + /// + /// + /// + public partial class EnumControl : Javax.Sound.Sampled.Control + { + const string _bridgeClassName = "javax.sound.sampled.EnumControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EnumControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EnumControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EnumControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Javax.Sound.Sampled.Control.Type + { + const string _bridgeClassName = "javax.sound.sampled.EnumControl$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region EnumControl implementation public partial class EnumControl { #region Constructors @@ -63,7 +155,7 @@ public object[] Values #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/FloatControl.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/FloatControl.cs index 96d8eb924d..2647f7a9ff 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/FloatControl.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/FloatControl.cs @@ -25,7 +25,99 @@ namespace Javax.Sound.Sampled { - #region FloatControl + #region FloatControl declaration + /// + /// + /// + public partial class FloatControl : Javax.Sound.Sampled.Control + { + const string _bridgeClassName = "javax.sound.sampled.FloatControl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FloatControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FloatControl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FloatControl class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FloatControl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Javax.Sound.Sampled.Control.Type + { + const string _bridgeClassName = "javax.sound.sampled.FloatControl$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region FloatControl implementation public partial class FloatControl { #region Constructors @@ -122,7 +214,7 @@ public void Shift(float arg0, float arg1, int arg2) #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Line.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Line.cs index 67e36bd4e6..ff393d3bae 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Line.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Line.cs @@ -25,6 +25,98 @@ namespace Javax.Sound.Sampled { + #region Line declaration + /// + /// + /// + public partial class Line : Java.Lang.AutoCloseable + { + const string _bridgeClassName = "javax.sound.sampled.Line"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Line class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Line() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Line class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Line(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Info declaration + /// + /// + /// + public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.Line$Info"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Info() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Info(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region ILine /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +179,7 @@ public partial interface ILine : Java.Lang.IAutoCloseable } #endregion - #region Line + #region Line implementation public partial class Line : Javax.Sound.Sampled.ILine { #region Constructors @@ -182,7 +274,7 @@ public void RemoveLineListener(Javax.Sound.Sampled.LineListener arg0) #endregion #region Nested classes - #region Info + #region Info implementation public partial class Info { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/LineEvent.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/LineEvent.cs index 49461ffa67..a84cef1510 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/LineEvent.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/LineEvent.cs @@ -25,7 +25,97 @@ namespace Javax.Sound.Sampled { - #region LineEvent + #region LineEvent declaration + /// + /// + /// + public partial class LineEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.sound.sampled.LineEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LineEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LineEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.LineEvent$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region LineEvent implementation public partial class LineEvent { #region Constructors @@ -80,7 +170,7 @@ public Javax.Sound.Sampled.Line Line #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/LineListener.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/LineListener.cs index 168ef58ccf..ec59c6716e 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/LineListener.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/LineListener.cs @@ -25,6 +25,73 @@ namespace Javax.Sound.Sampled { + #region LineListener declaration + /// + /// + /// + public partial class LineListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LineListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.sound.sampled.LineListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region LineListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class LineListenerDirect : LineListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.sound.sampled.LineListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ILineListener /// /// .NET interface for org.mases.jnet.generated.javax.sound.sampled.LineListener implementing @@ -48,7 +115,7 @@ public partial interface ILineListener } #endregion - #region LineListener + #region LineListener implementation public partial class LineListener : Javax.Sound.Sampled.ILineListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void Update(Javax.Sound.Sampled.LineEvent arg0) } #endregion - #region LineListenerDirect + #region LineListenerDirect implementation public partial class LineListenerDirect : Javax.Sound.Sampled.ILineListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/LineUnavailableException.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/LineUnavailableException.cs index 7f3616889a..df2d9f8bff 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/LineUnavailableException.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/LineUnavailableException.cs @@ -25,7 +25,24 @@ namespace Javax.Sound.Sampled { - #region LineUnavailableException + #region LineUnavailableException declaration + /// + /// + /// + public partial class LineUnavailableException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.sound.sampled.LineUnavailableException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LineUnavailableException implementation public partial class LineUnavailableException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Mixer.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Mixer.cs index 3666cd6163..130826ac64 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Mixer.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Mixer.cs @@ -25,6 +25,98 @@ namespace Javax.Sound.Sampled { + #region Mixer declaration + /// + /// + /// + public partial class Mixer : Javax.Sound.Sampled.Line + { + const string _bridgeClassName = "javax.sound.sampled.Mixer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Mixer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Mixer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Mixer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Mixer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Info declaration + /// + /// + /// + public partial class Info : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.Mixer$Info"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Info() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Info(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IMixer /// /// .NET interface for TO BE DEFINED FROM USER @@ -112,7 +204,7 @@ public partial interface IMixer : Javax.Sound.Sampled.ILine } #endregion - #region Mixer + #region Mixer implementation public partial class Mixer : Javax.Sound.Sampled.IMixer { #region Constructors @@ -244,7 +336,7 @@ public void Unsynchronize(Javax.Sound.Sampled.Line[] arg0) #endregion #region Nested classes - #region Info + #region Info implementation public partial class Info { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Port.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Port.cs index e8457097eb..6c23a541d9 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Port.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Port.cs @@ -25,6 +25,98 @@ namespace Javax.Sound.Sampled { + #region Port declaration + /// + /// + /// + public partial class Port : Javax.Sound.Sampled.Line + { + const string _bridgeClassName = "javax.sound.sampled.Port"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Port class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Port() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Port class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Port(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Info declaration + /// + /// + /// + public partial class Info : Javax.Sound.Sampled.Line.Info + { + const string _bridgeClassName = "javax.sound.sampled.Port$Info"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Info() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Info(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IPort /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +135,7 @@ public partial interface IPort : Javax.Sound.Sampled.ILine } #endregion - #region Port + #region Port implementation public partial class Port : Javax.Sound.Sampled.IPort { #region Constructors @@ -67,7 +159,7 @@ public partial class Port : Javax.Sound.Sampled.IPort #endregion #region Nested classes - #region Info + #region Info implementation public partial class Info { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/ReverbType.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/ReverbType.cs index 73aeafc0ec..150b7af7a3 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/ReverbType.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/ReverbType.cs @@ -25,7 +25,52 @@ namespace Javax.Sound.Sampled { - #region ReverbType + #region ReverbType declaration + /// + /// + /// + public partial class ReverbType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.ReverbType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ReverbType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ReverbType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ReverbType implementation public partial class ReverbType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/SourceDataLine.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/SourceDataLine.cs index 19fe97a240..9cf4b02835 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/SourceDataLine.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/SourceDataLine.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Sampled { + #region SourceDataLine declaration + /// + /// + /// + public partial class SourceDataLine : Javax.Sound.Sampled.DataLine + { + const string _bridgeClassName = "javax.sound.sampled.SourceDataLine"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SourceDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SourceDataLine() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SourceDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SourceDataLine(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISourceDataLine /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface ISourceDataLine : Javax.Sound.Sampled.IDataLine } #endregion - #region SourceDataLine + #region SourceDataLine implementation public partial class SourceDataLine : Javax.Sound.Sampled.ISourceDataLine { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AllPackageClasses.cs deleted file mode 100644 index 411e79e719..0000000000 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,218 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sound.Sampled.Spi -{ - #region AudioFileReader - /// - /// - /// - public partial class AudioFileReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.spi.AudioFileReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AudioFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AudioFileReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AudioFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AudioFileReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AudioFileWriter - /// - /// - /// - public partial class AudioFileWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.spi.AudioFileWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AudioFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AudioFileWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AudioFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AudioFileWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FormatConversionProvider - /// - /// - /// - public partial class FormatConversionProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.spi.FormatConversionProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FormatConversionProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FormatConversionProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FormatConversionProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FormatConversionProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MixerProvider - /// - /// - /// - public partial class MixerProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sound.sampled.spi.MixerProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MixerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MixerProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MixerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MixerProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileReader.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileReader.cs index f35c7f6ea0..6a1ed073ef 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileReader.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileReader.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Sampled.Spi { - #region AudioFileReader + #region AudioFileReader declaration + /// + /// + /// + public partial class AudioFileReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.spi.AudioFileReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AudioFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AudioFileReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AudioFileReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AudioFileReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AudioFileReader implementation public partial class AudioFileReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileWriter.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileWriter.cs index 776dc59003..19a284e791 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileWriter.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/AudioFileWriter.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Sampled.Spi { - #region AudioFileWriter + #region AudioFileWriter declaration + /// + /// + /// + public partial class AudioFileWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.spi.AudioFileWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AudioFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AudioFileWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AudioFileWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AudioFileWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AudioFileWriter implementation public partial class AudioFileWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/FormatConversionProvider.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/FormatConversionProvider.cs index 77ead18aba..e9b1d04e02 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/FormatConversionProvider.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/FormatConversionProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Sampled.Spi { - #region FormatConversionProvider + #region FormatConversionProvider declaration + /// + /// + /// + public partial class FormatConversionProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.spi.FormatConversionProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FormatConversionProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FormatConversionProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FormatConversionProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FormatConversionProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FormatConversionProvider implementation public partial class FormatConversionProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/MixerProvider.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/MixerProvider.cs index 5cbedf9ceb..77b272daba 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/MixerProvider.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/Spi/MixerProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Sound.Sampled.Spi { - #region MixerProvider + #region MixerProvider declaration + /// + /// + /// + public partial class MixerProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sound.sampled.spi.MixerProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MixerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MixerProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MixerProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MixerProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MixerProvider implementation public partial class MixerProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/TargetDataLine.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/TargetDataLine.cs index 5678a70e78..98a7144427 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/TargetDataLine.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/TargetDataLine.cs @@ -25,6 +25,53 @@ namespace Javax.Sound.Sampled { + #region TargetDataLine declaration + /// + /// + /// + public partial class TargetDataLine : Javax.Sound.Sampled.DataLine + { + const string _bridgeClassName = "javax.sound.sampled.TargetDataLine"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TargetDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TargetDataLine() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TargetDataLine class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TargetDataLine(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITargetDataLine /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface ITargetDataLine : Javax.Sound.Sampled.IDataLine } #endregion - #region TargetDataLine + #region TargetDataLine implementation public partial class TargetDataLine : Javax.Sound.Sampled.ITargetDataLine { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sound/Sampled/UnsupportedAudioFileException.cs b/src/net/JNet/Generated/Javax/Sound/Sampled/UnsupportedAudioFileException.cs index 2e5b91fbae..351ed4f8f3 100644 --- a/src/net/JNet/Generated/Javax/Sound/Sampled/UnsupportedAudioFileException.cs +++ b/src/net/JNet/Generated/Javax/Sound/Sampled/UnsupportedAudioFileException.cs @@ -25,7 +25,24 @@ namespace Javax.Sound.Sampled { - #region UnsupportedAudioFileException + #region UnsupportedAudioFileException declaration + /// + /// + /// + public partial class UnsupportedAudioFileException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.sound.sampled.UnsupportedAudioFileException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedAudioFileException implementation public partial class UnsupportedAudioFileException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sql/AllPackageClasses.cs deleted file mode 100644 index 44b2e88018..0000000000 --- a/src/net/JNet/Generated/Javax/Sql/AllPackageClasses.cs +++ /dev/null @@ -1,977 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sql -{ - #region CommonDataSource - /// - /// - /// - public partial class CommonDataSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.CommonDataSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CommonDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CommonDataSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CommonDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CommonDataSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConnectionEvent - /// - /// - /// - public partial class ConnectionEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.sql.ConnectionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConnectionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ConnectionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ConnectionEventListener - /// - /// - /// - public partial class ConnectionEventListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ConnectionEventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.sql.ConnectionEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ConnectionEventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ConnectionEventListenerDirect : ConnectionEventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.sql.ConnectionEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ConnectionPoolDataSource - /// - /// - /// - public partial class ConnectionPoolDataSource : Javax.Sql.CommonDataSource - { - const string _bridgeClassName = "javax.sql.ConnectionPoolDataSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ConnectionPoolDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConnectionPoolDataSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ConnectionPoolDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ConnectionPoolDataSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DataSource - /// - /// - /// - public partial class DataSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.DataSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DataSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PooledConnection - /// - /// - /// - public partial class PooledConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.PooledConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PooledConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PooledConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PooledConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PooledConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PooledConnectionBuilder - /// - /// - /// - public partial class PooledConnectionBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.PooledConnectionBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PooledConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PooledConnectionBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PooledConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PooledConnectionBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSet - /// - /// - /// - public partial class RowSet : Java.Sql.ResultSet - { - const string _bridgeClassName = "javax.sql.RowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetEvent - /// - /// - /// - public partial class RowSetEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.sql.RowSetEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowSetEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RowSetEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetInternal - /// - /// - /// - public partial class RowSetInternal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.RowSetInternal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSetInternal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetInternal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSetInternal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetInternal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetListener - /// - /// - /// - public partial class RowSetListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowSetListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.sql.RowSetListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region RowSetListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class RowSetListenerDirect : RowSetListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.sql.RowSetListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region RowSetMetaData - /// - /// - /// - public partial class RowSetMetaData : Java.Sql.ResultSetMetaData - { - const string _bridgeClassName = "javax.sql.RowSetMetaData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetMetaData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetMetaData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetReader - /// - /// - /// - public partial class RowSetReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.RowSetReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSetReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSetReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetWriter - /// - /// - /// - public partial class RowSetWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.RowSetWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSetWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSetWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StatementEvent - /// - /// - /// - public partial class StatementEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.sql.StatementEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StatementEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StatementEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StatementEventListener - /// - /// - /// - public partial class StatementEventListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StatementEventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.sql.StatementEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region StatementEventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class StatementEventListenerDirect : StatementEventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.sql.StatementEventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region XAConnection - /// - /// - /// - public partial class XAConnection : Javax.Sql.PooledConnection - { - const string _bridgeClassName = "javax.sql.XAConnection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XAConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XAConnection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XAConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XAConnection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XAConnectionBuilder - /// - /// - /// - public partial class XAConnectionBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.XAConnectionBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XAConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XAConnectionBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XAConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XAConnectionBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XADataSource - /// - /// - /// - public partial class XADataSource : Javax.Sql.CommonDataSource - { - const string _bridgeClassName = "javax.sql.XADataSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XADataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XADataSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XADataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XADataSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sql/CommonDataSource.cs b/src/net/JNet/Generated/Javax/Sql/CommonDataSource.cs index 0c26a4c7f9..1588e96bcc 100644 --- a/src/net/JNet/Generated/Javax/Sql/CommonDataSource.cs +++ b/src/net/JNet/Generated/Javax/Sql/CommonDataSource.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region CommonDataSource declaration + /// + /// + /// + public partial class CommonDataSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.CommonDataSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CommonDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CommonDataSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CommonDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CommonDataSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICommonDataSource /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface ICommonDataSource } #endregion - #region CommonDataSource + #region CommonDataSource implementation public partial class CommonDataSource : Javax.Sql.ICommonDataSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/ConnectionEvent.cs b/src/net/JNet/Generated/Javax/Sql/ConnectionEvent.cs index eaff4a2751..d9c3b96401 100644 --- a/src/net/JNet/Generated/Javax/Sql/ConnectionEvent.cs +++ b/src/net/JNet/Generated/Javax/Sql/ConnectionEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Sql { - #region ConnectionEvent + #region ConnectionEvent declaration + /// + /// + /// + public partial class ConnectionEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.sql.ConnectionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConnectionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ConnectionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ConnectionEvent implementation public partial class ConnectionEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/ConnectionEventListener.cs b/src/net/JNet/Generated/Javax/Sql/ConnectionEventListener.cs index f1f932c9bb..af8446cd2d 100644 --- a/src/net/JNet/Generated/Javax/Sql/ConnectionEventListener.cs +++ b/src/net/JNet/Generated/Javax/Sql/ConnectionEventListener.cs @@ -25,6 +25,73 @@ namespace Javax.Sql { + #region ConnectionEventListener declaration + /// + /// + /// + public partial class ConnectionEventListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ConnectionEventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.sql.ConnectionEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ConnectionEventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ConnectionEventListenerDirect : ConnectionEventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.sql.ConnectionEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IConnectionEventListener /// /// .NET interface for org.mases.jnet.generated.javax.sql.ConnectionEventListener implementing @@ -53,7 +120,7 @@ public partial interface IConnectionEventListener } #endregion - #region ConnectionEventListener + #region ConnectionEventListener implementation public partial class ConnectionEventListener : Javax.Sql.IConnectionEventListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void ConnectionErrorOccurred(Javax.Sql.ConnectionEvent arg0) } #endregion - #region ConnectionEventListenerDirect + #region ConnectionEventListenerDirect implementation public partial class ConnectionEventListenerDirect : Javax.Sql.IConnectionEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/ConnectionPoolDataSource.cs b/src/net/JNet/Generated/Javax/Sql/ConnectionPoolDataSource.cs index ffa2cc920d..626f9447f1 100644 --- a/src/net/JNet/Generated/Javax/Sql/ConnectionPoolDataSource.cs +++ b/src/net/JNet/Generated/Javax/Sql/ConnectionPoolDataSource.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region ConnectionPoolDataSource declaration + /// + /// + /// + public partial class ConnectionPoolDataSource : Javax.Sql.CommonDataSource + { + const string _bridgeClassName = "javax.sql.ConnectionPoolDataSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ConnectionPoolDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConnectionPoolDataSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ConnectionPoolDataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ConnectionPoolDataSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IConnectionPoolDataSource /// /// .NET interface for TO BE DEFINED FROM USER @@ -69,7 +116,7 @@ public partial interface IConnectionPoolDataSource : Javax.Sql.ICommonDataSource } #endregion - #region ConnectionPoolDataSource + #region ConnectionPoolDataSource implementation public partial class ConnectionPoolDataSource : Javax.Sql.IConnectionPoolDataSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/DataSource.cs b/src/net/JNet/Generated/Javax/Sql/DataSource.cs index 7514aa5773..d59d11056b 100644 --- a/src/net/JNet/Generated/Javax/Sql/DataSource.cs +++ b/src/net/JNet/Generated/Javax/Sql/DataSource.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region DataSource declaration + /// + /// + /// + public partial class DataSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.DataSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DataSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDataSource /// /// .NET interface for TO BE DEFINED FROM USER @@ -69,7 +116,7 @@ public partial interface IDataSource } #endregion - #region DataSource + #region DataSource implementation public partial class DataSource : Javax.Sql.IDataSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/PooledConnection.cs b/src/net/JNet/Generated/Javax/Sql/PooledConnection.cs index bedd201b29..b575890f3d 100644 --- a/src/net/JNet/Generated/Javax/Sql/PooledConnection.cs +++ b/src/net/JNet/Generated/Javax/Sql/PooledConnection.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region PooledConnection declaration + /// + /// + /// + public partial class PooledConnection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.PooledConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PooledConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PooledConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PooledConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PooledConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPooledConnection /// /// .NET interface for TO BE DEFINED FROM USER @@ -72,7 +119,7 @@ public partial interface IPooledConnection } #endregion - #region PooledConnection + #region PooledConnection implementation public partial class PooledConnection : Javax.Sql.IPooledConnection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/PooledConnectionBuilder.cs b/src/net/JNet/Generated/Javax/Sql/PooledConnectionBuilder.cs index 57001ff7b4..7ff8f3fc69 100644 --- a/src/net/JNet/Generated/Javax/Sql/PooledConnectionBuilder.cs +++ b/src/net/JNet/Generated/Javax/Sql/PooledConnectionBuilder.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region PooledConnectionBuilder declaration + /// + /// + /// + public partial class PooledConnectionBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.PooledConnectionBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PooledConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PooledConnectionBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PooledConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PooledConnectionBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPooledConnectionBuilder /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IPooledConnectionBuilder } #endregion - #region PooledConnectionBuilder + #region PooledConnectionBuilder implementation public partial class PooledConnectionBuilder : Javax.Sql.IPooledConnectionBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSet.cs b/src/net/JNet/Generated/Javax/Sql/RowSet.cs index 9ef40f436e..a05c033640 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSet.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region RowSet declaration + /// + /// + /// + public partial class RowSet : Java.Sql.ResultSet + { + const string _bridgeClassName = "javax.sql.RowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -753,7 +800,7 @@ public partial interface IRowSet : Java.Sql.IResultSet } #endregion - #region RowSet + #region RowSet implementation public partial class RowSet : Javax.Sql.IRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSetEvent.cs b/src/net/JNet/Generated/Javax/Sql/RowSetEvent.cs index 6b5d3f9bb4..6c1e466c33 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSetEvent.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSetEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Sql { - #region RowSetEvent + #region RowSetEvent declaration + /// + /// + /// + public partial class RowSetEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.sql.RowSetEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowSetEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RowSetEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RowSetEvent implementation public partial class RowSetEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSetInternal.cs b/src/net/JNet/Generated/Javax/Sql/RowSetInternal.cs index e69a057752..f2fbf5268a 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSetInternal.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSetInternal.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region RowSetInternal declaration + /// + /// + /// + public partial class RowSetInternal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.RowSetInternal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSetInternal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetInternal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSetInternal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetInternal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowSetInternal /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IRowSetInternal } #endregion - #region RowSetInternal + #region RowSetInternal implementation public partial class RowSetInternal : Javax.Sql.IRowSetInternal { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSetListener.cs b/src/net/JNet/Generated/Javax/Sql/RowSetListener.cs index f328677cf3..fafa3eb78f 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSetListener.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSetListener.cs @@ -25,6 +25,73 @@ namespace Javax.Sql { + #region RowSetListener declaration + /// + /// + /// + public partial class RowSetListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowSetListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.sql.RowSetListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region RowSetListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class RowSetListenerDirect : RowSetListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.sql.RowSetListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IRowSetListener /// /// .NET interface for org.mases.jnet.generated.javax.sql.RowSetListener implementing @@ -58,7 +125,7 @@ public partial interface IRowSetListener } #endregion - #region RowSetListener + #region RowSetListener implementation public partial class RowSetListener : Javax.Sql.IRowSetListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void RowSetChanged(Javax.Sql.RowSetEvent arg0) } #endregion - #region RowSetListenerDirect + #region RowSetListenerDirect implementation public partial class RowSetListenerDirect : Javax.Sql.IRowSetListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSetMetaData.cs b/src/net/JNet/Generated/Javax/Sql/RowSetMetaData.cs index 324ab1880e..ae33abcfb0 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSetMetaData.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSetMetaData.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region RowSetMetaData declaration + /// + /// + /// + public partial class RowSetMetaData : Java.Sql.ResultSetMetaData + { + const string _bridgeClassName = "javax.sql.RowSetMetaData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetMetaData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSetMetaData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetMetaData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowSetMetaData /// /// .NET interface for TO BE DEFINED FROM USER @@ -161,7 +208,7 @@ public partial interface IRowSetMetaData : Java.Sql.IResultSetMetaData } #endregion - #region RowSetMetaData + #region RowSetMetaData implementation public partial class RowSetMetaData : Javax.Sql.IRowSetMetaData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSetReader.cs b/src/net/JNet/Generated/Javax/Sql/RowSetReader.cs index f75207c446..9f427d3bed 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSetReader.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSetReader.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region RowSetReader declaration + /// + /// + /// + public partial class RowSetReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.RowSetReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSetReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSetReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowSetReader /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IRowSetReader } #endregion - #region RowSetReader + #region RowSetReader implementation public partial class RowSetReader : Javax.Sql.IRowSetReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/RowSetWriter.cs b/src/net/JNet/Generated/Javax/Sql/RowSetWriter.cs index 64ce95c8cb..40d892a76b 100644 --- a/src/net/JNet/Generated/Javax/Sql/RowSetWriter.cs +++ b/src/net/JNet/Generated/Javax/Sql/RowSetWriter.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region RowSetWriter declaration + /// + /// + /// + public partial class RowSetWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.RowSetWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSetWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSetWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowSetWriter /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IRowSetWriter } #endregion - #region RowSetWriter + #region RowSetWriter implementation public partial class RowSetWriter : Javax.Sql.IRowSetWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/AllPackageClasses.cs deleted file mode 100644 index 72f7d2256d..0000000000 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/AllPackageClasses.cs +++ /dev/null @@ -1,560 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sql.Rowset -{ - #region BaseRowSet - /// - /// - /// - public partial class BaseRowSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.BaseRowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BaseRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BaseRowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BaseRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BaseRowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CachedRowSet - /// - /// - /// - public partial class CachedRowSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.CachedRowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CachedRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CachedRowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CachedRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CachedRowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FilteredRowSet - /// - /// - /// - public partial class FilteredRowSet : Javax.Sql.Rowset.WebRowSet - { - const string _bridgeClassName = "javax.sql.rowset.FilteredRowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilteredRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilteredRowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilteredRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilteredRowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JdbcRowSet - /// - /// - /// - public partial class JdbcRowSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.JdbcRowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JdbcRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JdbcRowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JdbcRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JdbcRowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Joinable - /// - /// - /// - public partial class Joinable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.Joinable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Joinable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Joinable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Joinable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Joinable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JoinRowSet - /// - /// - /// - public partial class JoinRowSet : Javax.Sql.Rowset.WebRowSet - { - const string _bridgeClassName = "javax.sql.rowset.JoinRowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JoinRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JoinRowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JoinRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JoinRowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Predicate - /// - /// - /// - public partial class Predicate : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.Predicate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Predicate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Predicate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Predicate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Predicate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetFactory - /// - /// - /// - public partial class RowSetFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.RowSetFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSetFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSetFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSetFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetMetaDataImpl - /// - /// - /// - public partial class RowSetMetaDataImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.RowSetMetaDataImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowSetMetaDataImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RowSetMetaDataImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetProvider - /// - /// - /// - public partial class RowSetProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.RowSetProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowSetProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RowSetProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSetWarning - /// - /// - /// - public partial class RowSetWarning : Java.Sql.SQLException - { - const string _bridgeClassName = "javax.sql.rowset.RowSetWarning"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region WebRowSet - /// - /// - /// - public partial class WebRowSet : Javax.Sql.Rowset.CachedRowSet - { - const string _bridgeClassName = "javax.sql.rowset.WebRowSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WebRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WebRowSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WebRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WebRowSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/BaseRowSet.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/BaseRowSet.cs index 03c8e227a1..eba55695fe 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/BaseRowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/BaseRowSet.cs @@ -25,7 +25,54 @@ namespace Javax.Sql.Rowset { - #region BaseRowSet + #region BaseRowSet declaration + /// + /// + /// + public partial class BaseRowSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.BaseRowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BaseRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BaseRowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BaseRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BaseRowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BaseRowSet implementation public partial class BaseRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/CachedRowSet.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/CachedRowSet.cs index 65a4c83bb6..5cfb53358a 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/CachedRowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/CachedRowSet.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region CachedRowSet declaration + /// + /// + /// + public partial class CachedRowSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.CachedRowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CachedRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CachedRowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CachedRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CachedRowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICachedRowSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -239,7 +286,7 @@ public partial interface ICachedRowSet } #endregion - #region CachedRowSet + #region CachedRowSet implementation public partial class CachedRowSet : Javax.Sql.Rowset.ICachedRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/FilteredRowSet.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/FilteredRowSet.cs index 85fac52925..2054e810a7 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/FilteredRowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/FilteredRowSet.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region FilteredRowSet declaration + /// + /// + /// + public partial class FilteredRowSet : Javax.Sql.Rowset.WebRowSet + { + const string _bridgeClassName = "javax.sql.rowset.FilteredRowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilteredRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilteredRowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilteredRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilteredRowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFilteredRowSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IFilteredRowSet : Javax.Sql.Rowset.IWebRowSet } #endregion - #region FilteredRowSet + #region FilteredRowSet implementation public partial class FilteredRowSet : Javax.Sql.Rowset.IFilteredRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/JdbcRowSet.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/JdbcRowSet.cs index 4a0ee7f571..2f5e5a7a30 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/JdbcRowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/JdbcRowSet.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region JdbcRowSet declaration + /// + /// + /// + public partial class JdbcRowSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.JdbcRowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JdbcRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JdbcRowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JdbcRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JdbcRowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJdbcRowSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IJdbcRowSet } #endregion - #region JdbcRowSet + #region JdbcRowSet implementation public partial class JdbcRowSet : Javax.Sql.Rowset.IJdbcRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/JoinRowSet.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/JoinRowSet.cs index 61a735a456..9f027f4bb2 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/JoinRowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/JoinRowSet.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region JoinRowSet declaration + /// + /// + /// + public partial class JoinRowSet : Javax.Sql.Rowset.WebRowSet + { + const string _bridgeClassName = "javax.sql.rowset.JoinRowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JoinRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JoinRowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JoinRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JoinRowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJoinRowSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -124,7 +171,7 @@ public partial interface IJoinRowSet : Javax.Sql.Rowset.IWebRowSet } #endregion - #region JoinRowSet + #region JoinRowSet implementation public partial class JoinRowSet : Javax.Sql.Rowset.IJoinRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Joinable.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Joinable.cs index 3d1e4c4081..967d4656e1 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Joinable.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Joinable.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region Joinable declaration + /// + /// + /// + public partial class Joinable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.Joinable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Joinable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Joinable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Joinable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Joinable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IJoinable /// /// .NET interface for TO BE DEFINED FROM USER @@ -99,7 +146,7 @@ public partial interface IJoinable } #endregion - #region Joinable + #region Joinable implementation public partial class Joinable : Javax.Sql.Rowset.IJoinable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Predicate.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Predicate.cs index 066609f421..317ab3c5cd 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Predicate.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Predicate.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region Predicate declaration + /// + /// + /// + public partial class Predicate : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.Predicate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Predicate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Predicate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Predicate class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Predicate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPredicate /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IPredicate } #endregion - #region Predicate + #region Predicate implementation public partial class Predicate : Javax.Sql.Rowset.IPredicate { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetFactory.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetFactory.cs index fa7d9286f1..c9ae6df54d 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetFactory.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region RowSetFactory declaration + /// + /// + /// + public partial class RowSetFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.RowSetFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSetFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSetFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSetFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowSetFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IRowSetFactory } #endregion - #region RowSetFactory + #region RowSetFactory implementation public partial class RowSetFactory : Javax.Sql.Rowset.IRowSetFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetMetaDataImpl.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetMetaDataImpl.cs index 576ce6acb2..6a87ad4b52 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetMetaDataImpl.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetMetaDataImpl.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset { - #region RowSetMetaDataImpl + #region RowSetMetaDataImpl declaration + /// + /// + /// + public partial class RowSetMetaDataImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.RowSetMetaDataImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowSetMetaDataImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RowSetMetaDataImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RowSetMetaDataImpl implementation public partial class RowSetMetaDataImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetProvider.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetProvider.cs index c93d93ca46..9a97d2ae08 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetProvider.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetProvider.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset { - #region RowSetProvider + #region RowSetProvider declaration + /// + /// + /// + public partial class RowSetProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.RowSetProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowSetProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RowSetProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RowSetProvider implementation public partial class RowSetProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetWarning.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetWarning.cs index 14e397a85a..af75dc317b 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetWarning.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/RowSetWarning.cs @@ -25,7 +25,24 @@ namespace Javax.Sql.Rowset { - #region RowSetWarning + #region RowSetWarning declaration + /// + /// + /// + public partial class RowSetWarning : Java.Sql.SQLException + { + const string _bridgeClassName = "javax.sql.rowset.RowSetWarning"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RowSetWarning implementation public partial class RowSetWarning { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/AllPackageClasses.cs deleted file mode 100644 index 400711a3c9..0000000000 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/AllPackageClasses.cs +++ /dev/null @@ -1,452 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sql.Rowset.Serial -{ - #region SerialArray - /// - /// - /// - public partial class SerialArray : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialArray"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialArray() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialArray(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerialBlob - /// - /// - /// - public partial class SerialBlob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialBlob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialBlob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialBlob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerialClob - /// - /// - /// - public partial class SerialClob : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialClob"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialClob() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialClob(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerialDatalink - /// - /// - /// - public partial class SerialDatalink : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialDatalink"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialDatalink() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialDatalink(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerialException - /// - /// - /// - public partial class SerialException : Java.Sql.SQLException - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SerialJavaObject - /// - /// - /// - public partial class SerialJavaObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialJavaObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialJavaObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialJavaObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerialRef - /// - /// - /// - public partial class SerialRef : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialRef"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialRef() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialRef(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SerialStruct - /// - /// - /// - public partial class SerialStruct : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.serial.SerialStruct"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SerialStruct() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SerialStruct(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLInputImpl - /// - /// - /// - public partial class SQLInputImpl : Java.Sql.SQLInput - { - const string _bridgeClassName = "javax.sql.rowset.serial.SQLInputImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SQLInputImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SQLInputImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SQLOutputImpl - /// - /// - /// - public partial class SQLOutputImpl : Java.Sql.SQLOutput - { - const string _bridgeClassName = "javax.sql.rowset.serial.SQLOutputImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SQLOutputImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SQLOutputImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLInputImpl.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLInputImpl.cs index cc039ad4f3..9bc0e3b6e5 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLInputImpl.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLInputImpl.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SQLInputImpl + #region SQLInputImpl declaration + /// + /// + /// + public partial class SQLInputImpl : Java.Sql.SQLInput + { + const string _bridgeClassName = "javax.sql.rowset.serial.SQLInputImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SQLInputImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SQLInputImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SQLInputImpl implementation public partial class SQLInputImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLOutputImpl.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLOutputImpl.cs index 00d00347a0..1eb574ab2c 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLOutputImpl.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SQLOutputImpl.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SQLOutputImpl + #region SQLOutputImpl declaration + /// + /// + /// + public partial class SQLOutputImpl : Java.Sql.SQLOutput + { + const string _bridgeClassName = "javax.sql.rowset.serial.SQLOutputImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SQLOutputImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SQLOutputImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SQLOutputImpl implementation public partial class SQLOutputImpl { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialArray.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialArray.cs index 4b88e9d402..263ad3dcf5 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialArray.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialArray.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialArray + #region SerialArray declaration + /// + /// + /// + public partial class SerialArray : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialArray"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialArray() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialArray(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialArray implementation public partial class SerialArray { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialBlob.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialBlob.cs index 24fa5dfeaf..ce3d4752e6 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialBlob.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialBlob.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialBlob + #region SerialBlob declaration + /// + /// + /// + public partial class SerialBlob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialBlob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialBlob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialBlob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialBlob implementation public partial class SerialBlob { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialClob.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialClob.cs index 447dd86ac2..0455fbd7f2 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialClob.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialClob.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialClob + #region SerialClob declaration + /// + /// + /// + public partial class SerialClob : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialClob"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialClob() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialClob(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialClob implementation public partial class SerialClob { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialDatalink.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialDatalink.cs index 94d091aff9..aee2b80c44 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialDatalink.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialDatalink.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialDatalink + #region SerialDatalink declaration + /// + /// + /// + public partial class SerialDatalink : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialDatalink"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialDatalink() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialDatalink(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialDatalink implementation public partial class SerialDatalink { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialException.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialException.cs index 0fe3965c27..06cb1cd159 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialException.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialException.cs @@ -25,7 +25,24 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialException + #region SerialException declaration + /// + /// + /// + public partial class SerialException : Java.Sql.SQLException + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SerialException implementation public partial class SerialException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialJavaObject.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialJavaObject.cs index d3dcdc82c0..b9afc4a8a0 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialJavaObject.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialJavaObject.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialJavaObject + #region SerialJavaObject declaration + /// + /// + /// + public partial class SerialJavaObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialJavaObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialJavaObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialJavaObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialJavaObject implementation public partial class SerialJavaObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialRef.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialRef.cs index 9f2a97d46b..66afe3fe30 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialRef.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialRef.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialRef + #region SerialRef declaration + /// + /// + /// + public partial class SerialRef : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialRef"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialRef() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialRef(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialRef implementation public partial class SerialRef { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialStruct.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialStruct.cs index 0c62cd57c5..05a8e2a040 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialStruct.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Serial/SerialStruct.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Serial { - #region SerialStruct + #region SerialStruct declaration + /// + /// + /// + public partial class SerialStruct : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.serial.SerialStruct"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SerialStruct() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SerialStruct(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SerialStruct implementation public partial class SerialStruct { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/AllPackageClasses.cs deleted file mode 100644 index 31113fb276..0000000000 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/AllPackageClasses.cs +++ /dev/null @@ -1,344 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Sql.Rowset.Spi -{ - #region SyncFactory - /// - /// - /// - public partial class SyncFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.spi.SyncFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SyncFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SyncFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SyncFactoryException - /// - /// - /// - public partial class SyncFactoryException : Java.Sql.SQLException - { - const string _bridgeClassName = "javax.sql.rowset.spi.SyncFactoryException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SyncProvider - /// - /// - /// - public partial class SyncProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.sql.rowset.spi.SyncProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SyncProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SyncProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SyncProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SyncProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SyncProviderException - /// - /// - /// - public partial class SyncProviderException : Java.Sql.SQLException - { - const string _bridgeClassName = "javax.sql.rowset.spi.SyncProviderException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SyncResolver - /// - /// - /// - public partial class SyncResolver : Javax.Sql.RowSet - { - const string _bridgeClassName = "javax.sql.rowset.spi.SyncResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SyncResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SyncResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SyncResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SyncResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransactionalWriter - /// - /// - /// - public partial class TransactionalWriter : Javax.Sql.RowSetWriter - { - const string _bridgeClassName = "javax.sql.rowset.spi.TransactionalWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransactionalWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransactionalWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransactionalWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransactionalWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XmlReader - /// - /// - /// - public partial class XmlReader : Javax.Sql.RowSetReader - { - const string _bridgeClassName = "javax.sql.rowset.spi.XmlReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XmlReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XmlReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XmlReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XmlReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XmlWriter - /// - /// - /// - public partial class XmlWriter : Javax.Sql.RowSetWriter - { - const string _bridgeClassName = "javax.sql.rowset.spi.XmlWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XmlWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XmlWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XmlWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XmlWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactory.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactory.cs index c165b50bd8..864466b8de 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactory.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Sql.Rowset.Spi { - #region SyncFactory + #region SyncFactory declaration + /// + /// + /// + public partial class SyncFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.spi.SyncFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SyncFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SyncFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SyncFactory implementation public partial class SyncFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactoryException.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactoryException.cs index 47f714efd2..34614062c5 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactoryException.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncFactoryException.cs @@ -25,7 +25,24 @@ namespace Javax.Sql.Rowset.Spi { - #region SyncFactoryException + #region SyncFactoryException declaration + /// + /// + /// + public partial class SyncFactoryException : Java.Sql.SQLException + { + const string _bridgeClassName = "javax.sql.rowset.spi.SyncFactoryException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SyncFactoryException implementation public partial class SyncFactoryException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProvider.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProvider.cs index b4a0252ce2..e07ff9c23c 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProvider.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Sql.Rowset.Spi { - #region SyncProvider + #region SyncProvider declaration + /// + /// + /// + public partial class SyncProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.rowset.spi.SyncProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SyncProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SyncProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SyncProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SyncProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SyncProvider implementation public partial class SyncProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProviderException.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProviderException.cs index b4e9c495d7..c6c46e3feb 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProviderException.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncProviderException.cs @@ -25,7 +25,24 @@ namespace Javax.Sql.Rowset.Spi { - #region SyncProviderException + #region SyncProviderException declaration + /// + /// + /// + public partial class SyncProviderException : Java.Sql.SQLException + { + const string _bridgeClassName = "javax.sql.rowset.spi.SyncProviderException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SyncProviderException implementation public partial class SyncProviderException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncResolver.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncResolver.cs index 960659d4cd..dec0ae33bd 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncResolver.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/SyncResolver.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset.Spi { + #region SyncResolver declaration + /// + /// + /// + public partial class SyncResolver : Javax.Sql.RowSet + { + const string _bridgeClassName = "javax.sql.rowset.spi.SyncResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SyncResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SyncResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SyncResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SyncResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISyncResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface ISyncResolver : Javax.Sql.IRowSet } #endregion - #region SyncResolver + #region SyncResolver implementation public partial class SyncResolver : Javax.Sql.Rowset.Spi.ISyncResolver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/TransactionalWriter.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/TransactionalWriter.cs index 1a0b8135d9..9bb7b635df 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/TransactionalWriter.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/TransactionalWriter.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset.Spi { + #region TransactionalWriter declaration + /// + /// + /// + public partial class TransactionalWriter : Javax.Sql.RowSetWriter + { + const string _bridgeClassName = "javax.sql.rowset.spi.TransactionalWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransactionalWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransactionalWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransactionalWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransactionalWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransactionalWriter /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ITransactionalWriter : Javax.Sql.IRowSetWriter } #endregion - #region TransactionalWriter + #region TransactionalWriter implementation public partial class TransactionalWriter : Javax.Sql.Rowset.Spi.ITransactionalWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlReader.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlReader.cs index 1345649f7a..a6007b21ea 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlReader.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlReader.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset.Spi { + #region XmlReader declaration + /// + /// + /// + public partial class XmlReader : Javax.Sql.RowSetReader + { + const string _bridgeClassName = "javax.sql.rowset.spi.XmlReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XmlReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XmlReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XmlReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XmlReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXmlReader /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IXmlReader : Javax.Sql.IRowSetReader } #endregion - #region XmlReader + #region XmlReader implementation public partial class XmlReader : Javax.Sql.Rowset.Spi.IXmlReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlWriter.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlWriter.cs index 3bef63e3bc..55fdb9e167 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlWriter.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/Spi/XmlWriter.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset.Spi { + #region XmlWriter declaration + /// + /// + /// + public partial class XmlWriter : Javax.Sql.RowSetWriter + { + const string _bridgeClassName = "javax.sql.rowset.spi.XmlWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XmlWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XmlWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XmlWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XmlWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXmlWriter /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IXmlWriter : Javax.Sql.IRowSetWriter } #endregion - #region XmlWriter + #region XmlWriter implementation public partial class XmlWriter : Javax.Sql.Rowset.Spi.IXmlWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/Rowset/WebRowSet.cs b/src/net/JNet/Generated/Javax/Sql/Rowset/WebRowSet.cs index 7db94de9ed..259f51fee6 100644 --- a/src/net/JNet/Generated/Javax/Sql/Rowset/WebRowSet.cs +++ b/src/net/JNet/Generated/Javax/Sql/Rowset/WebRowSet.cs @@ -25,6 +25,53 @@ namespace Javax.Sql.Rowset { + #region WebRowSet declaration + /// + /// + /// + public partial class WebRowSet : Javax.Sql.Rowset.CachedRowSet + { + const string _bridgeClassName = "javax.sql.rowset.WebRowSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WebRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WebRowSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WebRowSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WebRowSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWebRowSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -84,7 +131,7 @@ public partial interface IWebRowSet : Javax.Sql.Rowset.ICachedRowSet } #endregion - #region WebRowSet + #region WebRowSet implementation public partial class WebRowSet : Javax.Sql.Rowset.IWebRowSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/StatementEvent.cs b/src/net/JNet/Generated/Javax/Sql/StatementEvent.cs index 4865c06f6c..5dabb9e210 100644 --- a/src/net/JNet/Generated/Javax/Sql/StatementEvent.cs +++ b/src/net/JNet/Generated/Javax/Sql/StatementEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Sql { - #region StatementEvent + #region StatementEvent declaration + /// + /// + /// + public partial class StatementEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.sql.StatementEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StatementEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StatementEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StatementEvent implementation public partial class StatementEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/StatementEventListener.cs b/src/net/JNet/Generated/Javax/Sql/StatementEventListener.cs index 4583ffb234..26c25dcdbc 100644 --- a/src/net/JNet/Generated/Javax/Sql/StatementEventListener.cs +++ b/src/net/JNet/Generated/Javax/Sql/StatementEventListener.cs @@ -25,6 +25,73 @@ namespace Javax.Sql { + #region StatementEventListener declaration + /// + /// + /// + public partial class StatementEventListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StatementEventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.sql.StatementEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region StatementEventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class StatementEventListenerDirect : StatementEventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.sql.StatementEventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IStatementEventListener /// /// .NET interface for org.mases.jnet.generated.javax.sql.StatementEventListener implementing @@ -53,7 +120,7 @@ public partial interface IStatementEventListener } #endregion - #region StatementEventListener + #region StatementEventListener implementation public partial class StatementEventListener : Javax.Sql.IStatementEventListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void StatementErrorOccurred(Javax.Sql.StatementEvent arg0) } #endregion - #region StatementEventListenerDirect + #region StatementEventListenerDirect implementation public partial class StatementEventListenerDirect : Javax.Sql.IStatementEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/XAConnection.cs b/src/net/JNet/Generated/Javax/Sql/XAConnection.cs index d2d56871eb..2fd0e1d21d 100644 --- a/src/net/JNet/Generated/Javax/Sql/XAConnection.cs +++ b/src/net/JNet/Generated/Javax/Sql/XAConnection.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region XAConnection declaration + /// + /// + /// + public partial class XAConnection : Javax.Sql.PooledConnection + { + const string _bridgeClassName = "javax.sql.XAConnection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XAConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XAConnection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XAConnection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XAConnection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXAConnection /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IXAConnection : Javax.Sql.IPooledConnection } #endregion - #region XAConnection + #region XAConnection implementation public partial class XAConnection : Javax.Sql.IXAConnection { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/XAConnectionBuilder.cs b/src/net/JNet/Generated/Javax/Sql/XAConnectionBuilder.cs index 02bfe123b8..64a9b023bc 100644 --- a/src/net/JNet/Generated/Javax/Sql/XAConnectionBuilder.cs +++ b/src/net/JNet/Generated/Javax/Sql/XAConnectionBuilder.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region XAConnectionBuilder declaration + /// + /// + /// + public partial class XAConnectionBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.sql.XAConnectionBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XAConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XAConnectionBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XAConnectionBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XAConnectionBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXAConnectionBuilder /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IXAConnectionBuilder } #endregion - #region XAConnectionBuilder + #region XAConnectionBuilder implementation public partial class XAConnectionBuilder : Javax.Sql.IXAConnectionBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Sql/XADataSource.cs b/src/net/JNet/Generated/Javax/Sql/XADataSource.cs index d0e5956817..91454e1d2a 100644 --- a/src/net/JNet/Generated/Javax/Sql/XADataSource.cs +++ b/src/net/JNet/Generated/Javax/Sql/XADataSource.cs @@ -25,6 +25,53 @@ namespace Javax.Sql { + #region XADataSource declaration + /// + /// + /// + public partial class XADataSource : Javax.Sql.CommonDataSource + { + const string _bridgeClassName = "javax.sql.XADataSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XADataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XADataSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XADataSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XADataSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXADataSource /// /// .NET interface for TO BE DEFINED FROM USER @@ -69,7 +116,7 @@ public partial interface IXADataSource : Javax.Sql.ICommonDataSource } #endregion - #region XADataSource + #region XADataSource implementation public partial class XADataSource : Javax.Sql.IXADataSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/AbstractAction.cs b/src/net/JNet/Generated/Javax/Swing/AbstractAction.cs index 3f261c2779..07d18dbeea 100644 --- a/src/net/JNet/Generated/Javax/Swing/AbstractAction.cs +++ b/src/net/JNet/Generated/Javax/Swing/AbstractAction.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region AbstractAction + #region AbstractAction declaration + /// + /// + /// + public partial class AbstractAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.AbstractAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractAction implementation public partial class AbstractAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/AbstractButton.cs b/src/net/JNet/Generated/Javax/Swing/AbstractButton.cs index a7a47b7fd2..67a83607d0 100644 --- a/src/net/JNet/Generated/Javax/Swing/AbstractButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/AbstractButton.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region AbstractButton + #region AbstractButton declaration + /// + /// + /// + public partial class AbstractButton : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.AbstractButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractButton class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractButton class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractButton implementation public partial class AbstractButton { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/AbstractCellEditor.cs b/src/net/JNet/Generated/Javax/Swing/AbstractCellEditor.cs index 64b8858bc8..8884e30d1b 100644 --- a/src/net/JNet/Generated/Javax/Swing/AbstractCellEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/AbstractCellEditor.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region AbstractCellEditor + #region AbstractCellEditor declaration + /// + /// + /// + public partial class AbstractCellEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.AbstractCellEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractCellEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractCellEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractCellEditor implementation public partial class AbstractCellEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/AbstractListModel.cs b/src/net/JNet/Generated/Javax/Swing/AbstractListModel.cs index c6e8b1c7d9..6bed7d7fac 100644 --- a/src/net/JNet/Generated/Javax/Swing/AbstractListModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/AbstractListModel.cs @@ -25,7 +25,102 @@ namespace Javax.Swing { - #region AbstractListModel + #region AbstractListModel declaration + /// + /// + /// + public partial class AbstractListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.AbstractListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractListModel declaration + /// + /// + /// + /// + public partial class AbstractListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.AbstractListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractListModel implementation public partial class AbstractListModel { #region Constructors @@ -96,7 +191,7 @@ public void RemoveListDataListener(Javax.Swing.Event.ListDataListener arg0) } #endregion - #region AbstractListModel + #region AbstractListModel implementation public partial class AbstractListModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/AbstractSpinnerModel.cs b/src/net/JNet/Generated/Javax/Swing/AbstractSpinnerModel.cs index ba1141e962..322eb55989 100644 --- a/src/net/JNet/Generated/Javax/Swing/AbstractSpinnerModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/AbstractSpinnerModel.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region AbstractSpinnerModel + #region AbstractSpinnerModel declaration + /// + /// + /// + public partial class AbstractSpinnerModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.AbstractSpinnerModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractSpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSpinnerModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractSpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractSpinnerModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractSpinnerModel implementation public partial class AbstractSpinnerModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Action.cs b/src/net/JNet/Generated/Javax/Swing/Action.cs index cc27039723..4e39ba5f02 100644 --- a/src/net/JNet/Generated/Javax/Swing/Action.cs +++ b/src/net/JNet/Generated/Javax/Swing/Action.cs @@ -25,6 +25,73 @@ namespace Javax.Swing { + #region Action declaration + /// + /// + /// + public partial class Action : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Action() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.Action"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ActionDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ActionDirect : Action + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.Action"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAction /// /// .NET interface for org.mases.jnet.generated.javax.swing.Action implementing @@ -86,7 +153,7 @@ public partial interface IAction } #endregion - #region Action + #region Action implementation public partial class Action : Javax.Swing.IAction { #region Constructors @@ -317,7 +384,7 @@ public virtual bool Accept(object arg0) } #endregion - #region ActionDirect + #region ActionDirect implementation public partial class ActionDirect : Javax.Swing.IAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ActionMap.cs b/src/net/JNet/Generated/Javax/Swing/ActionMap.cs index 5055c839e5..6c5216fa11 100644 --- a/src/net/JNet/Generated/Javax/Swing/ActionMap.cs +++ b/src/net/JNet/Generated/Javax/Swing/ActionMap.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ActionMap + #region ActionMap declaration + /// + /// + /// + public partial class ActionMap : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.ActionMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActionMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActionMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActionMap implementation public partial class ActionMap { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/AllPackageClasses.cs deleted file mode 100644 index 33da998fb2..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/AllPackageClasses.cs +++ /dev/null @@ -1,8485 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing -{ - #region AbstractAction - /// - /// - /// - public partial class AbstractAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.AbstractAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractButton - /// - /// - /// - public partial class AbstractButton : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.AbstractButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractButton class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractButton class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractCellEditor - /// - /// - /// - public partial class AbstractCellEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.AbstractCellEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractCellEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractCellEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractListModel - /// - /// - /// - public partial class AbstractListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.AbstractListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractListModel - /// - /// - /// - /// - public partial class AbstractListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.AbstractListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AbstractSpinnerModel - /// - /// - /// - public partial class AbstractSpinnerModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.AbstractSpinnerModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractSpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSpinnerModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractSpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractSpinnerModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Action - /// - /// - /// - public partial class Action : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Action() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.Action"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ActionDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ActionDirect : Action - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.Action"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ActionMap - /// - /// - /// - public partial class ActionMap : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.ActionMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActionMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActionMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BorderFactory - /// - /// - /// - public partial class BorderFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.BorderFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BorderFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BorderFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BoundedRangeModel - /// - /// - /// - public partial class BoundedRangeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.BoundedRangeModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BoundedRangeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BoundedRangeModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BoundedRangeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BoundedRangeModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Box - /// - /// - /// - public partial class Box : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.Box"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Box() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Box(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Filler - /// - /// - /// - public partial class Filler : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.Box$Filler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Filler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Filler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BoxLayout - /// - /// - /// - public partial class BoxLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.BoxLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BoxLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BoxLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ButtonGroup - /// - /// - /// - public partial class ButtonGroup : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.ButtonGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ButtonGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ButtonGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ButtonModel - /// - /// - /// - public partial class ButtonModel : Java.Awt.ItemSelectable - { - const string _bridgeClassName = "javax.swing.ButtonModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ButtonModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ButtonModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ButtonModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ButtonModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CellEditor - /// - /// - /// - public partial class CellEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.CellEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CellEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CellEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CellRendererPane - /// - /// - /// - public partial class CellRendererPane : Java.Awt.Container - { - const string _bridgeClassName = "javax.swing.CellRendererPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CellRendererPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CellRendererPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComboBoxEditor - /// - /// - /// - public partial class ComboBoxEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ComboBoxEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ComboBoxEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ComboBoxEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComboBoxModel - /// - /// - /// - public partial class ComboBoxModel : Javax.Swing.ListModel - { - const string _bridgeClassName = "javax.swing.ComboBoxModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComboBoxModel - /// - /// - /// - /// - public partial class ComboBoxModel : Javax.Swing.ListModel - { - const string _bridgeClassName = "javax.swing.ComboBoxModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentInputMap - /// - /// - /// - public partial class ComponentInputMap : Javax.Swing.InputMap - { - const string _bridgeClassName = "javax.swing.ComponentInputMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentInputMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentInputMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DebugGraphics - /// - /// - /// - public partial class DebugGraphics : Java.Awt.Graphics - { - const string _bridgeClassName = "javax.swing.DebugGraphics"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DebugGraphics() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DebugGraphics(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultBoundedRangeModel - /// - /// - /// - public partial class DefaultBoundedRangeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.DefaultBoundedRangeModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultBoundedRangeModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultBoundedRangeModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultButtonModel - /// - /// - /// - public partial class DefaultButtonModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.DefaultButtonModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultButtonModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultButtonModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultCellEditor - /// - /// - /// - public partial class DefaultCellEditor : Javax.Swing.AbstractCellEditor - { - const string _bridgeClassName = "javax.swing.DefaultCellEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultCellEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultCellEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultComboBoxModel - /// - /// - /// - public partial class DefaultComboBoxModel : Javax.Swing.AbstractListModel - { - const string _bridgeClassName = "javax.swing.DefaultComboBoxModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultComboBoxModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultComboBoxModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultComboBoxModel - /// - /// - /// - /// - public partial class DefaultComboBoxModel : Javax.Swing.AbstractListModel - { - const string _bridgeClassName = "javax.swing.DefaultComboBoxModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultComboBoxModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultComboBoxModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultDesktopManager - /// - /// - /// - public partial class DefaultDesktopManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.DefaultDesktopManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultDesktopManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultDesktopManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultFocusManager - /// - /// - /// - public partial class DefaultFocusManager : Javax.Swing.FocusManager - { - const string _bridgeClassName = "javax.swing.DefaultFocusManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultFocusManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultFocusManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultListCellRenderer - /// - /// - /// - public partial class DefaultListCellRenderer : Javax.Swing.JLabel - { - const string _bridgeClassName = "javax.swing.DefaultListCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultListCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultListCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region UIResource - /// - /// - /// - public partial class UIResource : Javax.Swing.DefaultListCellRenderer - { - const string _bridgeClassName = "javax.swing.DefaultListCellRenderer$UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DefaultListModel - /// - /// - /// - public partial class DefaultListModel : Javax.Swing.AbstractListModel - { - const string _bridgeClassName = "javax.swing.DefaultListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultListModel - /// - /// - /// - /// - public partial class DefaultListModel : Javax.Swing.AbstractListModel - { - const string _bridgeClassName = "javax.swing.DefaultListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultListSelectionModel - /// - /// - /// - public partial class DefaultListSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.DefaultListSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultListSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultListSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultRowSorter - /// - /// - /// - public partial class DefaultRowSorter : Javax.Swing.RowSorter - { - const string _bridgeClassName = "javax.swing.DefaultRowSorter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DefaultRowSorter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DefaultRowSorter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultRowSorter - /// - /// - /// - /// - /// - public partial class DefaultRowSorter : Javax.Swing.RowSorter - { - const string _bridgeClassName = "javax.swing.DefaultRowSorter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DefaultRowSorter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DefaultRowSorter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultSingleSelectionModel - /// - /// - /// - public partial class DefaultSingleSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.DefaultSingleSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultSingleSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultSingleSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DesktopManager - /// - /// - /// - public partial class DesktopManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.DesktopManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DesktopManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesktopManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DesktopManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesktopManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropMode - /// - /// - /// - public partial class DropMode : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.DropMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FocusManager - /// - /// - /// - public partial class FocusManager : Java.Awt.DefaultKeyboardFocusManager - { - const string _bridgeClassName = "javax.swing.FocusManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FocusManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FocusManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GrayFilter - /// - /// - /// - public partial class GrayFilter : Java.Awt.ImageNs.RGBImageFilter - { - const string _bridgeClassName = "javax.swing.GrayFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GrayFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GrayFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GroupLayout - /// - /// - /// - public partial class GroupLayout : Java.Awt.LayoutManager2 - { - const string _bridgeClassName = "javax.swing.GroupLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GroupLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GroupLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Alignment - /// - /// - /// - public partial class Alignment : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.GroupLayout$Alignment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Alignment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Alignment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Group - /// - /// - /// - public partial class Group : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.GroupLayout$Group"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Group class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Group() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Group class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Group(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParallelGroup - /// - /// - /// - public partial class ParallelGroup : Javax.Swing.GroupLayout.Group - { - const string _bridgeClassName = "javax.swing.GroupLayout$ParallelGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParallelGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParallelGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SequentialGroup - /// - /// - /// - public partial class SequentialGroup : Javax.Swing.GroupLayout.Group - { - const string _bridgeClassName = "javax.swing.GroupLayout$SequentialGroup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SequentialGroup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SequentialGroup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Icon - /// - /// - /// - public partial class Icon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.Icon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Icon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Icon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Icon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Icon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageIcon - /// - /// - /// - public partial class ImageIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ImageIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMap - /// - /// - /// - public partial class InputMap : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.InputMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputVerifier - /// - /// - /// - public partial class InputVerifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.InputVerifier"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InputVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputVerifier() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InputVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InputVerifier(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InternalFrameFocusTraversalPolicy - /// - /// - /// - public partial class InternalFrameFocusTraversalPolicy : Java.Awt.FocusTraversalPolicy - { - const string _bridgeClassName = "javax.swing.InternalFrameFocusTraversalPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InternalFrameFocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InternalFrameFocusTraversalPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InternalFrameFocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InternalFrameFocusTraversalPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JButton - /// - /// - /// - public partial class JButton : Javax.Swing.AbstractButton - { - const string _bridgeClassName = "javax.swing.JButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JCheckBox - /// - /// - /// - public partial class JCheckBox : Javax.Swing.JToggleButton - { - const string _bridgeClassName = "javax.swing.JCheckBox"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JCheckBox() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JCheckBox(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JCheckBoxMenuItem - /// - /// - /// - public partial class JCheckBoxMenuItem : Javax.Swing.JMenuItem - { - const string _bridgeClassName = "javax.swing.JCheckBoxMenuItem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JCheckBoxMenuItem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JCheckBoxMenuItem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JColorChooser - /// - /// - /// - public partial class JColorChooser : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JColorChooser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JColorChooser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JColorChooser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JComboBox - /// - /// - /// - public partial class JComboBox : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JComboBox"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JComboBox() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JComboBox(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region KeySelectionManager - /// - /// - /// - public partial class KeySelectionManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.JComboBox$KeySelectionManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeySelectionManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySelectionManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeySelectionManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySelectionManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JComboBox - /// - /// - /// - /// - public partial class JComboBox : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JComboBox"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JComboBox() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JComboBox(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JComponent - /// - /// - /// - public partial class JComponent : Java.Awt.Container - { - const string _bridgeClassName = "javax.swing.JComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AccessibleJComponent - /// - /// - /// - public partial class AccessibleJComponent : Javax.Accessibility.AccessibleExtendedComponent - { - const string _bridgeClassName = "javax.swing.JComponent$AccessibleJComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AccessibleJComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleJComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AccessibleJComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AccessibleJComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JDesktopPane - /// - /// - /// - public partial class JDesktopPane : Javax.Swing.JLayeredPane - { - const string _bridgeClassName = "javax.swing.JDesktopPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JDesktopPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JDesktopPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JDialog - /// - /// - /// - public partial class JDialog : Java.Awt.Dialog - { - const string _bridgeClassName = "javax.swing.JDialog"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JDialog() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JDialog(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JEditorPane - /// - /// - /// - public partial class JEditorPane : Javax.Swing.Text.JTextComponent - { - const string _bridgeClassName = "javax.swing.JEditorPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JEditorPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JEditorPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JFileChooser - /// - /// - /// - public partial class JFileChooser : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JFileChooser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JFileChooser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JFileChooser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JFormattedTextField - /// - /// - /// - public partial class JFormattedTextField : Javax.Swing.JTextField - { - const string _bridgeClassName = "javax.swing.JFormattedTextField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JFormattedTextField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JFormattedTextField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AbstractFormatter - /// - /// - /// - public partial class AbstractFormatter : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.JFormattedTextField$AbstractFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractFormatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractFormatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region AbstractFormatterFactory - /// - /// - /// - public partial class AbstractFormatterFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.JFormattedTextField$AbstractFormatterFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractFormatterFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractFormatterFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractFormatterFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractFormatterFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JFrame - /// - /// - /// - public partial class JFrame : Java.Awt.Frame - { - const string _bridgeClassName = "javax.swing.JFrame"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JFrame() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JFrame(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JInternalFrame - /// - /// - /// - public partial class JInternalFrame : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JInternalFrame"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JInternalFrame() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JInternalFrame(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region JDesktopIcon - /// - /// - /// - public partial class JDesktopIcon : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JInternalFrame$JDesktopIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JDesktopIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JDesktopIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JLabel - /// - /// - /// - public partial class JLabel : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JLabel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JLabel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JLabel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JLayer - /// - /// - /// - public partial class JLayer : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JLayer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JLayer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JLayer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JLayer - /// - /// - /// - /// - public partial class JLayer : Javax.Swing.JComponent where V : Java.Awt.Component - { - const string _bridgeClassName = "javax.swing.JLayer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JLayer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JLayer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JLayeredPane - /// - /// - /// - public partial class JLayeredPane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JLayeredPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JLayeredPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JLayeredPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JList - /// - /// - /// - public partial class JList : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DropLocation - /// - /// - /// - public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation - { - const string _bridgeClassName = "javax.swing.JList$DropLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JList - /// - /// - /// - /// - public partial class JList : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMenu - /// - /// - /// - public partial class JMenu : Javax.Swing.JMenuItem - { - const string _bridgeClassName = "javax.swing.JMenu"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMenu() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMenu(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMenuBar - /// - /// - /// - public partial class JMenuBar : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JMenuBar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMenuBar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMenuBar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JMenuItem - /// - /// - /// - public partial class JMenuItem : Javax.Swing.AbstractButton - { - const string _bridgeClassName = "javax.swing.JMenuItem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JMenuItem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JMenuItem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JOptionPane - /// - /// - /// - public partial class JOptionPane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JOptionPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JOptionPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JOptionPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JPanel - /// - /// - /// - public partial class JPanel : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JPanel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPanel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPanel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JPasswordField - /// - /// - /// - public partial class JPasswordField : Javax.Swing.JTextField - { - const string _bridgeClassName = "javax.swing.JPasswordField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPasswordField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPasswordField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JPopupMenu - /// - /// - /// - public partial class JPopupMenu : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JPopupMenu"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JPopupMenu() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JPopupMenu(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Separator - /// - /// - /// - public partial class Separator : Javax.Swing.JSeparator - { - const string _bridgeClassName = "javax.swing.JPopupMenu$Separator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Separator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Separator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JProgressBar - /// - /// - /// - public partial class JProgressBar : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JProgressBar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JProgressBar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JProgressBar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JRadioButton - /// - /// - /// - public partial class JRadioButton : Javax.Swing.JToggleButton - { - const string _bridgeClassName = "javax.swing.JRadioButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JRadioButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JRadioButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JRadioButtonMenuItem - /// - /// - /// - public partial class JRadioButtonMenuItem : Javax.Swing.JMenuItem - { - const string _bridgeClassName = "javax.swing.JRadioButtonMenuItem"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JRadioButtonMenuItem() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JRadioButtonMenuItem(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JRootPane - /// - /// - /// - public partial class JRootPane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JRootPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JRootPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JRootPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JScrollBar - /// - /// - /// - public partial class JScrollBar : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JScrollBar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JScrollBar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JScrollBar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JScrollPane - /// - /// - /// - public partial class JScrollPane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JScrollPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JScrollPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JScrollPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JSeparator - /// - /// - /// - public partial class JSeparator : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JSeparator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JSeparator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JSeparator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JSlider - /// - /// - /// - public partial class JSlider : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JSlider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JSlider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JSlider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JSpinner - /// - /// - /// - public partial class JSpinner : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JSpinner"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JSpinner() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JSpinner(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DateEditor - /// - /// - /// - public partial class DateEditor : Javax.Swing.JSpinner.DefaultEditor - { - const string _bridgeClassName = "javax.swing.JSpinner$DateEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DefaultEditor - /// - /// - /// - public partial class DefaultEditor : Javax.Swing.JPanel - { - const string _bridgeClassName = "javax.swing.JSpinner$DefaultEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ListEditor - /// - /// - /// - public partial class ListEditor : Javax.Swing.JSpinner.DefaultEditor - { - const string _bridgeClassName = "javax.swing.JSpinner$ListEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region NumberEditor - /// - /// - /// - public partial class NumberEditor : Javax.Swing.JSpinner.DefaultEditor - { - const string _bridgeClassName = "javax.swing.JSpinner$NumberEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumberEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumberEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JSplitPane - /// - /// - /// - public partial class JSplitPane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JSplitPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JSplitPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JSplitPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTabbedPane - /// - /// - /// - public partial class JTabbedPane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JTabbedPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTabbedPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTabbedPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTable - /// - /// - /// - public partial class JTable : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JTable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DropLocation - /// - /// - /// - public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation - { - const string _bridgeClassName = "javax.swing.JTable$DropLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PrintMode - /// - /// - /// - public partial class PrintMode : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.JTable$PrintMode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PrintMode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PrintMode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JTextArea - /// - /// - /// - public partial class JTextArea : Javax.Swing.Text.JTextComponent - { - const string _bridgeClassName = "javax.swing.JTextArea"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTextArea() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTextArea(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTextField - /// - /// - /// - public partial class JTextField : Javax.Swing.Text.JTextComponent - { - const string _bridgeClassName = "javax.swing.JTextField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTextField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTextField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTextPane - /// - /// - /// - public partial class JTextPane : Javax.Swing.JEditorPane - { - const string _bridgeClassName = "javax.swing.JTextPane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTextPane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTextPane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JToggleButton - /// - /// - /// - public partial class JToggleButton : Javax.Swing.AbstractButton - { - const string _bridgeClassName = "javax.swing.JToggleButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JToggleButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JToggleButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ToggleButtonModel - /// - /// - /// - public partial class ToggleButtonModel : Javax.Swing.DefaultButtonModel - { - const string _bridgeClassName = "javax.swing.JToggleButton$ToggleButtonModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToggleButtonModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ToggleButtonModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JToolBar - /// - /// - /// - public partial class JToolBar : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JToolBar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JToolBar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JToolBar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Separator - /// - /// - /// - public partial class Separator : Javax.Swing.JSeparator - { - const string _bridgeClassName = "javax.swing.JToolBar$Separator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Separator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Separator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JToolTip - /// - /// - /// - public partial class JToolTip : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JToolTip"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JToolTip() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JToolTip(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTree - /// - /// - /// - public partial class JTree : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JTree"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTree() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTree(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DropLocation - /// - /// - /// - public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation - { - const string _bridgeClassName = "javax.swing.JTree$DropLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DynamicUtilTreeNode - /// - /// - /// - public partial class DynamicUtilTreeNode : Javax.Swing.Tree.DefaultMutableTreeNode - { - const string _bridgeClassName = "javax.swing.JTree$DynamicUtilTreeNode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DynamicUtilTreeNode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DynamicUtilTreeNode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JViewport - /// - /// - /// - public partial class JViewport : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.JViewport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JViewport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JViewport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JWindow - /// - /// - /// - public partial class JWindow : Java.Awt.Window - { - const string _bridgeClassName = "javax.swing.JWindow"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JWindow() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JWindow(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyStroke - /// - /// - /// - public partial class KeyStroke : Java.Awt.AWTKeyStroke - { - const string _bridgeClassName = "javax.swing.KeyStroke"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyStroke() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyStroke(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayoutFocusTraversalPolicy - /// - /// - /// - public partial class LayoutFocusTraversalPolicy : Javax.Swing.SortingFocusTraversalPolicy - { - const string _bridgeClassName = "javax.swing.LayoutFocusTraversalPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LayoutFocusTraversalPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LayoutFocusTraversalPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayoutStyle - /// - /// - /// - public partial class LayoutStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.LayoutStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LayoutStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LayoutStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayoutStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ComponentPlacement - /// - /// - /// - public partial class ComponentPlacement : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.LayoutStyle$ComponentPlacement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentPlacement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentPlacement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ListCellRenderer - /// - /// - /// - public partial class ListCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ListCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListCellRenderer - /// - /// - /// - /// - public partial class ListCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.ListCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListModel - /// - /// - /// - public partial class ListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListModel - /// - /// - /// - /// - public partial class ListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.ListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListSelectionModel - /// - /// - /// - public partial class ListSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ListSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LookAndFeel - /// - /// - /// - public partial class LookAndFeel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.LookAndFeel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LookAndFeel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LookAndFeel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuElement - /// - /// - /// - public partial class MenuElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.MenuElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuSelectionManager - /// - /// - /// - public partial class MenuSelectionManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.MenuSelectionManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuSelectionManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuSelectionManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MutableComboBoxModel - /// - /// - /// - public partial class MutableComboBoxModel : Javax.Swing.ComboBoxModel - { - const string _bridgeClassName = "javax.swing.MutableComboBoxModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableComboBoxModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableComboBoxModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MutableComboBoxModel - /// - /// - /// - /// - public partial class MutableComboBoxModel : Javax.Swing.ComboBoxModel - { - const string _bridgeClassName = "javax.swing.MutableComboBoxModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableComboBoxModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableComboBoxModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OverlayLayout - /// - /// - /// - public partial class OverlayLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.OverlayLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OverlayLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OverlayLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Painter - /// - /// - /// - public partial class Painter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.Painter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Painter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Painter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Painter - /// - /// - /// - /// - public partial class Painter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.Painter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Painter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Painter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Popup - /// - /// - /// - public partial class Popup : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.Popup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Popup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Popup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PopupFactory - /// - /// - /// - public partial class PopupFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.PopupFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PopupFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PopupFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProgressMonitor - /// - /// - /// - public partial class ProgressMonitor : Javax.Accessibility.Accessible - { - const string _bridgeClassName = "javax.swing.ProgressMonitor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ProgressMonitor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ProgressMonitor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProgressMonitorInputStream - /// - /// - /// - public partial class ProgressMonitorInputStream : Java.Io.FilterInputStream - { - const string _bridgeClassName = "javax.swing.ProgressMonitorInputStream"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ProgressMonitorInputStream() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ProgressMonitorInputStream(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Renderer - /// - /// - /// - public partial class Renderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.Renderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Renderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Renderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Renderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Renderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RepaintManager - /// - /// - /// - public partial class RepaintManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.RepaintManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RepaintManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RepaintManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RootPaneContainer - /// - /// - /// - public partial class RootPaneContainer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.RootPaneContainer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RootPaneContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RootPaneContainer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RootPaneContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RootPaneContainer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowFilter - /// - /// - /// - public partial class RowFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.RowFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ComparisonType - /// - /// - /// - public partial class ComparisonType : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.RowFilter$ComparisonType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComparisonType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComparisonType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Entry - /// - /// - /// - public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.RowFilter$Entry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Entry - /// - /// - /// - /// - /// - public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.RowFilter$Entry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region RowFilter - /// - /// - /// - /// - /// - public partial class RowFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.RowFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowSorter - /// - /// - /// - public partial class RowSorter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.RowSorter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSorter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSorter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region SortKey - /// - /// - /// - public partial class SortKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.RowSorter$SortKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SortKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SortKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region RowSorter - /// - /// - /// - /// - public partial class RowSorter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.swing.RowSorter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSorter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowSorter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Scrollable - /// - /// - /// - public partial class Scrollable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.Scrollable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Scrollable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Scrollable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Scrollable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Scrollable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScrollPaneConstants - /// - /// - /// - public partial class ScrollPaneConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ScrollPaneConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScrollPaneConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScrollPaneConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScrollPaneConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScrollPaneConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScrollPaneLayout - /// - /// - /// - public partial class ScrollPaneLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ScrollPaneLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScrollPaneLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScrollPaneLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region UIResource - /// - /// - /// - public partial class UIResource : Javax.Swing.ScrollPaneLayout - { - const string _bridgeClassName = "javax.swing.ScrollPaneLayout$UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region SingleSelectionModel - /// - /// - /// - public partial class SingleSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.SingleSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SingleSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SingleSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SingleSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SingleSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SizeRequirements - /// - /// - /// - public partial class SizeRequirements : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.SizeRequirements"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SizeRequirements() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SizeRequirements(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SizeSequence - /// - /// - /// - public partial class SizeSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.SizeSequence"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SizeSequence() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SizeSequence(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortingFocusTraversalPolicy - /// - /// - /// - public partial class SortingFocusTraversalPolicy : Javax.Swing.InternalFrameFocusTraversalPolicy - { - const string _bridgeClassName = "javax.swing.SortingFocusTraversalPolicy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SortingFocusTraversalPolicy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SortingFocusTraversalPolicy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SortOrder - /// - /// - /// - public partial class SortOrder : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.SortOrder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SortOrder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SortOrder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpinnerDateModel - /// - /// - /// - public partial class SpinnerDateModel : Javax.Swing.AbstractSpinnerModel - { - const string _bridgeClassName = "javax.swing.SpinnerDateModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SpinnerDateModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SpinnerDateModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpinnerListModel - /// - /// - /// - public partial class SpinnerListModel : Javax.Swing.AbstractSpinnerModel - { - const string _bridgeClassName = "javax.swing.SpinnerListModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SpinnerListModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SpinnerListModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpinnerModel - /// - /// - /// - public partial class SpinnerModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.SpinnerModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SpinnerModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SpinnerModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpinnerNumberModel - /// - /// - /// - public partial class SpinnerNumberModel : Javax.Swing.AbstractSpinnerModel - { - const string _bridgeClassName = "javax.swing.SpinnerNumberModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SpinnerNumberModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SpinnerNumberModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Spring - /// - /// - /// - public partial class Spring : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.Spring"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Spring class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Spring() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Spring class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Spring(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpringLayout - /// - /// - /// - public partial class SpringLayout : Java.Awt.LayoutManager2 - { - const string _bridgeClassName = "javax.swing.SpringLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SpringLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SpringLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Constraints - /// - /// - /// - public partial class Constraints : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.SpringLayout$Constraints"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Constraints() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Constraints(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region SwingConstants - /// - /// - /// - public partial class SwingConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.SwingConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SwingConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SwingConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SwingContainer - /// - /// - /// - public partial class SwingContainer : Java.Lang.Annotation.Annotation - { - const string _bridgeClassName = "javax.swing.SwingContainer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SwingContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingContainer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SwingContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingContainer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SwingUtilities - /// - /// - /// - public partial class SwingUtilities : Javax.Swing.SwingConstants - { - const string _bridgeClassName = "javax.swing.SwingUtilities"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SwingUtilities() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SwingUtilities(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SwingWorker - /// - /// - /// - public partial class SwingWorker : Java.Util.Concurrent.RunnableFuture - { - const string _bridgeClassName = "javax.swing.SwingWorker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingWorker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingWorker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region StateValue - /// - /// - /// - public partial class StateValue : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.SwingWorker$StateValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StateValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StateValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region SwingWorker - /// - /// - /// - /// - /// - public partial class SwingWorker : Java.Util.Concurrent.RunnableFuture - { - const string _bridgeClassName = "javax.swing.SwingWorker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingWorker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SwingWorker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Timer - /// - /// - /// - public partial class Timer : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.Timer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Timer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Timer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransferHandler - /// - /// - /// - public partial class TransferHandler : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.TransferHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TransferHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TransferHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DropLocation - /// - /// - /// - public partial class DropLocation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.TransferHandler$DropLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TransferSupport - /// - /// - /// - public partial class TransferSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.TransferHandler$TransferSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TransferSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TransferSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region UIClientPropertyKey - /// - /// - /// - public partial class UIClientPropertyKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.UIClientPropertyKey"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UIClientPropertyKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UIClientPropertyKey() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UIClientPropertyKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UIClientPropertyKey(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UIDefaults - /// - /// - /// - public partial class UIDefaults : Java.Util.Hashtable - { - const string _bridgeClassName = "javax.swing.UIDefaults"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIDefaults() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIDefaults(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ActiveValue - /// - /// - /// - public partial class ActiveValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.UIDefaults$ActiveValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ActiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActiveValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ActiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ActiveValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region LazyInputMap - /// - /// - /// - public partial class LazyInputMap : Javax.Swing.UIDefaults.LazyValue - { - const string _bridgeClassName = "javax.swing.UIDefaults$LazyInputMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LazyInputMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LazyInputMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region LazyValue - /// - /// - /// - public partial class LazyValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.UIDefaults$LazyValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LazyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LazyValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LazyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LazyValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ProxyLazyValue - /// - /// - /// - public partial class ProxyLazyValue : Javax.Swing.UIDefaults.LazyValue - { - const string _bridgeClassName = "javax.swing.UIDefaults$ProxyLazyValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ProxyLazyValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ProxyLazyValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region UIManager - /// - /// - /// - public partial class UIManager : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.UIManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region LookAndFeelInfo - /// - /// - /// - public partial class LookAndFeelInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.UIManager$LookAndFeelInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LookAndFeelInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LookAndFeelInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region UnsupportedLookAndFeelException - /// - /// - /// - public partial class UnsupportedLookAndFeelException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.swing.UnsupportedLookAndFeelException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ViewportLayout - /// - /// - /// - public partial class ViewportLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.ViewportLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ViewportLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ViewportLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WindowConstants - /// - /// - /// - public partial class WindowConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.WindowConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("WindowConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WindowConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("WindowConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public WindowConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Border/AbstractBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/AbstractBorder.cs index 71689af3e7..f20354ee02 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/AbstractBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/AbstractBorder.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Border { - #region AbstractBorder + #region AbstractBorder declaration + /// + /// + /// + public partial class AbstractBorder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.border.AbstractBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractBorder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractBorder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractBorder implementation public partial class AbstractBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Border/AllPackageClasses.cs deleted file mode 100644 index 4fa50cdc60..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Border/AllPackageClasses.cs +++ /dev/null @@ -1,529 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Border -{ - #region AbstractBorder - /// - /// - /// - public partial class AbstractBorder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.border.AbstractBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractBorder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractBorder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BevelBorder - /// - /// - /// - public partial class BevelBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.BevelBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BevelBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BevelBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Border - /// - /// - /// - public partial class Border : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.border.Border"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Border class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Border() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Border class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Border(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompoundBorder - /// - /// - /// - public partial class CompoundBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.CompoundBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompoundBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompoundBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EmptyBorder - /// - /// - /// - public partial class EmptyBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.EmptyBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EmptyBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EmptyBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EtchedBorder - /// - /// - /// - public partial class EtchedBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.EtchedBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EtchedBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EtchedBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LineBorder - /// - /// - /// - public partial class LineBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.LineBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LineBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LineBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MatteBorder - /// - /// - /// - public partial class MatteBorder : Javax.Swing.Border.EmptyBorder - { - const string _bridgeClassName = "javax.swing.border.MatteBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MatteBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MatteBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SoftBevelBorder - /// - /// - /// - public partial class SoftBevelBorder : Javax.Swing.Border.BevelBorder - { - const string _bridgeClassName = "javax.swing.border.SoftBevelBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SoftBevelBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SoftBevelBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StrokeBorder - /// - /// - /// - public partial class StrokeBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.StrokeBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StrokeBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StrokeBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TitledBorder - /// - /// - /// - public partial class TitledBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.border.TitledBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TitledBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TitledBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Border/BevelBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/BevelBorder.cs index 2afa7de321..d988906cb7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/BevelBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/BevelBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region BevelBorder + #region BevelBorder declaration + /// + /// + /// + public partial class BevelBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.BevelBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BevelBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BevelBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BevelBorder implementation public partial class BevelBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/Border.cs b/src/net/JNet/Generated/Javax/Swing/Border/Border.cs index 1c6800ee1d..9f56477a5a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/Border.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/Border.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Border { + #region Border declaration + /// + /// + /// + public partial class Border : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.border.Border"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Border class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Border() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Border class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Border(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBorder /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface IBorder } #endregion - #region Border + #region Border implementation public partial class Border : Javax.Swing.Border.IBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/CompoundBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/CompoundBorder.cs index e3d8af496c..422d469842 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/CompoundBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/CompoundBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region CompoundBorder + #region CompoundBorder declaration + /// + /// + /// + public partial class CompoundBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.CompoundBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompoundBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompoundBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompoundBorder implementation public partial class CompoundBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/EmptyBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/EmptyBorder.cs index 029ce3c53a..92e2a10911 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/EmptyBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/EmptyBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region EmptyBorder + #region EmptyBorder declaration + /// + /// + /// + public partial class EmptyBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.EmptyBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EmptyBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EmptyBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EmptyBorder implementation public partial class EmptyBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/EtchedBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/EtchedBorder.cs index efa4ffe9f3..279b40e839 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/EtchedBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/EtchedBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region EtchedBorder + #region EtchedBorder declaration + /// + /// + /// + public partial class EtchedBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.EtchedBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EtchedBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EtchedBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EtchedBorder implementation public partial class EtchedBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/LineBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/LineBorder.cs index aa9763b99e..38e9b12195 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/LineBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/LineBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region LineBorder + #region LineBorder declaration + /// + /// + /// + public partial class LineBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.LineBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LineBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LineBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LineBorder implementation public partial class LineBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/MatteBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/MatteBorder.cs index 045f0414fe..2e3fb11c20 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/MatteBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/MatteBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region MatteBorder + #region MatteBorder declaration + /// + /// + /// + public partial class MatteBorder : Javax.Swing.Border.EmptyBorder + { + const string _bridgeClassName = "javax.swing.border.MatteBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MatteBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MatteBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MatteBorder implementation public partial class MatteBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/SoftBevelBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/SoftBevelBorder.cs index ef714e89d4..b7cdc867dd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/SoftBevelBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/SoftBevelBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region SoftBevelBorder + #region SoftBevelBorder declaration + /// + /// + /// + public partial class SoftBevelBorder : Javax.Swing.Border.BevelBorder + { + const string _bridgeClassName = "javax.swing.border.SoftBevelBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SoftBevelBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SoftBevelBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SoftBevelBorder implementation public partial class SoftBevelBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/StrokeBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/StrokeBorder.cs index e1997b6609..9b64de6ab5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/StrokeBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/StrokeBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region StrokeBorder + #region StrokeBorder declaration + /// + /// + /// + public partial class StrokeBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.StrokeBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StrokeBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StrokeBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StrokeBorder implementation public partial class StrokeBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Border/TitledBorder.cs b/src/net/JNet/Generated/Javax/Swing/Border/TitledBorder.cs index 17e2c801fc..4d2d07a026 100644 --- a/src/net/JNet/Generated/Javax/Swing/Border/TitledBorder.cs +++ b/src/net/JNet/Generated/Javax/Swing/Border/TitledBorder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Border { - #region TitledBorder + #region TitledBorder declaration + /// + /// + /// + public partial class TitledBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.border.TitledBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TitledBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TitledBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TitledBorder implementation public partial class TitledBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/BorderFactory.cs b/src/net/JNet/Generated/Javax/Swing/BorderFactory.cs index 84ab41bb4a..5ca9dd952b 100644 --- a/src/net/JNet/Generated/Javax/Swing/BorderFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/BorderFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region BorderFactory + #region BorderFactory declaration + /// + /// + /// + public partial class BorderFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.BorderFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BorderFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BorderFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BorderFactory implementation public partial class BorderFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/BoundedRangeModel.cs b/src/net/JNet/Generated/Javax/Swing/BoundedRangeModel.cs index d5cff13ff7..9e2d50f705 100644 --- a/src/net/JNet/Generated/Javax/Swing/BoundedRangeModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/BoundedRangeModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region BoundedRangeModel declaration + /// + /// + /// + public partial class BoundedRangeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.BoundedRangeModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BoundedRangeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BoundedRangeModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BoundedRangeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BoundedRangeModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IBoundedRangeModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -82,7 +129,7 @@ public partial interface IBoundedRangeModel } #endregion - #region BoundedRangeModel + #region BoundedRangeModel implementation public partial class BoundedRangeModel : Javax.Swing.IBoundedRangeModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Box.cs b/src/net/JNet/Generated/Javax/Swing/Box.cs index 934696310a..9fe03c6497 100644 --- a/src/net/JNet/Generated/Javax/Swing/Box.cs +++ b/src/net/JNet/Generated/Javax/Swing/Box.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region Box + #region Box declaration + /// + /// + /// + public partial class Box : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.Box"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Box() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Box(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Filler declaration + /// + /// + /// + public partial class Filler : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.Box$Filler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Filler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Filler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Box implementation public partial class Box { #region Constructors @@ -128,7 +218,7 @@ public static Javax.Swing.Box CreateVerticalBox() #endregion #region Nested classes - #region Filler + #region Filler implementation public partial class Filler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/BoxLayout.cs b/src/net/JNet/Generated/Javax/Swing/BoxLayout.cs index a7007df338..92d0d1ad3f 100644 --- a/src/net/JNet/Generated/Javax/Swing/BoxLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/BoxLayout.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region BoxLayout + #region BoxLayout declaration + /// + /// + /// + public partial class BoxLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.BoxLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BoxLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BoxLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BoxLayout implementation public partial class BoxLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ButtonGroup.cs b/src/net/JNet/Generated/Javax/Swing/ButtonGroup.cs index fd83a6395c..006b1eb5b3 100644 --- a/src/net/JNet/Generated/Javax/Swing/ButtonGroup.cs +++ b/src/net/JNet/Generated/Javax/Swing/ButtonGroup.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ButtonGroup + #region ButtonGroup declaration + /// + /// + /// + public partial class ButtonGroup : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.ButtonGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ButtonGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ButtonGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ButtonGroup implementation public partial class ButtonGroup { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ButtonModel.cs b/src/net/JNet/Generated/Javax/Swing/ButtonModel.cs index a25b6e6b85..ad21d599b9 100644 --- a/src/net/JNet/Generated/Javax/Swing/ButtonModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/ButtonModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region ButtonModel declaration + /// + /// + /// + public partial class ButtonModel : Java.Awt.ItemSelectable + { + const string _bridgeClassName = "javax.swing.ButtonModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ButtonModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ButtonModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ButtonModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ButtonModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IButtonModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -135,7 +182,7 @@ public partial interface IButtonModel : Java.Awt.IItemSelectable } #endregion - #region ButtonModel + #region ButtonModel implementation public partial class ButtonModel : Javax.Swing.IButtonModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/CellEditor.cs b/src/net/JNet/Generated/Javax/Swing/CellEditor.cs index a109af8d7a..a4142748f0 100644 --- a/src/net/JNet/Generated/Javax/Swing/CellEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/CellEditor.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region CellEditor declaration + /// + /// + /// + public partial class CellEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.CellEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CellEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CellEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICellEditor /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface ICellEditor } #endregion - #region CellEditor + #region CellEditor implementation public partial class CellEditor : Javax.Swing.ICellEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/CellRendererPane.cs b/src/net/JNet/Generated/Javax/Swing/CellRendererPane.cs index 9b44045efb..6d9e01063a 100644 --- a/src/net/JNet/Generated/Javax/Swing/CellRendererPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/CellRendererPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region CellRendererPane + #region CellRendererPane declaration + /// + /// + /// + public partial class CellRendererPane : Java.Awt.Container + { + const string _bridgeClassName = "javax.swing.CellRendererPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CellRendererPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CellRendererPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CellRendererPane implementation public partial class CellRendererPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Colorchooser/AbstractColorChooserPanel.cs b/src/net/JNet/Generated/Javax/Swing/Colorchooser/AbstractColorChooserPanel.cs index 28a0f10659..9f69db3099 100644 --- a/src/net/JNet/Generated/Javax/Swing/Colorchooser/AbstractColorChooserPanel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Colorchooser/AbstractColorChooserPanel.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Colorchooser { - #region AbstractColorChooserPanel + #region AbstractColorChooserPanel declaration + /// + /// + /// + public partial class AbstractColorChooserPanel : Javax.Swing.JPanel + { + const string _bridgeClassName = "javax.swing.colorchooser.AbstractColorChooserPanel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractColorChooserPanel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractColorChooserPanel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractColorChooserPanel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractColorChooserPanel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractColorChooserPanel implementation public partial class AbstractColorChooserPanel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Colorchooser/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Colorchooser/AllPackageClasses.cs deleted file mode 100644 index bb8455bc5d..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Colorchooser/AllPackageClasses.cs +++ /dev/null @@ -1,214 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Colorchooser -{ - #region AbstractColorChooserPanel - /// - /// - /// - public partial class AbstractColorChooserPanel : Javax.Swing.JPanel - { - const string _bridgeClassName = "javax.swing.colorchooser.AbstractColorChooserPanel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractColorChooserPanel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractColorChooserPanel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractColorChooserPanel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractColorChooserPanel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorChooserComponentFactory - /// - /// - /// - public partial class ColorChooserComponentFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.colorchooser.ColorChooserComponentFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorChooserComponentFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorChooserComponentFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorSelectionModel - /// - /// - /// - public partial class ColorSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.colorchooser.ColorSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ColorSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ColorSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultColorSelectionModel - /// - /// - /// - public partial class DefaultColorSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.colorchooser.DefaultColorSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultColorSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultColorSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorChooserComponentFactory.cs b/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorChooserComponentFactory.cs index 04180eac8d..4cc7d8dd08 100644 --- a/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorChooserComponentFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorChooserComponentFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Colorchooser { - #region ColorChooserComponentFactory + #region ColorChooserComponentFactory declaration + /// + /// + /// + public partial class ColorChooserComponentFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.colorchooser.ColorChooserComponentFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorChooserComponentFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorChooserComponentFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorChooserComponentFactory implementation public partial class ColorChooserComponentFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorSelectionModel.cs index e5b62dd8e8..af760b9439 100644 --- a/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Colorchooser/ColorSelectionModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Colorchooser { + #region ColorSelectionModel declaration + /// + /// + /// + public partial class ColorSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.colorchooser.ColorSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ColorSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ColorSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IColorSelectionModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface IColorSelectionModel } #endregion - #region ColorSelectionModel + #region ColorSelectionModel implementation public partial class ColorSelectionModel : Javax.Swing.Colorchooser.IColorSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Colorchooser/DefaultColorSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/Colorchooser/DefaultColorSelectionModel.cs index fb52ccb6b1..a914a61748 100644 --- a/src/net/JNet/Generated/Javax/Swing/Colorchooser/DefaultColorSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Colorchooser/DefaultColorSelectionModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Colorchooser { - #region DefaultColorSelectionModel + #region DefaultColorSelectionModel declaration + /// + /// + /// + public partial class DefaultColorSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.colorchooser.DefaultColorSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultColorSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultColorSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultColorSelectionModel implementation public partial class DefaultColorSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ComboBoxEditor.cs b/src/net/JNet/Generated/Javax/Swing/ComboBoxEditor.cs index 8c74003f6c..4b00965a42 100644 --- a/src/net/JNet/Generated/Javax/Swing/ComboBoxEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/ComboBoxEditor.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region ComboBoxEditor declaration + /// + /// + /// + public partial class ComboBoxEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ComboBoxEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ComboBoxEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ComboBoxEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IComboBoxEditor /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface IComboBoxEditor } #endregion - #region ComboBoxEditor + #region ComboBoxEditor implementation public partial class ComboBoxEditor : Javax.Swing.IComboBoxEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ComboBoxModel.cs b/src/net/JNet/Generated/Javax/Swing/ComboBoxModel.cs index 64000f889d..9220f1f65c 100644 --- a/src/net/JNet/Generated/Javax/Swing/ComboBoxModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/ComboBoxModel.cs @@ -25,7 +25,102 @@ namespace Javax.Swing { - #region ComboBoxModel + #region ComboBoxModel declaration + /// + /// + /// + public partial class ComboBoxModel : Javax.Swing.ListModel + { + const string _bridgeClassName = "javax.swing.ComboBoxModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComboBoxModel declaration + /// + /// + /// + /// + public partial class ComboBoxModel : Javax.Swing.ListModel + { + const string _bridgeClassName = "javax.swing.ComboBoxModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComboBoxModel implementation public partial class ComboBoxModel { #region Constructors @@ -85,7 +180,7 @@ public partial interface IComboBoxModel : Javax.Swing.IListModel } #endregion - #region ComboBoxModel + #region ComboBoxModel implementation public partial class ComboBoxModel : Javax.Swing.IComboBoxModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ComponentInputMap.cs b/src/net/JNet/Generated/Javax/Swing/ComponentInputMap.cs index 9b4573947f..9b3448e929 100644 --- a/src/net/JNet/Generated/Javax/Swing/ComponentInputMap.cs +++ b/src/net/JNet/Generated/Javax/Swing/ComponentInputMap.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ComponentInputMap + #region ComponentInputMap declaration + /// + /// + /// + public partial class ComponentInputMap : Javax.Swing.InputMap + { + const string _bridgeClassName = "javax.swing.ComponentInputMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentInputMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentInputMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentInputMap implementation public partial class ComponentInputMap { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DebugGraphics.cs b/src/net/JNet/Generated/Javax/Swing/DebugGraphics.cs index c531d72d3f..385e6b368c 100644 --- a/src/net/JNet/Generated/Javax/Swing/DebugGraphics.cs +++ b/src/net/JNet/Generated/Javax/Swing/DebugGraphics.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DebugGraphics + #region DebugGraphics declaration + /// + /// + /// + public partial class DebugGraphics : Java.Awt.Graphics + { + const string _bridgeClassName = "javax.swing.DebugGraphics"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DebugGraphics() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DebugGraphics(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DebugGraphics implementation public partial class DebugGraphics { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultBoundedRangeModel.cs b/src/net/JNet/Generated/Javax/Swing/DefaultBoundedRangeModel.cs index e8f896e5eb..1b6b6ad130 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultBoundedRangeModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultBoundedRangeModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultBoundedRangeModel + #region DefaultBoundedRangeModel declaration + /// + /// + /// + public partial class DefaultBoundedRangeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.DefaultBoundedRangeModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultBoundedRangeModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultBoundedRangeModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultBoundedRangeModel implementation public partial class DefaultBoundedRangeModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultButtonModel.cs b/src/net/JNet/Generated/Javax/Swing/DefaultButtonModel.cs index 9f2ac79fa2..ffef07e1b9 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultButtonModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultButtonModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultButtonModel + #region DefaultButtonModel declaration + /// + /// + /// + public partial class DefaultButtonModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.DefaultButtonModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultButtonModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultButtonModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultButtonModel implementation public partial class DefaultButtonModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultCellEditor.cs b/src/net/JNet/Generated/Javax/Swing/DefaultCellEditor.cs index 6fe0de597b..046757705a 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultCellEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultCellEditor.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultCellEditor + #region DefaultCellEditor declaration + /// + /// + /// + public partial class DefaultCellEditor : Javax.Swing.AbstractCellEditor + { + const string _bridgeClassName = "javax.swing.DefaultCellEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultCellEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultCellEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultCellEditor implementation public partial class DefaultCellEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultComboBoxModel.cs b/src/net/JNet/Generated/Javax/Swing/DefaultComboBoxModel.cs index c252fd74e8..3270e36bda 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultComboBoxModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultComboBoxModel.cs @@ -25,7 +25,98 @@ namespace Javax.Swing { - #region DefaultComboBoxModel + #region DefaultComboBoxModel declaration + /// + /// + /// + public partial class DefaultComboBoxModel : Javax.Swing.AbstractListModel + { + const string _bridgeClassName = "javax.swing.DefaultComboBoxModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultComboBoxModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultComboBoxModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultComboBoxModel declaration + /// + /// + /// + /// + public partial class DefaultComboBoxModel : Javax.Swing.AbstractListModel + { + const string _bridgeClassName = "javax.swing.DefaultComboBoxModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultComboBoxModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultComboBoxModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultComboBoxModel implementation public partial class DefaultComboBoxModel { #region Constructors @@ -141,7 +232,7 @@ public void RemoveElementAt(int arg0) } #endregion - #region DefaultComboBoxModel + #region DefaultComboBoxModel implementation public partial class DefaultComboBoxModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultDesktopManager.cs b/src/net/JNet/Generated/Javax/Swing/DefaultDesktopManager.cs index 69c5bdbc73..34964cc648 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultDesktopManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultDesktopManager.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultDesktopManager + #region DefaultDesktopManager declaration + /// + /// + /// + public partial class DefaultDesktopManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.DefaultDesktopManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultDesktopManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultDesktopManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultDesktopManager implementation public partial class DefaultDesktopManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultFocusManager.cs b/src/net/JNet/Generated/Javax/Swing/DefaultFocusManager.cs index 50a0f7a430..a495da74a4 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultFocusManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultFocusManager.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultFocusManager + #region DefaultFocusManager declaration + /// + /// + /// + public partial class DefaultFocusManager : Javax.Swing.FocusManager + { + const string _bridgeClassName = "javax.swing.DefaultFocusManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultFocusManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultFocusManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultFocusManager implementation public partial class DefaultFocusManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultListCellRenderer.cs b/src/net/JNet/Generated/Javax/Swing/DefaultListCellRenderer.cs index ab2dbb28cd..bec0a6ea99 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultListCellRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultListCellRenderer.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region DefaultListCellRenderer + #region DefaultListCellRenderer declaration + /// + /// + /// + public partial class DefaultListCellRenderer : Javax.Swing.JLabel + { + const string _bridgeClassName = "javax.swing.DefaultListCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultListCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultListCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region UIResource declaration + /// + /// + /// + public partial class UIResource : Javax.Swing.DefaultListCellRenderer + { + const string _bridgeClassName = "javax.swing.DefaultListCellRenderer$UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DefaultListCellRenderer implementation public partial class DefaultListCellRenderer { #region Constructors @@ -70,7 +160,7 @@ public Java.Awt.Component GetListCellRendererComponent(Javax.Swing.JList #endregion #region Nested classes - #region UIResource + #region UIResource implementation public partial class UIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultListModel.cs b/src/net/JNet/Generated/Javax/Swing/DefaultListModel.cs index 0838b68b5d..fea7d5edc0 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultListModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultListModel.cs @@ -25,7 +25,98 @@ namespace Javax.Swing { - #region DefaultListModel + #region DefaultListModel declaration + /// + /// + /// + public partial class DefaultListModel : Javax.Swing.AbstractListModel + { + const string _bridgeClassName = "javax.swing.DefaultListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultListModel declaration + /// + /// + /// + /// + public partial class DefaultListModel : Javax.Swing.AbstractListModel + { + const string _bridgeClassName = "javax.swing.DefaultListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultListModel implementation public partial class DefaultListModel { #region Constructors @@ -319,7 +410,7 @@ public void TrimToSize() } #endregion - #region DefaultListModel + #region DefaultListModel implementation public partial class DefaultListModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultListSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/DefaultListSelectionModel.cs index fc78a0f38a..9bdae8b3f0 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultListSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultListSelectionModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultListSelectionModel + #region DefaultListSelectionModel declaration + /// + /// + /// + public partial class DefaultListSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.DefaultListSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultListSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultListSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultListSelectionModel implementation public partial class DefaultListSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultRowSorter.cs b/src/net/JNet/Generated/Javax/Swing/DefaultRowSorter.cs index 552455ae91..06a8ab0208 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultRowSorter.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultRowSorter.cs @@ -25,7 +25,103 @@ namespace Javax.Swing { - #region DefaultRowSorter + #region DefaultRowSorter declaration + /// + /// + /// + public partial class DefaultRowSorter : Javax.Swing.RowSorter + { + const string _bridgeClassName = "javax.swing.DefaultRowSorter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DefaultRowSorter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DefaultRowSorter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultRowSorter declaration + /// + /// + /// + /// + /// + public partial class DefaultRowSorter : Javax.Swing.RowSorter + { + const string _bridgeClassName = "javax.swing.DefaultRowSorter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DefaultRowSorter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DefaultRowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DefaultRowSorter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultRowSorter implementation public partial class DefaultRowSorter { #region Constructors @@ -120,7 +216,7 @@ public void Sort() } #endregion - #region DefaultRowSorter + #region DefaultRowSorter implementation public partial class DefaultRowSorter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DefaultSingleSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/DefaultSingleSelectionModel.cs index 53124b26a5..b048fcbfec 100644 --- a/src/net/JNet/Generated/Javax/Swing/DefaultSingleSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/DefaultSingleSelectionModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DefaultSingleSelectionModel + #region DefaultSingleSelectionModel declaration + /// + /// + /// + public partial class DefaultSingleSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.DefaultSingleSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultSingleSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultSingleSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultSingleSelectionModel implementation public partial class DefaultSingleSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DesktopManager.cs b/src/net/JNet/Generated/Javax/Swing/DesktopManager.cs index 1b60fc0449..847b6af789 100644 --- a/src/net/JNet/Generated/Javax/Swing/DesktopManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/DesktopManager.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region DesktopManager declaration + /// + /// + /// + public partial class DesktopManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.DesktopManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DesktopManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesktopManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DesktopManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesktopManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDesktopManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -129,7 +176,7 @@ public partial interface IDesktopManager } #endregion - #region DesktopManager + #region DesktopManager implementation public partial class DesktopManager : Javax.Swing.IDesktopManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/DropMode.cs b/src/net/JNet/Generated/Javax/Swing/DropMode.cs index 85ff8feeee..f75cd34912 100644 --- a/src/net/JNet/Generated/Javax/Swing/DropMode.cs +++ b/src/net/JNet/Generated/Javax/Swing/DropMode.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region DropMode + #region DropMode declaration + /// + /// + /// + public partial class DropMode : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.DropMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropMode implementation public partial class DropMode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Event/AllPackageClasses.cs deleted file mode 100644 index ad94198080..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Event/AllPackageClasses.cs +++ /dev/null @@ -1,2769 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Event -{ - #region AncestorEvent - /// - /// - /// - public partial class AncestorEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "javax.swing.event.AncestorEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AncestorEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AncestorEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AncestorListener - /// - /// - /// - public partial class AncestorListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AncestorListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.AncestorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region AncestorListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class AncestorListenerDirect : AncestorListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.AncestorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region CaretEvent - /// - /// - /// - public partial class CaretEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.CaretEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CaretEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CaretEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CaretEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CaretEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CaretListener - /// - /// - /// - public partial class CaretListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CaretListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.CaretListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region CaretListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class CaretListenerDirect : CaretListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.CaretListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region CellEditorListener - /// - /// - /// - public partial class CellEditorListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CellEditorListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.CellEditorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region CellEditorListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class CellEditorListenerDirect : CellEditorListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.CellEditorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ChangeEvent - /// - /// - /// - public partial class ChangeEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.ChangeEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChangeEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChangeEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChangeListener - /// - /// - /// - public partial class ChangeListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChangeListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.ChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ChangeListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ChangeListenerDirect : ChangeListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.ChangeListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region DocumentEvent - /// - /// - /// - public partial class DocumentEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.event.DocumentEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ElementChange - /// - /// - /// - public partial class ElementChange : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.event.DocumentEvent$ElementChange"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ElementChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementChange() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ElementChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementChange(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region EventType - /// - /// - /// - public partial class EventType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.event.DocumentEvent$EventType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DocumentListener - /// - /// - /// - public partial class DocumentListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DocumentListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.DocumentListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region DocumentListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class DocumentListenerDirect : DocumentListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.DocumentListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region EventListenerList - /// - /// - /// - public partial class EventListenerList : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.event.EventListenerList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventListenerList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventListenerList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HyperlinkEvent - /// - /// - /// - public partial class HyperlinkEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.HyperlinkEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HyperlinkEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HyperlinkEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region EventType - /// - /// - /// - public partial class EventType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.event.HyperlinkEvent$EventType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HyperlinkListener - /// - /// - /// - public partial class HyperlinkListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HyperlinkListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.HyperlinkListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region HyperlinkListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class HyperlinkListenerDirect : HyperlinkListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.HyperlinkListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region InternalFrameAdapter - /// - /// - /// - public partial class InternalFrameAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InternalFrameAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.InternalFrameAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region InternalFrameAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class InternalFrameAdapterDirect : InternalFrameAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.InternalFrameAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region InternalFrameEvent - /// - /// - /// - public partial class InternalFrameEvent : Java.Awt.AWTEvent - { - const string _bridgeClassName = "javax.swing.event.InternalFrameEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InternalFrameEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InternalFrameEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InternalFrameListener - /// - /// - /// - public partial class InternalFrameListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InternalFrameListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.InternalFrameListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region InternalFrameListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class InternalFrameListenerDirect : InternalFrameListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.InternalFrameListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ListDataEvent - /// - /// - /// - public partial class ListDataEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.ListDataEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListDataEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListDataEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListDataListener - /// - /// - /// - public partial class ListDataListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListDataListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.ListDataListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ListDataListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ListDataListenerDirect : ListDataListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.ListDataListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region ListSelectionEvent - /// - /// - /// - public partial class ListSelectionEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.ListSelectionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListSelectionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListSelectionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListSelectionListener - /// - /// - /// - public partial class ListSelectionListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListSelectionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.ListSelectionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ListSelectionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ListSelectionListenerDirect : ListSelectionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.ListSelectionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MenuDragMouseEvent - /// - /// - /// - public partial class MenuDragMouseEvent : Java.Awt.EventNs.MouseEvent - { - const string _bridgeClassName = "javax.swing.event.MenuDragMouseEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuDragMouseEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuDragMouseEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuDragMouseListener - /// - /// - /// - public partial class MenuDragMouseListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuDragMouseListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MenuDragMouseListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MenuDragMouseListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MenuDragMouseListenerDirect : MenuDragMouseListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.MenuDragMouseListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MenuEvent - /// - /// - /// - public partial class MenuEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.MenuEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuKeyEvent - /// - /// - /// - public partial class MenuKeyEvent : Java.Awt.EventNs.KeyEvent - { - const string _bridgeClassName = "javax.swing.event.MenuKeyEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuKeyEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuKeyEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuKeyListener - /// - /// - /// - public partial class MenuKeyListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuKeyListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MenuKeyListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MenuKeyListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MenuKeyListenerDirect : MenuKeyListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.MenuKeyListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MenuListener - /// - /// - /// - public partial class MenuListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MenuListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MenuListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MenuListenerDirect : MenuListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.MenuListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseInputAdapter - /// - /// - /// - public partial class MouseInputAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInputAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MouseInputAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseInputAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseInputAdapterDirect : MouseInputAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.MouseInputAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region MouseInputListener - /// - /// - /// - public partial class MouseInputListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInputListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MouseInputListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region MouseInputListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class MouseInputListenerDirect : MouseInputListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.MouseInputListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region PopupMenuEvent - /// - /// - /// - public partial class PopupMenuEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.PopupMenuEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PopupMenuEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PopupMenuEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PopupMenuListener - /// - /// - /// - public partial class PopupMenuListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PopupMenuListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.PopupMenuListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region PopupMenuListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class PopupMenuListenerDirect : PopupMenuListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.PopupMenuListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region RowSorterEvent - /// - /// - /// - public partial class RowSorterEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.RowSorterEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowSorterEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RowSorterEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Type - /// - /// - /// - public partial class Type : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.event.RowSorterEvent$Type"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Type() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Type(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region RowSorterListener - /// - /// - /// - public partial class RowSorterListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RowSorterListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.RowSorterListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region RowSorterListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class RowSorterListenerDirect : RowSorterListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.RowSorterListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region SwingPropertyChangeSupport - /// - /// - /// - public partial class SwingPropertyChangeSupport : Java.Beans.PropertyChangeSupport - { - const string _bridgeClassName = "javax.swing.event.SwingPropertyChangeSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SwingPropertyChangeSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SwingPropertyChangeSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableColumnModelEvent - /// - /// - /// - public partial class TableColumnModelEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.TableColumnModelEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableColumnModelEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableColumnModelEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableColumnModelListener - /// - /// - /// - public partial class TableColumnModelListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableColumnModelListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TableColumnModelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TableColumnModelListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TableColumnModelListenerDirect : TableColumnModelListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.TableColumnModelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region TableModelEvent - /// - /// - /// - public partial class TableModelEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.TableModelEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableModelEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableModelEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableModelListener - /// - /// - /// - public partial class TableModelListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableModelListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TableModelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TableModelListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TableModelListenerDirect : TableModelListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.TableModelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region TreeExpansionEvent - /// - /// - /// - public partial class TreeExpansionEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.TreeExpansionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeExpansionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeExpansionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeExpansionListener - /// - /// - /// - public partial class TreeExpansionListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeExpansionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeExpansionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TreeExpansionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TreeExpansionListenerDirect : TreeExpansionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.TreeExpansionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region TreeModelEvent - /// - /// - /// - public partial class TreeModelEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.TreeModelEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeModelEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeModelEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeModelListener - /// - /// - /// - public partial class TreeModelListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeModelListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeModelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TreeModelListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TreeModelListenerDirect : TreeModelListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.TreeModelListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region TreeSelectionEvent - /// - /// - /// - public partial class TreeSelectionEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.TreeSelectionEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeSelectionEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeSelectionEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeSelectionListener - /// - /// - /// - public partial class TreeSelectionListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeSelectionListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeSelectionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TreeSelectionListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TreeSelectionListenerDirect : TreeSelectionListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.TreeSelectionListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region TreeWillExpandListener - /// - /// - /// - public partial class TreeWillExpandListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeWillExpandListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeWillExpandListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region TreeWillExpandListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class TreeWillExpandListenerDirect : TreeWillExpandListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.TreeWillExpandListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region UndoableEditEvent - /// - /// - /// - public partial class UndoableEditEvent : Java.Util.EventObject - { - const string _bridgeClassName = "javax.swing.event.UndoableEditEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UndoableEditEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UndoableEditEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UndoableEditListener - /// - /// - /// - public partial class UndoableEditListener : Java.Util.EventListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UndoableEditListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.UndoableEditListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region UndoableEditListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class UndoableEditListenerDirect : UndoableEditListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.swing.event.UndoableEditListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Event/AncestorEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/AncestorEvent.cs index 800837338a..f0f721a22f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/AncestorEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/AncestorEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region AncestorEvent + #region AncestorEvent declaration + /// + /// + /// + public partial class AncestorEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "javax.swing.event.AncestorEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AncestorEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AncestorEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AncestorEvent implementation public partial class AncestorEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/AncestorListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/AncestorListener.cs index f0a812475f..dba7458468 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/AncestorListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/AncestorListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region AncestorListener declaration + /// + /// + /// + public partial class AncestorListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AncestorListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.AncestorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region AncestorListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class AncestorListenerDirect : AncestorListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.AncestorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IAncestorListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.AncestorListener implementing @@ -58,7 +125,7 @@ public partial interface IAncestorListener } #endregion - #region AncestorListener + #region AncestorListener implementation public partial class AncestorListener : Javax.Swing.Event.IAncestorListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void AncestorRemoved(Javax.Swing.Event.AncestorEvent arg0) } #endregion - #region AncestorListenerDirect + #region AncestorListenerDirect implementation public partial class AncestorListenerDirect : Javax.Swing.Event.IAncestorListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/CaretEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/CaretEvent.cs index b5dae290a0..c59ab2dbd2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/CaretEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/CaretEvent.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Event { - #region CaretEvent + #region CaretEvent declaration + /// + /// + /// + public partial class CaretEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.CaretEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CaretEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CaretEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CaretEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CaretEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CaretEvent implementation public partial class CaretEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/CaretListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/CaretListener.cs index ca1be18c9d..995d63ad9b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/CaretListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/CaretListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region CaretListener declaration + /// + /// + /// + public partial class CaretListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CaretListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.CaretListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region CaretListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class CaretListenerDirect : CaretListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.CaretListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ICaretListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.CaretListener implementing @@ -48,7 +115,7 @@ public partial interface ICaretListener } #endregion - #region CaretListener + #region CaretListener implementation public partial class CaretListener : Javax.Swing.Event.ICaretListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void CaretUpdate(Javax.Swing.Event.CaretEvent arg0) } #endregion - #region CaretListenerDirect + #region CaretListenerDirect implementation public partial class CaretListenerDirect : Javax.Swing.Event.ICaretListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/CellEditorListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/CellEditorListener.cs index ff0e3bb141..2b81d15740 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/CellEditorListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/CellEditorListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region CellEditorListener declaration + /// + /// + /// + public partial class CellEditorListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CellEditorListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.CellEditorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region CellEditorListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class CellEditorListenerDirect : CellEditorListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.CellEditorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ICellEditorListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.CellEditorListener implementing @@ -53,7 +120,7 @@ public partial interface ICellEditorListener } #endregion - #region CellEditorListener + #region CellEditorListener implementation public partial class CellEditorListener : Javax.Swing.Event.ICellEditorListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void EditingStopped(Javax.Swing.Event.ChangeEvent arg0) } #endregion - #region CellEditorListenerDirect + #region CellEditorListenerDirect implementation public partial class CellEditorListenerDirect : Javax.Swing.Event.ICellEditorListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/ChangeEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/ChangeEvent.cs index a731656afe..dfb39b9e14 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/ChangeEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/ChangeEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region ChangeEvent + #region ChangeEvent declaration + /// + /// + /// + public partial class ChangeEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.ChangeEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChangeEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChangeEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChangeEvent implementation public partial class ChangeEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/ChangeListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/ChangeListener.cs index 81ea72077b..cad6db5f03 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/ChangeListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/ChangeListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region ChangeListener declaration + /// + /// + /// + public partial class ChangeListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChangeListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.ChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ChangeListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ChangeListenerDirect : ChangeListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.ChangeListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IChangeListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.ChangeListener implementing @@ -48,7 +115,7 @@ public partial interface IChangeListener } #endregion - #region ChangeListener + #region ChangeListener implementation public partial class ChangeListener : Javax.Swing.Event.IChangeListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void StateChanged(Javax.Swing.Event.ChangeEvent arg0) } #endregion - #region ChangeListenerDirect + #region ChangeListenerDirect implementation public partial class ChangeListenerDirect : Javax.Swing.Event.IChangeListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/DocumentEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/DocumentEvent.cs index 38ea24d7bd..0b399faec8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/DocumentEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/DocumentEvent.cs @@ -25,6 +25,145 @@ namespace Javax.Swing.Event { + #region DocumentEvent declaration + /// + /// + /// + public partial class DocumentEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.event.DocumentEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ElementChange declaration + /// + /// + /// + public partial class ElementChange : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.event.DocumentEvent$ElementChange"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ElementChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementChange() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ElementChange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementChange(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region EventType declaration + /// + /// + /// + public partial class EventType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.event.DocumentEvent$EventType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IDocumentEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +204,7 @@ public partial interface IDocumentEvent } #endregion - #region DocumentEvent + #region DocumentEvent implementation public partial class DocumentEvent : Javax.Swing.Event.IDocumentEvent { #region Constructors @@ -126,7 +265,7 @@ public Javax.Swing.Event.DocumentEvent.ElementChange GetChange(Javax.Swing.Text. #endregion #region Nested classes - #region ElementChange + #region ElementChange implementation public partial class ElementChange { #region Constructors @@ -185,7 +324,7 @@ public int Index } #endregion - #region EventType + #region EventType implementation public partial class EventType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/DocumentListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/DocumentListener.cs index 181145e54b..9bee83d00a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/DocumentListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/DocumentListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region DocumentListener declaration + /// + /// + /// + public partial class DocumentListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DocumentListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.DocumentListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region DocumentListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class DocumentListenerDirect : DocumentListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.DocumentListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IDocumentListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.DocumentListener implementing @@ -58,7 +125,7 @@ public partial interface IDocumentListener } #endregion - #region DocumentListener + #region DocumentListener implementation public partial class DocumentListener : Javax.Swing.Event.IDocumentListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void RemoveUpdate(Javax.Swing.Event.DocumentEvent arg0) } #endregion - #region DocumentListenerDirect + #region DocumentListenerDirect implementation public partial class DocumentListenerDirect : Javax.Swing.Event.IDocumentListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/EventListenerList.cs b/src/net/JNet/Generated/Javax/Swing/Event/EventListenerList.cs index 66d3cbc1ed..0c2ca9a3ad 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/EventListenerList.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/EventListenerList.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region EventListenerList + #region EventListenerList declaration + /// + /// + /// + public partial class EventListenerList : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.event.EventListenerList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventListenerList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventListenerList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventListenerList implementation public partial class EventListenerList { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkEvent.cs index 116443f19c..90eaa75d02 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkEvent.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Event { - #region HyperlinkEvent + #region HyperlinkEvent declaration + /// + /// + /// + public partial class HyperlinkEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.HyperlinkEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HyperlinkEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HyperlinkEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region EventType declaration + /// + /// + /// + public partial class EventType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.event.HyperlinkEvent$EventType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HyperlinkEvent implementation public partial class HyperlinkEvent { #region Constructors @@ -130,7 +220,7 @@ public Java.Net.URL URL #endregion #region Nested classes - #region EventType + #region EventType implementation public partial class EventType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkListener.cs index 7ec0e64a30..42e3d59bd4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/HyperlinkListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region HyperlinkListener declaration + /// + /// + /// + public partial class HyperlinkListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HyperlinkListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.HyperlinkListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region HyperlinkListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class HyperlinkListenerDirect : HyperlinkListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.HyperlinkListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IHyperlinkListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.HyperlinkListener implementing @@ -48,7 +115,7 @@ public partial interface IHyperlinkListener } #endregion - #region HyperlinkListener + #region HyperlinkListener implementation public partial class HyperlinkListener : Javax.Swing.Event.IHyperlinkListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void HyperlinkUpdate(Javax.Swing.Event.HyperlinkEvent arg0) } #endregion - #region HyperlinkListenerDirect + #region HyperlinkListenerDirect implementation public partial class HyperlinkListenerDirect : Javax.Swing.Event.IHyperlinkListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameAdapter.cs b/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameAdapter.cs index fa4130ba9b..e07bc86c7f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameAdapter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameAdapter.cs @@ -25,7 +25,74 @@ namespace Javax.Swing.Event { - #region InternalFrameAdapter + #region InternalFrameAdapter declaration + /// + /// + /// + public partial class InternalFrameAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InternalFrameAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.InternalFrameAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region InternalFrameAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class InternalFrameAdapterDirect : InternalFrameAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.InternalFrameAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region InternalFrameAdapter implementation public partial class InternalFrameAdapter { #region Constructors @@ -217,7 +284,7 @@ public virtual void InternalFrameOpened(Javax.Swing.Event.InternalFrameEvent arg } #endregion - #region InternalFrameAdapterDirect + #region InternalFrameAdapterDirect implementation public partial class InternalFrameAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameEvent.cs index 4e0a878bea..01cf96f88d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region InternalFrameEvent + #region InternalFrameEvent declaration + /// + /// + /// + public partial class InternalFrameEvent : Java.Awt.AWTEvent + { + const string _bridgeClassName = "javax.swing.event.InternalFrameEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InternalFrameEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InternalFrameEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InternalFrameEvent implementation public partial class InternalFrameEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameListener.cs index ecd4d40b83..bea49256e4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/InternalFrameListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region InternalFrameListener declaration + /// + /// + /// + public partial class InternalFrameListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InternalFrameListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.InternalFrameListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region InternalFrameListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class InternalFrameListenerDirect : InternalFrameListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.InternalFrameListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IInternalFrameListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.InternalFrameListener implementing @@ -78,7 +145,7 @@ public partial interface IInternalFrameListener } #endregion - #region InternalFrameListener + #region InternalFrameListener implementation public partial class InternalFrameListener : Javax.Swing.Event.IInternalFrameListener { #region Constructors @@ -270,7 +337,7 @@ public virtual void InternalFrameOpened(Javax.Swing.Event.InternalFrameEvent arg } #endregion - #region InternalFrameListenerDirect + #region InternalFrameListenerDirect implementation public partial class InternalFrameListenerDirect : Javax.Swing.Event.IInternalFrameListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/ListDataEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/ListDataEvent.cs index 4f6c7b5751..b96f9f2cd9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/ListDataEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/ListDataEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region ListDataEvent + #region ListDataEvent declaration + /// + /// + /// + public partial class ListDataEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.ListDataEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListDataEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListDataEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListDataEvent implementation public partial class ListDataEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/ListDataListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/ListDataListener.cs index e5c33c2b8e..7e33bebfc5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/ListDataListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/ListDataListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region ListDataListener declaration + /// + /// + /// + public partial class ListDataListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListDataListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.ListDataListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ListDataListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ListDataListenerDirect : ListDataListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.ListDataListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IListDataListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.ListDataListener implementing @@ -58,7 +125,7 @@ public partial interface IListDataListener } #endregion - #region ListDataListener + #region ListDataListener implementation public partial class ListDataListener : Javax.Swing.Event.IListDataListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void IntervalRemoved(Javax.Swing.Event.ListDataEvent arg0) } #endregion - #region ListDataListenerDirect + #region ListDataListenerDirect implementation public partial class ListDataListenerDirect : Javax.Swing.Event.IListDataListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionEvent.cs index fa82c75e0c..f477f7cb7a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region ListSelectionEvent + #region ListSelectionEvent declaration + /// + /// + /// + public partial class ListSelectionEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.ListSelectionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListSelectionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListSelectionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListSelectionEvent implementation public partial class ListSelectionEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionListener.cs index e541cd7537..e14f15b5c3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/ListSelectionListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region ListSelectionListener declaration + /// + /// + /// + public partial class ListSelectionListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListSelectionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.ListSelectionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ListSelectionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ListSelectionListenerDirect : ListSelectionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.ListSelectionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IListSelectionListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.ListSelectionListener implementing @@ -48,7 +115,7 @@ public partial interface IListSelectionListener } #endregion - #region ListSelectionListener + #region ListSelectionListener implementation public partial class ListSelectionListener : Javax.Swing.Event.IListSelectionListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ValueChanged(Javax.Swing.Event.ListSelectionEvent arg0) } #endregion - #region ListSelectionListenerDirect + #region ListSelectionListenerDirect implementation public partial class ListSelectionListenerDirect : Javax.Swing.Event.IListSelectionListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseEvent.cs index cc2a7cd627..7894e17434 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region MenuDragMouseEvent + #region MenuDragMouseEvent declaration + /// + /// + /// + public partial class MenuDragMouseEvent : Java.Awt.EventNs.MouseEvent + { + const string _bridgeClassName = "javax.swing.event.MenuDragMouseEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuDragMouseEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuDragMouseEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuDragMouseEvent implementation public partial class MenuDragMouseEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseListener.cs index a79154c19c..564f0f7c90 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MenuDragMouseListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region MenuDragMouseListener declaration + /// + /// + /// + public partial class MenuDragMouseListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuDragMouseListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MenuDragMouseListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MenuDragMouseListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MenuDragMouseListenerDirect : MenuDragMouseListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.MenuDragMouseListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMenuDragMouseListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.MenuDragMouseListener implementing @@ -63,7 +130,7 @@ public partial interface IMenuDragMouseListener } #endregion - #region MenuDragMouseListener + #region MenuDragMouseListener implementation public partial class MenuDragMouseListener : Javax.Swing.Event.IMenuDragMouseListener { #region Constructors @@ -189,7 +256,7 @@ public virtual void MenuDragMouseReleased(Javax.Swing.Event.MenuDragMouseEvent a } #endregion - #region MenuDragMouseListenerDirect + #region MenuDragMouseListenerDirect implementation public partial class MenuDragMouseListenerDirect : Javax.Swing.Event.IMenuDragMouseListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MenuEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/MenuEvent.cs index e783cbca29..56a2d63dff 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MenuEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MenuEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region MenuEvent + #region MenuEvent declaration + /// + /// + /// + public partial class MenuEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.MenuEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuEvent implementation public partial class MenuEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyEvent.cs index 4a997ce95a..ebc5d1bdbf 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region MenuKeyEvent + #region MenuKeyEvent declaration + /// + /// + /// + public partial class MenuKeyEvent : Java.Awt.EventNs.KeyEvent + { + const string _bridgeClassName = "javax.swing.event.MenuKeyEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuKeyEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuKeyEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuKeyEvent implementation public partial class MenuKeyEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyListener.cs index 40b762a73c..b24dacc396 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MenuKeyListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region MenuKeyListener declaration + /// + /// + /// + public partial class MenuKeyListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuKeyListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MenuKeyListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MenuKeyListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MenuKeyListenerDirect : MenuKeyListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.MenuKeyListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMenuKeyListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.MenuKeyListener implementing @@ -58,7 +125,7 @@ public partial interface IMenuKeyListener } #endregion - #region MenuKeyListener + #region MenuKeyListener implementation public partial class MenuKeyListener : Javax.Swing.Event.IMenuKeyListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void MenuKeyTyped(Javax.Swing.Event.MenuKeyEvent arg0) } #endregion - #region MenuKeyListenerDirect + #region MenuKeyListenerDirect implementation public partial class MenuKeyListenerDirect : Javax.Swing.Event.IMenuKeyListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MenuListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/MenuListener.cs index 2adca605e7..29bca7fedd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MenuListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MenuListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region MenuListener declaration + /// + /// + /// + public partial class MenuListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MenuListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MenuListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MenuListenerDirect : MenuListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.MenuListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMenuListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.MenuListener implementing @@ -58,7 +125,7 @@ public partial interface IMenuListener } #endregion - #region MenuListener + #region MenuListener implementation public partial class MenuListener : Javax.Swing.Event.IMenuListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void MenuSelected(Javax.Swing.Event.MenuEvent arg0) } #endregion - #region MenuListenerDirect + #region MenuListenerDirect implementation public partial class MenuListenerDirect : Javax.Swing.Event.IMenuListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MouseInputAdapter.cs b/src/net/JNet/Generated/Javax/Swing/Event/MouseInputAdapter.cs index 3efea973e1..55d1d1c61e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MouseInputAdapter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MouseInputAdapter.cs @@ -25,7 +25,74 @@ namespace Javax.Swing.Event { - #region MouseInputAdapter + #region MouseInputAdapter declaration + /// + /// + /// + public partial class MouseInputAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInputAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MouseInputAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseInputAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseInputAdapterDirect : MouseInputAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.MouseInputAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region MouseInputAdapter implementation public partial class MouseInputAdapter { #region Constructors @@ -239,7 +306,7 @@ public virtual void MouseWheelMoved(Java.Awt.EventNs.MouseWheelEvent arg0) } #endregion - #region MouseInputAdapterDirect + #region MouseInputAdapterDirect implementation public partial class MouseInputAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/MouseInputListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/MouseInputListener.cs index 6906afad85..f420b23751 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/MouseInputListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/MouseInputListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region MouseInputListener declaration + /// + /// + /// + public partial class MouseInputListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInputListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.MouseInputListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region MouseInputListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class MouseInputListenerDirect : MouseInputListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.MouseInputListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IMouseInputListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.MouseInputListener implementing @@ -78,7 +145,7 @@ public partial interface IMouseInputListener } #endregion - #region MouseInputListener + #region MouseInputListener implementation public partial class MouseInputListener : Javax.Swing.Event.IMouseInputListener { #region Constructors @@ -270,7 +337,7 @@ public virtual void MouseMoved(Java.Awt.EventNs.MouseEvent arg0) } #endregion - #region MouseInputListenerDirect + #region MouseInputListenerDirect implementation public partial class MouseInputListenerDirect : Javax.Swing.Event.IMouseInputListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuEvent.cs index 25eaaa2da5..e055258bbc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region PopupMenuEvent + #region PopupMenuEvent declaration + /// + /// + /// + public partial class PopupMenuEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.PopupMenuEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PopupMenuEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PopupMenuEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PopupMenuEvent implementation public partial class PopupMenuEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuListener.cs index dc6d00f18c..245420da4f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/PopupMenuListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region PopupMenuListener declaration + /// + /// + /// + public partial class PopupMenuListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PopupMenuListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.PopupMenuListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region PopupMenuListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class PopupMenuListenerDirect : PopupMenuListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.PopupMenuListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IPopupMenuListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.PopupMenuListener implementing @@ -58,7 +125,7 @@ public partial interface IPopupMenuListener } #endregion - #region PopupMenuListener + #region PopupMenuListener implementation public partial class PopupMenuListener : Javax.Swing.Event.IPopupMenuListener { #region Constructors @@ -162,7 +229,7 @@ public virtual void PopupMenuWillBecomeVisible(Javax.Swing.Event.PopupMenuEvent } #endregion - #region PopupMenuListenerDirect + #region PopupMenuListenerDirect implementation public partial class PopupMenuListenerDirect : Javax.Swing.Event.IPopupMenuListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/RowSorterEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/RowSorterEvent.cs index c2e8bae45e..5d10aa4b99 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/RowSorterEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/RowSorterEvent.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Event { - #region RowSorterEvent + #region RowSorterEvent declaration + /// + /// + /// + public partial class RowSorterEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.RowSorterEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowSorterEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RowSorterEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Type declaration + /// + /// + /// + public partial class Type : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.event.RowSorterEvent$Type"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Type() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Type(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region RowSorterEvent implementation public partial class RowSorterEvent { #region Constructors @@ -90,7 +180,7 @@ public int ConvertPreviousRowIndexToModel(int arg0) #endregion #region Nested classes - #region Type + #region Type implementation public partial class Type { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/RowSorterListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/RowSorterListener.cs index 12e435c18b..18bf563d1f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/RowSorterListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/RowSorterListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region RowSorterListener declaration + /// + /// + /// + public partial class RowSorterListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RowSorterListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.RowSorterListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region RowSorterListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class RowSorterListenerDirect : RowSorterListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.RowSorterListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IRowSorterListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.RowSorterListener implementing @@ -48,7 +115,7 @@ public partial interface IRowSorterListener } #endregion - #region RowSorterListener + #region RowSorterListener implementation public partial class RowSorterListener : Javax.Swing.Event.IRowSorterListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void SorterChanged(Javax.Swing.Event.RowSorterEvent arg0) } #endregion - #region RowSorterListenerDirect + #region RowSorterListenerDirect implementation public partial class RowSorterListenerDirect : Javax.Swing.Event.IRowSorterListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/SwingPropertyChangeSupport.cs b/src/net/JNet/Generated/Javax/Swing/Event/SwingPropertyChangeSupport.cs index bc1453de3c..1e700c83ec 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/SwingPropertyChangeSupport.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/SwingPropertyChangeSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region SwingPropertyChangeSupport + #region SwingPropertyChangeSupport declaration + /// + /// + /// + public partial class SwingPropertyChangeSupport : Java.Beans.PropertyChangeSupport + { + const string _bridgeClassName = "javax.swing.event.SwingPropertyChangeSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SwingPropertyChangeSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SwingPropertyChangeSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SwingPropertyChangeSupport implementation public partial class SwingPropertyChangeSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelEvent.cs index 5b87635ac6..ef73029c5b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region TableColumnModelEvent + #region TableColumnModelEvent declaration + /// + /// + /// + public partial class TableColumnModelEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.TableColumnModelEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableColumnModelEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableColumnModelEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableColumnModelEvent implementation public partial class TableColumnModelEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelListener.cs index ddcdd19144..af3efd62ca 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TableColumnModelListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region TableColumnModelListener declaration + /// + /// + /// + public partial class TableColumnModelListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableColumnModelListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TableColumnModelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TableColumnModelListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TableColumnModelListenerDirect : TableColumnModelListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.TableColumnModelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITableColumnModelListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.TableColumnModelListener implementing @@ -68,7 +135,7 @@ public partial interface ITableColumnModelListener } #endregion - #region TableColumnModelListener + #region TableColumnModelListener implementation public partial class TableColumnModelListener : Javax.Swing.Event.ITableColumnModelListener { #region Constructors @@ -216,7 +283,7 @@ public virtual void ColumnSelectionChanged(Javax.Swing.Event.ListSelectionEvent } #endregion - #region TableColumnModelListenerDirect + #region TableColumnModelListenerDirect implementation public partial class TableColumnModelListenerDirect : Javax.Swing.Event.ITableColumnModelListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TableModelEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/TableModelEvent.cs index 2f9c6981b5..3dbc63e153 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TableModelEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TableModelEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region TableModelEvent + #region TableModelEvent declaration + /// + /// + /// + public partial class TableModelEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.TableModelEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableModelEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableModelEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableModelEvent implementation public partial class TableModelEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TableModelListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/TableModelListener.cs index 27d704a51f..23483208b7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TableModelListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TableModelListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region TableModelListener declaration + /// + /// + /// + public partial class TableModelListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableModelListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TableModelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TableModelListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TableModelListenerDirect : TableModelListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.TableModelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITableModelListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.TableModelListener implementing @@ -48,7 +115,7 @@ public partial interface ITableModelListener } #endregion - #region TableModelListener + #region TableModelListener implementation public partial class TableModelListener : Javax.Swing.Event.ITableModelListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void TableChanged(Javax.Swing.Event.TableModelEvent arg0) } #endregion - #region TableModelListenerDirect + #region TableModelListenerDirect implementation public partial class TableModelListenerDirect : Javax.Swing.Event.ITableModelListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionEvent.cs index 7aa0f15ee4..73ea479ecf 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region TreeExpansionEvent + #region TreeExpansionEvent declaration + /// + /// + /// + public partial class TreeExpansionEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.TreeExpansionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeExpansionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeExpansionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeExpansionEvent implementation public partial class TreeExpansionEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionListener.cs index e214bb6790..82c3e2fcef 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeExpansionListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region TreeExpansionListener declaration + /// + /// + /// + public partial class TreeExpansionListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeExpansionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeExpansionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TreeExpansionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TreeExpansionListenerDirect : TreeExpansionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.TreeExpansionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITreeExpansionListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.TreeExpansionListener implementing @@ -53,7 +120,7 @@ public partial interface ITreeExpansionListener } #endregion - #region TreeExpansionListener + #region TreeExpansionListener implementation public partial class TreeExpansionListener : Javax.Swing.Event.ITreeExpansionListener { #region Constructors @@ -135,7 +202,7 @@ public virtual void TreeExpanded(Javax.Swing.Event.TreeExpansionEvent arg0) } #endregion - #region TreeExpansionListenerDirect + #region TreeExpansionListenerDirect implementation public partial class TreeExpansionListenerDirect : Javax.Swing.Event.ITreeExpansionListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeModelEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeModelEvent.cs index fb9d5701e3..3eb7325a21 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeModelEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeModelEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region TreeModelEvent + #region TreeModelEvent declaration + /// + /// + /// + public partial class TreeModelEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.TreeModelEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeModelEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeModelEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeModelEvent implementation public partial class TreeModelEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeModelListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeModelListener.cs index 1174b1a8f0..b1b4c95c15 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeModelListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeModelListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region TreeModelListener declaration + /// + /// + /// + public partial class TreeModelListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeModelListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeModelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TreeModelListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TreeModelListenerDirect : TreeModelListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.TreeModelListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITreeModelListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.TreeModelListener implementing @@ -63,7 +130,7 @@ public partial interface ITreeModelListener } #endregion - #region TreeModelListener + #region TreeModelListener implementation public partial class TreeModelListener : Javax.Swing.Event.ITreeModelListener { #region Constructors @@ -189,7 +256,7 @@ public virtual void TreeStructureChanged(Javax.Swing.Event.TreeModelEvent arg0) } #endregion - #region TreeModelListenerDirect + #region TreeModelListenerDirect implementation public partial class TreeModelListenerDirect : Javax.Swing.Event.ITreeModelListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionEvent.cs index 987246fd79..01539533e2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region TreeSelectionEvent + #region TreeSelectionEvent declaration + /// + /// + /// + public partial class TreeSelectionEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.TreeSelectionEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeSelectionEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeSelectionEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeSelectionEvent implementation public partial class TreeSelectionEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionListener.cs index cbde335c05..0d05b13dcb 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeSelectionListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region TreeSelectionListener declaration + /// + /// + /// + public partial class TreeSelectionListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeSelectionListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeSelectionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TreeSelectionListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TreeSelectionListenerDirect : TreeSelectionListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.TreeSelectionListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITreeSelectionListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.TreeSelectionListener implementing @@ -48,7 +115,7 @@ public partial interface ITreeSelectionListener } #endregion - #region TreeSelectionListener + #region TreeSelectionListener implementation public partial class TreeSelectionListener : Javax.Swing.Event.ITreeSelectionListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void ValueChanged(Javax.Swing.Event.TreeSelectionEvent arg0) } #endregion - #region TreeSelectionListenerDirect + #region TreeSelectionListenerDirect implementation public partial class TreeSelectionListenerDirect : Javax.Swing.Event.ITreeSelectionListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/TreeWillExpandListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/TreeWillExpandListener.cs index 3811e2a9d2..afd2f642f4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/TreeWillExpandListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/TreeWillExpandListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region TreeWillExpandListener declaration + /// + /// + /// + public partial class TreeWillExpandListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeWillExpandListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.TreeWillExpandListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region TreeWillExpandListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class TreeWillExpandListenerDirect : TreeWillExpandListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.TreeWillExpandListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region ITreeWillExpandListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.TreeWillExpandListener implementing @@ -55,7 +122,7 @@ public partial interface ITreeWillExpandListener } #endregion - #region TreeWillExpandListener + #region TreeWillExpandListener implementation public partial class TreeWillExpandListener : Javax.Swing.Event.ITreeWillExpandListener { #region Constructors @@ -139,7 +206,7 @@ public virtual void TreeWillExpand(Javax.Swing.Event.TreeExpansionEvent arg0) } #endregion - #region TreeWillExpandListenerDirect + #region TreeWillExpandListenerDirect implementation public partial class TreeWillExpandListenerDirect : Javax.Swing.Event.ITreeWillExpandListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditEvent.cs b/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditEvent.cs index 0c5362c7d3..b00e3e39a8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Event { - #region UndoableEditEvent + #region UndoableEditEvent declaration + /// + /// + /// + public partial class UndoableEditEvent : Java.Util.EventObject + { + const string _bridgeClassName = "javax.swing.event.UndoableEditEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UndoableEditEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UndoableEditEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UndoableEditEvent implementation public partial class UndoableEditEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditListener.cs b/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditListener.cs index 83f0b39d2c..ce643461bc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditListener.cs +++ b/src/net/JNet/Generated/Javax/Swing/Event/UndoableEditListener.cs @@ -25,6 +25,73 @@ namespace Javax.Swing.Event { + #region UndoableEditListener declaration + /// + /// + /// + public partial class UndoableEditListener : Java.Util.EventListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UndoableEditListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.swing.event.UndoableEditListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region UndoableEditListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class UndoableEditListenerDirect : UndoableEditListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.swing.event.UndoableEditListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IUndoableEditListener /// /// .NET interface for org.mases.jnet.generated.javax.swing.event.UndoableEditListener implementing @@ -48,7 +115,7 @@ public partial interface IUndoableEditListener } #endregion - #region UndoableEditListener + #region UndoableEditListener implementation public partial class UndoableEditListener : Javax.Swing.Event.IUndoableEditListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void UndoableEditHappened(Javax.Swing.Event.UndoableEditEvent arg } #endregion - #region UndoableEditListenerDirect + #region UndoableEditListenerDirect implementation public partial class UndoableEditListenerDirect : Javax.Swing.Event.IUndoableEditListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Filechooser/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Filechooser/AllPackageClasses.cs deleted file mode 100644 index 890178c8ce..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Filechooser/AllPackageClasses.cs +++ /dev/null @@ -1,216 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Filechooser -{ - #region FileFilter - /// - /// - /// - public partial class FileFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.filechooser.FileFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileNameExtensionFilter - /// - /// - /// - public partial class FileNameExtensionFilter : Javax.Swing.Filechooser.FileFilter - { - const string _bridgeClassName = "javax.swing.filechooser.FileNameExtensionFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileNameExtensionFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileNameExtensionFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileSystemView - /// - /// - /// - public partial class FileSystemView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.filechooser.FileSystemView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileSystemView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileSystemView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileSystemView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileSystemView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileView - /// - /// - /// - public partial class FileView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.filechooser.FileView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileFilter.cs b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileFilter.cs index d0ea322865..7e3eae799e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileFilter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileFilter.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Filechooser { - #region FileFilter + #region FileFilter declaration + /// + /// + /// + public partial class FileFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.filechooser.FileFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileFilter implementation public partial class FileFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileNameExtensionFilter.cs b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileNameExtensionFilter.cs index fe9e5044d5..33ff26e918 100644 --- a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileNameExtensionFilter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileNameExtensionFilter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Filechooser { - #region FileNameExtensionFilter + #region FileNameExtensionFilter declaration + /// + /// + /// + public partial class FileNameExtensionFilter : Javax.Swing.Filechooser.FileFilter + { + const string _bridgeClassName = "javax.swing.filechooser.FileNameExtensionFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileNameExtensionFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileNameExtensionFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileNameExtensionFilter implementation public partial class FileNameExtensionFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileSystemView.cs b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileSystemView.cs index 2741d324af..20ec024c07 100644 --- a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileSystemView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileSystemView.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Filechooser { - #region FileSystemView + #region FileSystemView declaration + /// + /// + /// + public partial class FileSystemView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.filechooser.FileSystemView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileSystemView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileSystemView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileSystemView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileSystemView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileSystemView implementation public partial class FileSystemView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileView.cs b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileView.cs index 1d64d9f2d2..7f95ab90a2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Filechooser/FileView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Filechooser/FileView.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Filechooser { - #region FileView + #region FileView declaration + /// + /// + /// + public partial class FileView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.filechooser.FileView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileView implementation public partial class FileView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/FocusManager.cs b/src/net/JNet/Generated/Javax/Swing/FocusManager.cs index cf0d157b2e..afc1ff719a 100644 --- a/src/net/JNet/Generated/Javax/Swing/FocusManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/FocusManager.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region FocusManager + #region FocusManager declaration + /// + /// + /// + public partial class FocusManager : Java.Awt.DefaultKeyboardFocusManager + { + const string _bridgeClassName = "javax.swing.FocusManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FocusManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FocusManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FocusManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FocusManager implementation public partial class FocusManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/GrayFilter.cs b/src/net/JNet/Generated/Javax/Swing/GrayFilter.cs index 69a67db7ae..96ed806211 100644 --- a/src/net/JNet/Generated/Javax/Swing/GrayFilter.cs +++ b/src/net/JNet/Generated/Javax/Swing/GrayFilter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region GrayFilter + #region GrayFilter declaration + /// + /// + /// + public partial class GrayFilter : Java.Awt.ImageNs.RGBImageFilter + { + const string _bridgeClassName = "javax.swing.GrayFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GrayFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GrayFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GrayFilter implementation public partial class GrayFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/GroupLayout.cs b/src/net/JNet/Generated/Javax/Swing/GroupLayout.cs index 3bb0f67cd5..d7b4859b80 100644 --- a/src/net/JNet/Generated/Javax/Swing/GroupLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/GroupLayout.cs @@ -25,7 +25,234 @@ namespace Javax.Swing { - #region GroupLayout + #region GroupLayout declaration + /// + /// + /// + public partial class GroupLayout : Java.Awt.LayoutManager2 + { + const string _bridgeClassName = "javax.swing.GroupLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GroupLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GroupLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Alignment declaration + /// + /// + /// + public partial class Alignment : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.GroupLayout$Alignment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Alignment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Alignment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Group declaration + /// + /// + /// + public partial class Group : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.GroupLayout$Group"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Group class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Group() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Group class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Group(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParallelGroup declaration + /// + /// + /// + public partial class ParallelGroup : Javax.Swing.GroupLayout.Group + { + const string _bridgeClassName = "javax.swing.GroupLayout$ParallelGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParallelGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParallelGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SequentialGroup declaration + /// + /// + /// + public partial class SequentialGroup : Javax.Swing.GroupLayout.Group + { + const string _bridgeClassName = "javax.swing.GroupLayout$SequentialGroup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SequentialGroup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SequentialGroup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region GroupLayout implementation public partial class GroupLayout { #region Constructors @@ -280,7 +507,7 @@ public void SetVerticalGroup(Javax.Swing.GroupLayout.Group arg0) #endregion #region Nested classes - #region Alignment + #region Alignment implementation public partial class Alignment { #region Constructors @@ -352,7 +579,7 @@ public static Javax.Swing.GroupLayout.Alignment[] Values() } #endregion - #region Group + #region Group implementation public partial class Group { #region Constructors @@ -433,7 +660,7 @@ public Javax.Swing.GroupLayout.Group AddGroup(Javax.Swing.GroupLayout.Group arg0 } #endregion - #region ParallelGroup + #region ParallelGroup implementation public partial class ParallelGroup { #region Constructors @@ -497,7 +724,7 @@ public Javax.Swing.GroupLayout.ParallelGroup AddGroup(Javax.Swing.GroupLayout.Al } #endregion - #region SequentialGroup + #region SequentialGroup implementation public partial class SequentialGroup { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Icon.cs b/src/net/JNet/Generated/Javax/Swing/Icon.cs index 88199aa8a6..0408a15f29 100644 --- a/src/net/JNet/Generated/Javax/Swing/Icon.cs +++ b/src/net/JNet/Generated/Javax/Swing/Icon.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region Icon declaration + /// + /// + /// + public partial class Icon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.Icon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Icon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Icon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Icon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Icon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IIcon /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IIcon } #endregion - #region Icon + #region Icon implementation public partial class Icon : Javax.Swing.IIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ImageIcon.cs b/src/net/JNet/Generated/Javax/Swing/ImageIcon.cs index 18ec18924c..80bc282d75 100644 --- a/src/net/JNet/Generated/Javax/Swing/ImageIcon.cs +++ b/src/net/JNet/Generated/Javax/Swing/ImageIcon.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ImageIcon + #region ImageIcon declaration + /// + /// + /// + public partial class ImageIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ImageIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageIcon implementation public partial class ImageIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/InputMap.cs b/src/net/JNet/Generated/Javax/Swing/InputMap.cs index 2d8540d4bc..fd92380796 100644 --- a/src/net/JNet/Generated/Javax/Swing/InputMap.cs +++ b/src/net/JNet/Generated/Javax/Swing/InputMap.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region InputMap + #region InputMap declaration + /// + /// + /// + public partial class InputMap : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.InputMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputMap implementation public partial class InputMap { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/InputVerifier.cs b/src/net/JNet/Generated/Javax/Swing/InputVerifier.cs index bc68731eca..517bbe5763 100644 --- a/src/net/JNet/Generated/Javax/Swing/InputVerifier.cs +++ b/src/net/JNet/Generated/Javax/Swing/InputVerifier.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region InputVerifier + #region InputVerifier declaration + /// + /// + /// + public partial class InputVerifier : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.InputVerifier"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InputVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputVerifier() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InputVerifier class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InputVerifier(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputVerifier implementation public partial class InputVerifier { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/InternalFrameFocusTraversalPolicy.cs b/src/net/JNet/Generated/Javax/Swing/InternalFrameFocusTraversalPolicy.cs index 45e76f3915..024e9d8b0f 100644 --- a/src/net/JNet/Generated/Javax/Swing/InternalFrameFocusTraversalPolicy.cs +++ b/src/net/JNet/Generated/Javax/Swing/InternalFrameFocusTraversalPolicy.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region InternalFrameFocusTraversalPolicy + #region InternalFrameFocusTraversalPolicy declaration + /// + /// + /// + public partial class InternalFrameFocusTraversalPolicy : Java.Awt.FocusTraversalPolicy + { + const string _bridgeClassName = "javax.swing.InternalFrameFocusTraversalPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InternalFrameFocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InternalFrameFocusTraversalPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InternalFrameFocusTraversalPolicy class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InternalFrameFocusTraversalPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InternalFrameFocusTraversalPolicy implementation public partial class InternalFrameFocusTraversalPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JButton.cs b/src/net/JNet/Generated/Javax/Swing/JButton.cs index 649d2e3d15..1873b7f21e 100644 --- a/src/net/JNet/Generated/Javax/Swing/JButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/JButton.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JButton + #region JButton declaration + /// + /// + /// + public partial class JButton : Javax.Swing.AbstractButton + { + const string _bridgeClassName = "javax.swing.JButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JButton implementation public partial class JButton { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JCheckBox.cs b/src/net/JNet/Generated/Javax/Swing/JCheckBox.cs index 024cea02ab..b73c5e3d79 100644 --- a/src/net/JNet/Generated/Javax/Swing/JCheckBox.cs +++ b/src/net/JNet/Generated/Javax/Swing/JCheckBox.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JCheckBox + #region JCheckBox declaration + /// + /// + /// + public partial class JCheckBox : Javax.Swing.JToggleButton + { + const string _bridgeClassName = "javax.swing.JCheckBox"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JCheckBox() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JCheckBox(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JCheckBox implementation public partial class JCheckBox { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JCheckBoxMenuItem.cs b/src/net/JNet/Generated/Javax/Swing/JCheckBoxMenuItem.cs index 3d59c23de4..436ba839b7 100644 --- a/src/net/JNet/Generated/Javax/Swing/JCheckBoxMenuItem.cs +++ b/src/net/JNet/Generated/Javax/Swing/JCheckBoxMenuItem.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JCheckBoxMenuItem + #region JCheckBoxMenuItem declaration + /// + /// + /// + public partial class JCheckBoxMenuItem : Javax.Swing.JMenuItem + { + const string _bridgeClassName = "javax.swing.JCheckBoxMenuItem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JCheckBoxMenuItem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JCheckBoxMenuItem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JCheckBoxMenuItem implementation public partial class JCheckBoxMenuItem { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JColorChooser.cs b/src/net/JNet/Generated/Javax/Swing/JColorChooser.cs index 13c072e75b..e77df1c4c1 100644 --- a/src/net/JNet/Generated/Javax/Swing/JColorChooser.cs +++ b/src/net/JNet/Generated/Javax/Swing/JColorChooser.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JColorChooser + #region JColorChooser declaration + /// + /// + /// + public partial class JColorChooser : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JColorChooser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JColorChooser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JColorChooser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JColorChooser implementation public partial class JColorChooser { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JComboBox.cs b/src/net/JNet/Generated/Javax/Swing/JComboBox.cs index a26a99dda0..a40ff19a05 100644 --- a/src/net/JNet/Generated/Javax/Swing/JComboBox.cs +++ b/src/net/JNet/Generated/Javax/Swing/JComboBox.cs @@ -25,7 +25,145 @@ namespace Javax.Swing { - #region JComboBox + #region JComboBox declaration + /// + /// + /// + public partial class JComboBox : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JComboBox"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JComboBox() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JComboBox(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region KeySelectionManager declaration + /// + /// + /// + public partial class KeySelectionManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.JComboBox$KeySelectionManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeySelectionManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySelectionManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeySelectionManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySelectionManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JComboBox declaration + /// + /// + /// + /// + public partial class JComboBox : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JComboBox"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JComboBox() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JComboBox(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JComboBox implementation public partial class JComboBox { #region Constructors @@ -440,7 +578,7 @@ public void ShowPopup() #endregion #region Nested classes - #region KeySelectionManager + #region KeySelectionManager implementation public partial class KeySelectionManager { #region Constructors @@ -488,7 +626,7 @@ public int SelectionForKey(char arg0, Javax.Swing.ComboBoxModel arg1) } #endregion - #region JComboBox + #region JComboBox implementation public partial class JComboBox { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JComponent.cs b/src/net/JNet/Generated/Javax/Swing/JComponent.cs index c87e913c29..1375624f01 100644 --- a/src/net/JNet/Generated/Javax/Swing/JComponent.cs +++ b/src/net/JNet/Generated/Javax/Swing/JComponent.cs @@ -25,7 +25,101 @@ namespace Javax.Swing { - #region JComponent + #region JComponent declaration + /// + /// + /// + public partial class JComponent : Java.Awt.Container + { + const string _bridgeClassName = "javax.swing.JComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AccessibleJComponent declaration + /// + /// + /// + public partial class AccessibleJComponent : Javax.Accessibility.AccessibleExtendedComponent + { + const string _bridgeClassName = "javax.swing.JComponent$AccessibleJComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AccessibleJComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleJComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AccessibleJComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AccessibleJComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JComponent implementation public partial class JComponent { #region Constructors @@ -565,7 +659,7 @@ public void UpdateUI() #endregion #region Nested classes - #region AccessibleJComponent + #region AccessibleJComponent implementation public partial class AccessibleJComponent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JDesktopPane.cs b/src/net/JNet/Generated/Javax/Swing/JDesktopPane.cs index 29e6af46b7..ca47d9c894 100644 --- a/src/net/JNet/Generated/Javax/Swing/JDesktopPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JDesktopPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JDesktopPane + #region JDesktopPane declaration + /// + /// + /// + public partial class JDesktopPane : Javax.Swing.JLayeredPane + { + const string _bridgeClassName = "javax.swing.JDesktopPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JDesktopPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JDesktopPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JDesktopPane implementation public partial class JDesktopPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JDialog.cs b/src/net/JNet/Generated/Javax/Swing/JDialog.cs index 8b5a71bf1b..008fa7a5ac 100644 --- a/src/net/JNet/Generated/Javax/Swing/JDialog.cs +++ b/src/net/JNet/Generated/Javax/Swing/JDialog.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JDialog + #region JDialog declaration + /// + /// + /// + public partial class JDialog : Java.Awt.Dialog + { + const string _bridgeClassName = "javax.swing.JDialog"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JDialog() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JDialog(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JDialog implementation public partial class JDialog { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JEditorPane.cs b/src/net/JNet/Generated/Javax/Swing/JEditorPane.cs index 0e02ebe18a..7b2de70e13 100644 --- a/src/net/JNet/Generated/Javax/Swing/JEditorPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JEditorPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JEditorPane + #region JEditorPane declaration + /// + /// + /// + public partial class JEditorPane : Javax.Swing.Text.JTextComponent + { + const string _bridgeClassName = "javax.swing.JEditorPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JEditorPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JEditorPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JEditorPane implementation public partial class JEditorPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JFileChooser.cs b/src/net/JNet/Generated/Javax/Swing/JFileChooser.cs index 76422d1e23..0900e00273 100644 --- a/src/net/JNet/Generated/Javax/Swing/JFileChooser.cs +++ b/src/net/JNet/Generated/Javax/Swing/JFileChooser.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JFileChooser + #region JFileChooser declaration + /// + /// + /// + public partial class JFileChooser : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JFileChooser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JFileChooser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JFileChooser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JFileChooser implementation public partial class JFileChooser { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JFormattedTextField.cs b/src/net/JNet/Generated/Javax/Swing/JFormattedTextField.cs index 913ab6c197..f797f4a22c 100644 --- a/src/net/JNet/Generated/Javax/Swing/JFormattedTextField.cs +++ b/src/net/JNet/Generated/Javax/Swing/JFormattedTextField.cs @@ -25,7 +25,146 @@ namespace Javax.Swing { - #region JFormattedTextField + #region JFormattedTextField declaration + /// + /// + /// + public partial class JFormattedTextField : Javax.Swing.JTextField + { + const string _bridgeClassName = "javax.swing.JFormattedTextField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JFormattedTextField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JFormattedTextField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AbstractFormatter declaration + /// + /// + /// + public partial class AbstractFormatter : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.JFormattedTextField$AbstractFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractFormatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractFormatter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region AbstractFormatterFactory declaration + /// + /// + /// + public partial class AbstractFormatterFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.JFormattedTextField$AbstractFormatterFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractFormatterFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractFormatterFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractFormatterFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractFormatterFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JFormattedTextField implementation public partial class JFormattedTextField { #region Constructors @@ -158,7 +297,7 @@ public void CommitEdit() #endregion #region Nested classes - #region AbstractFormatter + #region AbstractFormatter implementation public partial class AbstractFormatter { #region Constructors @@ -224,7 +363,7 @@ public void Uninstall() } #endregion - #region AbstractFormatterFactory + #region AbstractFormatterFactory implementation public partial class AbstractFormatterFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JFrame.cs b/src/net/JNet/Generated/Javax/Swing/JFrame.cs index 3fe3d3f12d..9eadd02962 100644 --- a/src/net/JNet/Generated/Javax/Swing/JFrame.cs +++ b/src/net/JNet/Generated/Javax/Swing/JFrame.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JFrame + #region JFrame declaration + /// + /// + /// + public partial class JFrame : Java.Awt.Frame + { + const string _bridgeClassName = "javax.swing.JFrame"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JFrame() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JFrame(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JFrame implementation public partial class JFrame { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JInternalFrame.cs b/src/net/JNet/Generated/Javax/Swing/JInternalFrame.cs index 8b108369fe..4a33a59803 100644 --- a/src/net/JNet/Generated/Javax/Swing/JInternalFrame.cs +++ b/src/net/JNet/Generated/Javax/Swing/JInternalFrame.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region JInternalFrame + #region JInternalFrame declaration + /// + /// + /// + public partial class JInternalFrame : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JInternalFrame"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JInternalFrame() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JInternalFrame(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region JDesktopIcon declaration + /// + /// + /// + public partial class JDesktopIcon : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JInternalFrame$JDesktopIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JDesktopIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JDesktopIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JInternalFrame implementation public partial class JInternalFrame { #region Constructors @@ -517,7 +607,7 @@ public void ToFront() #endregion #region Nested classes - #region JDesktopIcon + #region JDesktopIcon implementation public partial class JDesktopIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JLabel.cs b/src/net/JNet/Generated/Javax/Swing/JLabel.cs index e6fee4920a..881df4b1da 100644 --- a/src/net/JNet/Generated/Javax/Swing/JLabel.cs +++ b/src/net/JNet/Generated/Javax/Swing/JLabel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JLabel + #region JLabel declaration + /// + /// + /// + public partial class JLabel : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JLabel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JLabel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JLabel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JLabel implementation public partial class JLabel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JLayer.cs b/src/net/JNet/Generated/Javax/Swing/JLayer.cs index 6e6ded0f18..85ba3822b0 100644 --- a/src/net/JNet/Generated/Javax/Swing/JLayer.cs +++ b/src/net/JNet/Generated/Javax/Swing/JLayer.cs @@ -25,7 +25,98 @@ namespace Javax.Swing { - #region JLayer + #region JLayer declaration + /// + /// + /// + public partial class JLayer : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JLayer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JLayer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JLayer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JLayer declaration + /// + /// + /// + /// + public partial class JLayer : Javax.Swing.JComponent where V : Java.Awt.Component + { + const string _bridgeClassName = "javax.swing.JLayer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JLayer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JLayer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JLayer implementation public partial class JLayer { #region Constructors @@ -173,7 +264,7 @@ public void SetUI(Javax.Swing.Plaf.LayerUI arg0) } #endregion - #region JLayer + #region JLayer implementation public partial class JLayer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JLayeredPane.cs b/src/net/JNet/Generated/Javax/Swing/JLayeredPane.cs index 9807f7acb9..e6a250a63d 100644 --- a/src/net/JNet/Generated/Javax/Swing/JLayeredPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JLayeredPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JLayeredPane + #region JLayeredPane declaration + /// + /// + /// + public partial class JLayeredPane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JLayeredPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JLayeredPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JLayeredPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JLayeredPane implementation public partial class JLayeredPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JList.cs b/src/net/JNet/Generated/Javax/Swing/JList.cs index 492f1e6255..4a4e78ebf3 100644 --- a/src/net/JNet/Generated/Javax/Swing/JList.cs +++ b/src/net/JNet/Generated/Javax/Swing/JList.cs @@ -25,7 +25,143 @@ namespace Javax.Swing { - #region JList + #region JList declaration + /// + /// + /// + public partial class JList : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DropLocation declaration + /// + /// + /// + public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation + { + const string _bridgeClassName = "javax.swing.JList$DropLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JList declaration + /// + /// + /// + /// + public partial class JList : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JList implementation public partial class JList { #region Constructors @@ -463,7 +599,7 @@ public void SetUI(Javax.Swing.Plaf.ListUI arg0) #endregion #region Nested classes - #region DropLocation + #region DropLocation implementation public partial class DropLocation { #region Constructors @@ -516,7 +652,7 @@ public bool IsInsert() } #endregion - #region JList + #region JList implementation public partial class JList { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JMenu.cs b/src/net/JNet/Generated/Javax/Swing/JMenu.cs index 248f775c2d..a41693ab8e 100644 --- a/src/net/JNet/Generated/Javax/Swing/JMenu.cs +++ b/src/net/JNet/Generated/Javax/Swing/JMenu.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JMenu + #region JMenu declaration + /// + /// + /// + public partial class JMenu : Javax.Swing.JMenuItem + { + const string _bridgeClassName = "javax.swing.JMenu"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMenu() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMenu(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMenu implementation public partial class JMenu { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JMenuBar.cs b/src/net/JNet/Generated/Javax/Swing/JMenuBar.cs index 0f96820f05..9993c97200 100644 --- a/src/net/JNet/Generated/Javax/Swing/JMenuBar.cs +++ b/src/net/JNet/Generated/Javax/Swing/JMenuBar.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JMenuBar + #region JMenuBar declaration + /// + /// + /// + public partial class JMenuBar : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JMenuBar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMenuBar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMenuBar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMenuBar implementation public partial class JMenuBar { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JMenuItem.cs b/src/net/JNet/Generated/Javax/Swing/JMenuItem.cs index 466d7bdfbb..a40bfb161a 100644 --- a/src/net/JNet/Generated/Javax/Swing/JMenuItem.cs +++ b/src/net/JNet/Generated/Javax/Swing/JMenuItem.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JMenuItem + #region JMenuItem declaration + /// + /// + /// + public partial class JMenuItem : Javax.Swing.AbstractButton + { + const string _bridgeClassName = "javax.swing.JMenuItem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JMenuItem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JMenuItem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JMenuItem implementation public partial class JMenuItem { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JOptionPane.cs b/src/net/JNet/Generated/Javax/Swing/JOptionPane.cs index 104faa3e63..188ce95a88 100644 --- a/src/net/JNet/Generated/Javax/Swing/JOptionPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JOptionPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JOptionPane + #region JOptionPane declaration + /// + /// + /// + public partial class JOptionPane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JOptionPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JOptionPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JOptionPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JOptionPane implementation public partial class JOptionPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JPanel.cs b/src/net/JNet/Generated/Javax/Swing/JPanel.cs index aa8f033ef7..87d122f66a 100644 --- a/src/net/JNet/Generated/Javax/Swing/JPanel.cs +++ b/src/net/JNet/Generated/Javax/Swing/JPanel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JPanel + #region JPanel declaration + /// + /// + /// + public partial class JPanel : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JPanel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPanel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPanel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JPanel implementation public partial class JPanel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JPasswordField.cs b/src/net/JNet/Generated/Javax/Swing/JPasswordField.cs index 4cbb0044ff..bc47307708 100644 --- a/src/net/JNet/Generated/Javax/Swing/JPasswordField.cs +++ b/src/net/JNet/Generated/Javax/Swing/JPasswordField.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JPasswordField + #region JPasswordField declaration + /// + /// + /// + public partial class JPasswordField : Javax.Swing.JTextField + { + const string _bridgeClassName = "javax.swing.JPasswordField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPasswordField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPasswordField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JPasswordField implementation public partial class JPasswordField { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JPopupMenu.cs b/src/net/JNet/Generated/Javax/Swing/JPopupMenu.cs index f6676d66b2..ead0229596 100644 --- a/src/net/JNet/Generated/Javax/Swing/JPopupMenu.cs +++ b/src/net/JNet/Generated/Javax/Swing/JPopupMenu.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region JPopupMenu + #region JPopupMenu declaration + /// + /// + /// + public partial class JPopupMenu : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JPopupMenu"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JPopupMenu() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JPopupMenu(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Separator declaration + /// + /// + /// + public partial class Separator : Javax.Swing.JSeparator + { + const string _bridgeClassName = "javax.swing.JPopupMenu$Separator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Separator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Separator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JPopupMenu implementation public partial class JPopupMenu { #region Constructors @@ -340,7 +430,7 @@ public void Show(Java.Awt.Component arg0, int arg1, int arg2) #endregion #region Nested classes - #region Separator + #region Separator implementation public partial class Separator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JProgressBar.cs b/src/net/JNet/Generated/Javax/Swing/JProgressBar.cs index 1813e6a430..57abda2cd8 100644 --- a/src/net/JNet/Generated/Javax/Swing/JProgressBar.cs +++ b/src/net/JNet/Generated/Javax/Swing/JProgressBar.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JProgressBar + #region JProgressBar declaration + /// + /// + /// + public partial class JProgressBar : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JProgressBar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JProgressBar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JProgressBar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JProgressBar implementation public partial class JProgressBar { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JRadioButton.cs b/src/net/JNet/Generated/Javax/Swing/JRadioButton.cs index 05486dcc87..9c5a8cd052 100644 --- a/src/net/JNet/Generated/Javax/Swing/JRadioButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/JRadioButton.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JRadioButton + #region JRadioButton declaration + /// + /// + /// + public partial class JRadioButton : Javax.Swing.JToggleButton + { + const string _bridgeClassName = "javax.swing.JRadioButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JRadioButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JRadioButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JRadioButton implementation public partial class JRadioButton { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JRadioButtonMenuItem.cs b/src/net/JNet/Generated/Javax/Swing/JRadioButtonMenuItem.cs index 7ea367b5d2..90e07cb33d 100644 --- a/src/net/JNet/Generated/Javax/Swing/JRadioButtonMenuItem.cs +++ b/src/net/JNet/Generated/Javax/Swing/JRadioButtonMenuItem.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JRadioButtonMenuItem + #region JRadioButtonMenuItem declaration + /// + /// + /// + public partial class JRadioButtonMenuItem : Javax.Swing.JMenuItem + { + const string _bridgeClassName = "javax.swing.JRadioButtonMenuItem"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JRadioButtonMenuItem() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JRadioButtonMenuItem(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JRadioButtonMenuItem implementation public partial class JRadioButtonMenuItem { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JRootPane.cs b/src/net/JNet/Generated/Javax/Swing/JRootPane.cs index 344d7165c5..e393c7aed5 100644 --- a/src/net/JNet/Generated/Javax/Swing/JRootPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JRootPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JRootPane + #region JRootPane declaration + /// + /// + /// + public partial class JRootPane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JRootPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JRootPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JRootPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JRootPane implementation public partial class JRootPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JScrollBar.cs b/src/net/JNet/Generated/Javax/Swing/JScrollBar.cs index c9155f9156..dade757590 100644 --- a/src/net/JNet/Generated/Javax/Swing/JScrollBar.cs +++ b/src/net/JNet/Generated/Javax/Swing/JScrollBar.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JScrollBar + #region JScrollBar declaration + /// + /// + /// + public partial class JScrollBar : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JScrollBar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JScrollBar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JScrollBar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JScrollBar implementation public partial class JScrollBar { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JScrollPane.cs b/src/net/JNet/Generated/Javax/Swing/JScrollPane.cs index 5042a535cb..e6b65af922 100644 --- a/src/net/JNet/Generated/Javax/Swing/JScrollPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JScrollPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JScrollPane + #region JScrollPane declaration + /// + /// + /// + public partial class JScrollPane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JScrollPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JScrollPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JScrollPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JScrollPane implementation public partial class JScrollPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JSeparator.cs b/src/net/JNet/Generated/Javax/Swing/JSeparator.cs index adf8df786f..ce98c9b186 100644 --- a/src/net/JNet/Generated/Javax/Swing/JSeparator.cs +++ b/src/net/JNet/Generated/Javax/Swing/JSeparator.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JSeparator + #region JSeparator declaration + /// + /// + /// + public partial class JSeparator : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JSeparator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JSeparator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JSeparator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JSeparator implementation public partial class JSeparator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JSlider.cs b/src/net/JNet/Generated/Javax/Swing/JSlider.cs index 3b681009b2..54f3814d93 100644 --- a/src/net/JNet/Generated/Javax/Swing/JSlider.cs +++ b/src/net/JNet/Generated/Javax/Swing/JSlider.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JSlider + #region JSlider declaration + /// + /// + /// + public partial class JSlider : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JSlider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JSlider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JSlider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JSlider implementation public partial class JSlider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JSpinner.cs b/src/net/JNet/Generated/Javax/Swing/JSpinner.cs index 72901ce838..ccb933d2fd 100644 --- a/src/net/JNet/Generated/Javax/Swing/JSpinner.cs +++ b/src/net/JNet/Generated/Javax/Swing/JSpinner.cs @@ -25,7 +25,232 @@ namespace Javax.Swing { - #region JSpinner + #region JSpinner declaration + /// + /// + /// + public partial class JSpinner : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JSpinner"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JSpinner() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JSpinner(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DateEditor declaration + /// + /// + /// + public partial class DateEditor : Javax.Swing.JSpinner.DefaultEditor + { + const string _bridgeClassName = "javax.swing.JSpinner$DateEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DefaultEditor declaration + /// + /// + /// + public partial class DefaultEditor : Javax.Swing.JPanel + { + const string _bridgeClassName = "javax.swing.JSpinner$DefaultEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ListEditor declaration + /// + /// + /// + public partial class ListEditor : Javax.Swing.JSpinner.DefaultEditor + { + const string _bridgeClassName = "javax.swing.JSpinner$ListEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region NumberEditor declaration + /// + /// + /// + public partial class NumberEditor : Javax.Swing.JSpinner.DefaultEditor + { + const string _bridgeClassName = "javax.swing.JSpinner$NumberEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumberEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumberEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JSpinner implementation public partial class JSpinner { #region Constructors @@ -135,7 +360,7 @@ public void SetUI(Javax.Swing.Plaf.SpinnerUI arg0) #endregion #region Nested classes - #region DateEditor + #region DateEditor implementation public partial class DateEditor { #region Constructors @@ -197,7 +422,7 @@ public Javax.Swing.SpinnerDateModel Model } #endregion - #region DefaultEditor + #region DefaultEditor implementation public partial class DefaultEditor { #region Constructors @@ -337,7 +562,7 @@ public void StateChanged(Javax.Swing.Event.ChangeEvent arg0) } #endregion - #region ListEditor + #region ListEditor implementation public partial class ListEditor { #region Constructors @@ -383,7 +608,7 @@ public Javax.Swing.SpinnerListModel Model } #endregion - #region NumberEditor + #region NumberEditor implementation public partial class NumberEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JSplitPane.cs b/src/net/JNet/Generated/Javax/Swing/JSplitPane.cs index 3d238c9600..f3c540fcf8 100644 --- a/src/net/JNet/Generated/Javax/Swing/JSplitPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JSplitPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JSplitPane + #region JSplitPane declaration + /// + /// + /// + public partial class JSplitPane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JSplitPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JSplitPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JSplitPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JSplitPane implementation public partial class JSplitPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JTabbedPane.cs b/src/net/JNet/Generated/Javax/Swing/JTabbedPane.cs index e9a70579b7..396d0c84c1 100644 --- a/src/net/JNet/Generated/Javax/Swing/JTabbedPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JTabbedPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JTabbedPane + #region JTabbedPane declaration + /// + /// + /// + public partial class JTabbedPane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JTabbedPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTabbedPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTabbedPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JTabbedPane implementation public partial class JTabbedPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JTable.cs b/src/net/JNet/Generated/Javax/Swing/JTable.cs index 1f4243724e..e5fb5e1193 100644 --- a/src/net/JNet/Generated/Javax/Swing/JTable.cs +++ b/src/net/JNet/Generated/Javax/Swing/JTable.cs @@ -25,7 +25,142 @@ namespace Javax.Swing { - #region JTable + #region JTable declaration + /// + /// + /// + public partial class JTable : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JTable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DropLocation declaration + /// + /// + /// + public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation + { + const string _bridgeClassName = "javax.swing.JTable$DropLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PrintMode declaration + /// + /// + /// + public partial class PrintMode : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.JTable$PrintMode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PrintMode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PrintMode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JTable implementation public partial class JTable { #region Constructors @@ -1034,7 +1169,7 @@ public void ValueChanged(Javax.Swing.Event.ListSelectionEvent arg0) #endregion #region Nested classes - #region DropLocation + #region DropLocation implementation public partial class DropLocation { #region Constructors @@ -1095,7 +1230,7 @@ public bool IsInsertRow() } #endregion - #region PrintMode + #region PrintMode implementation public partial class PrintMode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JTextArea.cs b/src/net/JNet/Generated/Javax/Swing/JTextArea.cs index 7aba21f33d..44055eeef0 100644 --- a/src/net/JNet/Generated/Javax/Swing/JTextArea.cs +++ b/src/net/JNet/Generated/Javax/Swing/JTextArea.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JTextArea + #region JTextArea declaration + /// + /// + /// + public partial class JTextArea : Javax.Swing.Text.JTextComponent + { + const string _bridgeClassName = "javax.swing.JTextArea"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTextArea() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTextArea(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JTextArea implementation public partial class JTextArea { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JTextField.cs b/src/net/JNet/Generated/Javax/Swing/JTextField.cs index ffa2445531..58ce0ff026 100644 --- a/src/net/JNet/Generated/Javax/Swing/JTextField.cs +++ b/src/net/JNet/Generated/Javax/Swing/JTextField.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JTextField + #region JTextField declaration + /// + /// + /// + public partial class JTextField : Javax.Swing.Text.JTextComponent + { + const string _bridgeClassName = "javax.swing.JTextField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTextField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTextField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JTextField implementation public partial class JTextField { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JTextPane.cs b/src/net/JNet/Generated/Javax/Swing/JTextPane.cs index 208ac5e749..8ecdd2445f 100644 --- a/src/net/JNet/Generated/Javax/Swing/JTextPane.cs +++ b/src/net/JNet/Generated/Javax/Swing/JTextPane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JTextPane + #region JTextPane declaration + /// + /// + /// + public partial class JTextPane : Javax.Swing.JEditorPane + { + const string _bridgeClassName = "javax.swing.JTextPane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTextPane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTextPane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JTextPane implementation public partial class JTextPane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JToggleButton.cs b/src/net/JNet/Generated/Javax/Swing/JToggleButton.cs index 4596ae5b02..787c700a85 100644 --- a/src/net/JNet/Generated/Javax/Swing/JToggleButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/JToggleButton.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region JToggleButton + #region JToggleButton declaration + /// + /// + /// + public partial class JToggleButton : Javax.Swing.AbstractButton + { + const string _bridgeClassName = "javax.swing.JToggleButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JToggleButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JToggleButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ToggleButtonModel declaration + /// + /// + /// + public partial class ToggleButtonModel : Javax.Swing.DefaultButtonModel + { + const string _bridgeClassName = "javax.swing.JToggleButton$ToggleButtonModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToggleButtonModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ToggleButtonModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JToggleButton implementation public partial class JToggleButton { #region Constructors @@ -114,7 +204,7 @@ public JToggleButton(Javax.Swing.Icon arg0) #endregion #region Nested classes - #region ToggleButtonModel + #region ToggleButtonModel implementation public partial class ToggleButtonModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JToolBar.cs b/src/net/JNet/Generated/Javax/Swing/JToolBar.cs index 70c06346bb..c9c076d732 100644 --- a/src/net/JNet/Generated/Javax/Swing/JToolBar.cs +++ b/src/net/JNet/Generated/Javax/Swing/JToolBar.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region JToolBar + #region JToolBar declaration + /// + /// + /// + public partial class JToolBar : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JToolBar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JToolBar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JToolBar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Separator declaration + /// + /// + /// + public partial class Separator : Javax.Swing.JSeparator + { + const string _bridgeClassName = "javax.swing.JToolBar$Separator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Separator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Separator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JToolBar implementation public partial class JToolBar { #region Constructors @@ -194,7 +284,7 @@ public void SetUI(Javax.Swing.Plaf.ToolBarUI arg0) #endregion #region Nested classes - #region Separator + #region Separator implementation public partial class Separator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JToolTip.cs b/src/net/JNet/Generated/Javax/Swing/JToolTip.cs index a312cf18f2..e2e861f1ce 100644 --- a/src/net/JNet/Generated/Javax/Swing/JToolTip.cs +++ b/src/net/JNet/Generated/Javax/Swing/JToolTip.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JToolTip + #region JToolTip declaration + /// + /// + /// + public partial class JToolTip : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JToolTip"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JToolTip() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JToolTip(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JToolTip implementation public partial class JToolTip { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JTree.cs b/src/net/JNet/Generated/Javax/Swing/JTree.cs index 2fc7f14963..b82d8c3619 100644 --- a/src/net/JNet/Generated/Javax/Swing/JTree.cs +++ b/src/net/JNet/Generated/Javax/Swing/JTree.cs @@ -25,7 +25,142 @@ namespace Javax.Swing { - #region JTree + #region JTree declaration + /// + /// + /// + public partial class JTree : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JTree"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTree() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTree(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DropLocation declaration + /// + /// + /// + public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation + { + const string _bridgeClassName = "javax.swing.JTree$DropLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DynamicUtilTreeNode declaration + /// + /// + /// + public partial class DynamicUtilTreeNode : Javax.Swing.Tree.DefaultMutableTreeNode + { + const string _bridgeClassName = "javax.swing.JTree$DynamicUtilTreeNode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DynamicUtilTreeNode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DynamicUtilTreeNode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JTree implementation public partial class JTree { #region Constructors @@ -985,7 +1120,7 @@ public void TreeDidChange() #endregion #region Nested classes - #region DropLocation + #region DropLocation implementation public partial class DropLocation { #region Constructors @@ -1030,7 +1165,7 @@ public Javax.Swing.Tree.TreePath Path } #endregion - #region DynamicUtilTreeNode + #region DynamicUtilTreeNode implementation public partial class DynamicUtilTreeNode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JViewport.cs b/src/net/JNet/Generated/Javax/Swing/JViewport.cs index e461b98cf5..ac81fd457d 100644 --- a/src/net/JNet/Generated/Javax/Swing/JViewport.cs +++ b/src/net/JNet/Generated/Javax/Swing/JViewport.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JViewport + #region JViewport declaration + /// + /// + /// + public partial class JViewport : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.JViewport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JViewport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JViewport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JViewport implementation public partial class JViewport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/JWindow.cs b/src/net/JNet/Generated/Javax/Swing/JWindow.cs index e8397bf8d1..7ea669de36 100644 --- a/src/net/JNet/Generated/Javax/Swing/JWindow.cs +++ b/src/net/JNet/Generated/Javax/Swing/JWindow.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region JWindow + #region JWindow declaration + /// + /// + /// + public partial class JWindow : Java.Awt.Window + { + const string _bridgeClassName = "javax.swing.JWindow"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JWindow() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JWindow(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JWindow implementation public partial class JWindow { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/KeyStroke.cs b/src/net/JNet/Generated/Javax/Swing/KeyStroke.cs index b1401706ea..7443ed400f 100644 --- a/src/net/JNet/Generated/Javax/Swing/KeyStroke.cs +++ b/src/net/JNet/Generated/Javax/Swing/KeyStroke.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region KeyStroke + #region KeyStroke declaration + /// + /// + /// + public partial class KeyStroke : Java.Awt.AWTKeyStroke + { + const string _bridgeClassName = "javax.swing.KeyStroke"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyStroke() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyStroke(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyStroke implementation public partial class KeyStroke { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/LayoutFocusTraversalPolicy.cs b/src/net/JNet/Generated/Javax/Swing/LayoutFocusTraversalPolicy.cs index 878be7c34c..f716f68511 100644 --- a/src/net/JNet/Generated/Javax/Swing/LayoutFocusTraversalPolicy.cs +++ b/src/net/JNet/Generated/Javax/Swing/LayoutFocusTraversalPolicy.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region LayoutFocusTraversalPolicy + #region LayoutFocusTraversalPolicy declaration + /// + /// + /// + public partial class LayoutFocusTraversalPolicy : Javax.Swing.SortingFocusTraversalPolicy + { + const string _bridgeClassName = "javax.swing.LayoutFocusTraversalPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LayoutFocusTraversalPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LayoutFocusTraversalPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LayoutFocusTraversalPolicy implementation public partial class LayoutFocusTraversalPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/LayoutStyle.cs b/src/net/JNet/Generated/Javax/Swing/LayoutStyle.cs index 7e9199432a..20d8112a71 100644 --- a/src/net/JNet/Generated/Javax/Swing/LayoutStyle.cs +++ b/src/net/JNet/Generated/Javax/Swing/LayoutStyle.cs @@ -25,7 +25,99 @@ namespace Javax.Swing { - #region LayoutStyle + #region LayoutStyle declaration + /// + /// + /// + public partial class LayoutStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.LayoutStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LayoutStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LayoutStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayoutStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ComponentPlacement declaration + /// + /// + /// + public partial class ComponentPlacement : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.LayoutStyle$ComponentPlacement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentPlacement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentPlacement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region LayoutStyle implementation public partial class LayoutStyle { #region Constructors @@ -80,7 +172,7 @@ public int GetPreferredGap(Javax.Swing.JComponent arg0, Javax.Swing.JComponent a #endregion #region Nested classes - #region ComponentPlacement + #region ComponentPlacement implementation public partial class ComponentPlacement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ListCellRenderer.cs b/src/net/JNet/Generated/Javax/Swing/ListCellRenderer.cs index 4184abac69..6aed83483e 100644 --- a/src/net/JNet/Generated/Javax/Swing/ListCellRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/ListCellRenderer.cs @@ -25,7 +25,102 @@ namespace Javax.Swing { - #region ListCellRenderer + #region ListCellRenderer declaration + /// + /// + /// + public partial class ListCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ListCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListCellRenderer declaration + /// + /// + /// + /// + public partial class ListCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.ListCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListCellRenderer implementation public partial class ListCellRenderer { #region Constructors @@ -98,7 +193,7 @@ public partial interface IListCellRenderer } #endregion - #region ListCellRenderer + #region ListCellRenderer implementation public partial class ListCellRenderer : Javax.Swing.IListCellRenderer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ListModel.cs b/src/net/JNet/Generated/Javax/Swing/ListModel.cs index 433bf77411..00ee67f212 100644 --- a/src/net/JNet/Generated/Javax/Swing/ListModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/ListModel.cs @@ -25,7 +25,102 @@ namespace Javax.Swing { - #region ListModel + #region ListModel declaration + /// + /// + /// + public partial class ListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListModel declaration + /// + /// + /// + /// + public partial class ListModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.ListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListModel implementation public partial class ListModel { #region Constructors @@ -126,7 +221,7 @@ public partial interface IListModel } #endregion - #region ListModel + #region ListModel implementation public partial class ListModel : Javax.Swing.IListModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ListSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/ListSelectionModel.cs index b4a4c09e2d..d8bf94501a 100644 --- a/src/net/JNet/Generated/Javax/Swing/ListSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/ListSelectionModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region ListSelectionModel declaration + /// + /// + /// + public partial class ListSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ListSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IListSelectionModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -131,7 +178,7 @@ public partial interface IListSelectionModel } #endregion - #region ListSelectionModel + #region ListSelectionModel implementation public partial class ListSelectionModel : Javax.Swing.IListSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/LookAndFeel.cs b/src/net/JNet/Generated/Javax/Swing/LookAndFeel.cs index 794a9e1dbc..3d65dd9da6 100644 --- a/src/net/JNet/Generated/Javax/Swing/LookAndFeel.cs +++ b/src/net/JNet/Generated/Javax/Swing/LookAndFeel.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region LookAndFeel + #region LookAndFeel declaration + /// + /// + /// + public partial class LookAndFeel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.LookAndFeel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LookAndFeel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LookAndFeel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LookAndFeel implementation public partial class LookAndFeel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/MenuElement.cs b/src/net/JNet/Generated/Javax/Swing/MenuElement.cs index fc5107c7e4..96df2352e4 100644 --- a/src/net/JNet/Generated/Javax/Swing/MenuElement.cs +++ b/src/net/JNet/Generated/Javax/Swing/MenuElement.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region MenuElement declaration + /// + /// + /// + public partial class MenuElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.MenuElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMenuElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -70,7 +117,7 @@ public partial interface IMenuElement } #endregion - #region MenuElement + #region MenuElement implementation public partial class MenuElement : Javax.Swing.IMenuElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/MenuSelectionManager.cs b/src/net/JNet/Generated/Javax/Swing/MenuSelectionManager.cs index ea335f225d..275016bda9 100644 --- a/src/net/JNet/Generated/Javax/Swing/MenuSelectionManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/MenuSelectionManager.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region MenuSelectionManager + #region MenuSelectionManager declaration + /// + /// + /// + public partial class MenuSelectionManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.MenuSelectionManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuSelectionManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuSelectionManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuSelectionManager implementation public partial class MenuSelectionManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/MutableComboBoxModel.cs b/src/net/JNet/Generated/Javax/Swing/MutableComboBoxModel.cs index df1c3d4d3f..f74afc7293 100644 --- a/src/net/JNet/Generated/Javax/Swing/MutableComboBoxModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/MutableComboBoxModel.cs @@ -25,7 +25,102 @@ namespace Javax.Swing { - #region MutableComboBoxModel + #region MutableComboBoxModel declaration + /// + /// + /// + public partial class MutableComboBoxModel : Javax.Swing.ComboBoxModel + { + const string _bridgeClassName = "javax.swing.MutableComboBoxModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableComboBoxModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableComboBoxModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MutableComboBoxModel declaration + /// + /// + /// + /// + public partial class MutableComboBoxModel : Javax.Swing.ComboBoxModel + { + const string _bridgeClassName = "javax.swing.MutableComboBoxModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableComboBoxModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MutableComboBoxModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableComboBoxModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MutableComboBoxModel implementation public partial class MutableComboBoxModel { #region Constructors @@ -128,7 +223,7 @@ public partial interface IMutableComboBoxModel : Javax.Swing.IComboBoxModel + #region MutableComboBoxModel implementation public partial class MutableComboBoxModel : Javax.Swing.IMutableComboBoxModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/OverlayLayout.cs b/src/net/JNet/Generated/Javax/Swing/OverlayLayout.cs index bff2c322c4..1f24f6d6c1 100644 --- a/src/net/JNet/Generated/Javax/Swing/OverlayLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/OverlayLayout.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region OverlayLayout + #region OverlayLayout declaration + /// + /// + /// + public partial class OverlayLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.OverlayLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OverlayLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OverlayLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OverlayLayout implementation public partial class OverlayLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Painter.cs b/src/net/JNet/Generated/Javax/Swing/Painter.cs index 68555a9b92..ee701943d0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Painter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Painter.cs @@ -25,7 +25,102 @@ namespace Javax.Swing { - #region Painter + #region Painter declaration + /// + /// + /// + public partial class Painter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.Painter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Painter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Painter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Painter declaration + /// + /// + /// + /// + public partial class Painter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.Painter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Painter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Painter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Painter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Painter implementation public partial class Painter { #region Constructors @@ -93,7 +188,7 @@ public partial interface IPainter } #endregion - #region Painter + #region Painter implementation public partial class Painter : Javax.Swing.IPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ActionMapUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ActionMapUIResource.cs index a6e3b08152..dea342530b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ActionMapUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ActionMapUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region ActionMapUIResource + #region ActionMapUIResource declaration + /// + /// + /// + public partial class ActionMapUIResource : Javax.Swing.ActionMap + { + const string _bridgeClassName = "javax.swing.plaf.ActionMapUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActionMapUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActionMapUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ActionMapUIResource implementation public partial class ActionMapUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/AllPackageClasses.cs deleted file mode 100644 index 5d7686dbb1..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/AllPackageClasses.cs +++ /dev/null @@ -1,2345 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Plaf -{ - #region ActionMapUIResource - /// - /// - /// - public partial class ActionMapUIResource : Javax.Swing.ActionMap - { - const string _bridgeClassName = "javax.swing.plaf.ActionMapUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActionMapUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActionMapUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BorderUIResource - /// - /// - /// - public partial class BorderUIResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BevelBorderUIResource - /// - /// - /// - public partial class BevelBorderUIResource : Javax.Swing.Border.BevelBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$BevelBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BevelBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BevelBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CompoundBorderUIResource - /// - /// - /// - public partial class CompoundBorderUIResource : Javax.Swing.Border.CompoundBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$CompoundBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompoundBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompoundBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region EmptyBorderUIResource - /// - /// - /// - public partial class EmptyBorderUIResource : Javax.Swing.Border.EmptyBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$EmptyBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EmptyBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EmptyBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region EtchedBorderUIResource - /// - /// - /// - public partial class EtchedBorderUIResource : Javax.Swing.Border.EtchedBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$EtchedBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EtchedBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EtchedBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region LineBorderUIResource - /// - /// - /// - public partial class LineBorderUIResource : Javax.Swing.Border.LineBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$LineBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LineBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LineBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MatteBorderUIResource - /// - /// - /// - public partial class MatteBorderUIResource : Javax.Swing.Border.MatteBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$MatteBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MatteBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MatteBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TitledBorderUIResource - /// - /// - /// - public partial class TitledBorderUIResource : Javax.Swing.Border.TitledBorder - { - const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$TitledBorderUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TitledBorderUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TitledBorderUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region ButtonUI - /// - /// - /// - public partial class ButtonUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ButtonUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ButtonUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorChooserUI - /// - /// - /// - public partial class ColorChooserUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ColorChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ColorChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ColorChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ColorUIResource - /// - /// - /// - public partial class ColorUIResource : Java.Awt.Color - { - const string _bridgeClassName = "javax.swing.plaf.ColorUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComboBoxUI - /// - /// - /// - public partial class ComboBoxUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ComboBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ComboBoxUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ComboBoxUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentInputMapUIResource - /// - /// - /// - public partial class ComponentInputMapUIResource : Javax.Swing.ComponentInputMap - { - const string _bridgeClassName = "javax.swing.plaf.ComponentInputMapUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentInputMapUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentInputMapUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComponentUI - /// - /// - /// - public partial class ComponentUI : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.ComponentUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ComponentUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComponentUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ComponentUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComponentUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DesktopIconUI - /// - /// - /// - public partial class DesktopIconUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.DesktopIconUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DesktopIconUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesktopIconUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DesktopIconUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesktopIconUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DesktopPaneUI - /// - /// - /// - public partial class DesktopPaneUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.DesktopPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DesktopPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesktopPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DesktopPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DesktopPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DimensionUIResource - /// - /// - /// - public partial class DimensionUIResource : Java.Awt.Dimension - { - const string _bridgeClassName = "javax.swing.plaf.DimensionUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DimensionUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DimensionUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FileChooserUI - /// - /// - /// - public partial class FileChooserUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.FileChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FontUIResource - /// - /// - /// - public partial class FontUIResource : Java.Awt.Font - { - const string _bridgeClassName = "javax.swing.plaf.FontUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FontUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FontUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IconUIResource - /// - /// - /// - public partial class IconUIResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.IconUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IconUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IconUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputMapUIResource - /// - /// - /// - public partial class InputMapUIResource : Javax.Swing.InputMap - { - const string _bridgeClassName = "javax.swing.plaf.InputMapUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputMapUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputMapUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InsetsUIResource - /// - /// - /// - public partial class InsetsUIResource : Java.Awt.Insets - { - const string _bridgeClassName = "javax.swing.plaf.InsetsUIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InsetsUIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InsetsUIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InternalFrameUI - /// - /// - /// - public partial class InternalFrameUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.InternalFrameUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("InternalFrameUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InternalFrameUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("InternalFrameUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public InternalFrameUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LabelUI - /// - /// - /// - public partial class LabelUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.LabelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LabelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LabelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LabelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LabelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayerUI - /// - /// - /// - public partial class LayerUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.LayerUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LayerUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LayerUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayerUI - /// - /// - /// - /// - public partial class LayerUI : Javax.Swing.Plaf.ComponentUI where V : Java.Awt.Component - { - const string _bridgeClassName = "javax.swing.plaf.LayerUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LayerUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LayerUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListUI - /// - /// - /// - public partial class ListUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ListUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ListUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ListUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ListUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuBarUI - /// - /// - /// - public partial class MenuBarUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.MenuBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MenuBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MenuBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MenuItemUI - /// - /// - /// - public partial class MenuItemUI : Javax.Swing.Plaf.ButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.MenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MenuItemUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MenuItemUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OptionPaneUI - /// - /// - /// - public partial class OptionPaneUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.OptionPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OptionPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OptionPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OptionPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OptionPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PanelUI - /// - /// - /// - public partial class PanelUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.PanelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PanelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PanelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PanelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PanelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PopupMenuUI - /// - /// - /// - public partial class PopupMenuUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.PopupMenuUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PopupMenuUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PopupMenuUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PopupMenuUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PopupMenuUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProgressBarUI - /// - /// - /// - public partial class ProgressBarUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ProgressBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProgressBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProgressBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProgressBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProgressBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RootPaneUI - /// - /// - /// - public partial class RootPaneUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.RootPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RootPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RootPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RootPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RootPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScrollBarUI - /// - /// - /// - public partial class ScrollBarUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ScrollBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScrollBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScrollBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScrollBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScrollBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ScrollPaneUI - /// - /// - /// - public partial class ScrollPaneUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ScrollPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ScrollPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScrollPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ScrollPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ScrollPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SeparatorUI - /// - /// - /// - public partial class SeparatorUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.SeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SeparatorUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SeparatorUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SliderUI - /// - /// - /// - public partial class SliderUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.SliderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SliderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SliderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SliderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SliderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpinnerUI - /// - /// - /// - public partial class SpinnerUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.SpinnerUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SpinnerUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SpinnerUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SpinnerUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SpinnerUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SplitPaneUI - /// - /// - /// - public partial class SplitPaneUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.SplitPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SplitPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SplitPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SplitPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SplitPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabbedPaneUI - /// - /// - /// - public partial class TabbedPaneUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.TabbedPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TabbedPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabbedPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TabbedPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabbedPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableHeaderUI - /// - /// - /// - public partial class TableHeaderUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.TableHeaderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableHeaderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableHeaderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableHeaderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableHeaderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableUI - /// - /// - /// - public partial class TableUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.TableUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextUI - /// - /// - /// - public partial class TextUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.TextUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TextUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TextUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ToolBarUI - /// - /// - /// - public partial class ToolBarUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ToolBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ToolBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ToolBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ToolBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ToolBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ToolTipUI - /// - /// - /// - public partial class ToolTipUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ToolTipUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ToolTipUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ToolTipUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ToolTipUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ToolTipUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeUI - /// - /// - /// - public partial class TreeUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.TreeUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UIResource - /// - /// - /// - public partial class UIResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UIResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UIResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ViewportUI - /// - /// - /// - public partial class ViewportUI : Javax.Swing.Plaf.ComponentUI - { - const string _bridgeClassName = "javax.swing.plaf.ViewportUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ViewportUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ViewportUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ViewportUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ViewportUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/AllPackageClasses.cs deleted file mode 100644 index 491ec19b24..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/AllPackageClasses.cs +++ /dev/null @@ -1,6021 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Plaf.Basic -{ - #region BasicArrowButton - /// - /// - /// - public partial class BasicArrowButton : Javax.Swing.JButton - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicArrowButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicArrowButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicArrowButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicBorders - /// - /// - /// - public partial class BasicBorders : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicBorders() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicBorders(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ButtonBorder - /// - /// - /// - public partial class ButtonBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$ButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FieldBorder - /// - /// - /// - public partial class FieldBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$FieldBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FieldBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FieldBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MarginBorder - /// - /// - /// - public partial class MarginBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$MarginBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MarginBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MarginBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MenuBarBorder - /// - /// - /// - public partial class MenuBarBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$MenuBarBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuBarBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuBarBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region RadioButtonBorder - /// - /// - /// - public partial class RadioButtonBorder : Javax.Swing.Plaf.Basic.BasicBorders.ButtonBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$RadioButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RadioButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RadioButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region RolloverButtonBorder - /// - /// - /// - public partial class RolloverButtonBorder : Javax.Swing.Plaf.Basic.BasicBorders.ButtonBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$RolloverButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RolloverButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RolloverButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region SplitPaneBorder - /// - /// - /// - public partial class SplitPaneBorder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$SplitPaneBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SplitPaneBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SplitPaneBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ToggleButtonBorder - /// - /// - /// - public partial class ToggleButtonBorder : Javax.Swing.Plaf.Basic.BasicBorders.ButtonBorder - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$ToggleButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToggleButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ToggleButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicButtonUI - /// - /// - /// - public partial class BasicButtonUI : Javax.Swing.Plaf.ButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicCheckBoxMenuItemUI - /// - /// - /// - public partial class BasicCheckBoxMenuItemUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicCheckBoxMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicCheckBoxMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicCheckBoxMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicCheckBoxUI - /// - /// - /// - public partial class BasicCheckBoxUI : Javax.Swing.Plaf.Basic.BasicRadioButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicCheckBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicCheckBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicCheckBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicColorChooserUI - /// - /// - /// - public partial class BasicColorChooserUI : Javax.Swing.Plaf.ColorChooserUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicColorChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicColorChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicColorChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PropertyHandler - /// - /// - /// - public partial class PropertyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicColorChooserUI$PropertyHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicComboBoxEditor - /// - /// - /// - public partial class BasicComboBoxEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicComboBoxEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicComboBoxEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region UIResource - /// - /// - /// - public partial class UIResource : Javax.Swing.Plaf.Basic.BasicComboBoxEditor - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxEditor$UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicComboBoxRenderer - /// - /// - /// - public partial class BasicComboBoxRenderer : Javax.Swing.JLabel - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicComboBoxRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicComboBoxRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region UIResource - /// - /// - /// - public partial class UIResource : Javax.Swing.Plaf.Basic.BasicComboBoxRenderer - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxRenderer$UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicComboBoxUI - /// - /// - /// - public partial class BasicComboBoxUI : Javax.Swing.Plaf.ComboBoxUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicComboBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicComboBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ComboBoxLayoutManager - /// - /// - /// - public partial class ComboBoxLayoutManager : Java.Awt.LayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$ComboBoxLayoutManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComboBoxLayoutManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComboBoxLayoutManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FocusHandler - /// - /// - /// - public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$FocusHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FocusHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ItemHandler - /// - /// - /// - public partial class ItemHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$ItemHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ItemHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ItemHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListDataHandler - /// - /// - /// - public partial class ListDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$ListDataHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListDataHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListDataHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicComboPopup - /// - /// - /// - public partial class BasicComboPopup : Javax.Swing.JPopupMenu - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboPopup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicComboPopup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicComboPopup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ListDataHandler - /// - /// - /// - public partial class ListDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboPopup$ListDataHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListDataHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListDataHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicDesktopIconUI - /// - /// - /// - public partial class BasicDesktopIconUI : Javax.Swing.Plaf.DesktopIconUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicDesktopIconUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicDesktopIconUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicDesktopIconUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicDesktopPaneUI - /// - /// - /// - public partial class BasicDesktopPaneUI : Javax.Swing.Plaf.DesktopPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicDesktopPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicDesktopPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicDesktopPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicDirectoryModel - /// - /// - /// - public partial class BasicDirectoryModel : Javax.Swing.AbstractListModel - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicDirectoryModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicDirectoryModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicDirectoryModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicEditorPaneUI - /// - /// - /// - public partial class BasicEditorPaneUI : Javax.Swing.Plaf.Basic.BasicTextUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicEditorPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicEditorPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicEditorPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicFileChooserUI - /// - /// - /// - public partial class BasicFileChooserUI : Javax.Swing.Plaf.FileChooserUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicFileChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicFileChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicFileChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicFormattedTextFieldUI - /// - /// - /// - public partial class BasicFormattedTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicFormattedTextFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicFormattedTextFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicFormattedTextFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicGraphicsUtils - /// - /// - /// - public partial class BasicGraphicsUtils : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicGraphicsUtils"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicGraphicsUtils() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicGraphicsUtils(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicHTML - /// - /// - /// - public partial class BasicHTML : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicHTML"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicHTML() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicHTML(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicIconFactory - /// - /// - /// - public partial class BasicIconFactory : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicIconFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicIconFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicIconFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicInternalFrameTitlePane - /// - /// - /// - public partial class BasicInternalFrameTitlePane : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicInternalFrameTitlePane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicInternalFrameTitlePane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CloseAction - /// - /// - /// - public partial class CloseAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$CloseAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CloseAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CloseAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IconifyAction - /// - /// - /// - public partial class IconifyAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$IconifyAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IconifyAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IconifyAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MaximizeAction - /// - /// - /// - public partial class MaximizeAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$MaximizeAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MaximizeAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MaximizeAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MoveAction - /// - /// - /// - public partial class MoveAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$MoveAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MoveAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MoveAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RestoreAction - /// - /// - /// - public partial class RestoreAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$RestoreAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RestoreAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RestoreAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SizeAction - /// - /// - /// - public partial class SizeAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$SizeAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SizeAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SizeAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SystemMenuBar - /// - /// - /// - public partial class SystemMenuBar : Javax.Swing.JMenuBar - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$SystemMenuBar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SystemMenuBar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SystemMenuBar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TitlePaneLayout - /// - /// - /// - public partial class TitlePaneLayout : Java.Awt.LayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$TitlePaneLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TitlePaneLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TitlePaneLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicInternalFrameUI - /// - /// - /// - public partial class BasicInternalFrameUI : Javax.Swing.Plaf.InternalFrameUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicInternalFrameUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicInternalFrameUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region InternalFrameLayout - /// - /// - /// - public partial class InternalFrameLayout : Java.Awt.LayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameUI$InternalFrameLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InternalFrameLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InternalFrameLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicLabelUI - /// - /// - /// - public partial class BasicLabelUI : Javax.Swing.Plaf.LabelUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicLabelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicLabelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicLabelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicListUI - /// - /// - /// - public partial class BasicListUI : Javax.Swing.Plaf.ListUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicListUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicListUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FocusHandler - /// - /// - /// - public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$FocusHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FocusHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListDataHandler - /// - /// - /// - public partial class ListDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$ListDataHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListDataHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListDataHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListSelectionHandler - /// - /// - /// - public partial class ListSelectionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$ListSelectionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListSelectionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListSelectionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseInputHandler - /// - /// - /// - public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$MouseInputHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInputHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseInputHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicLookAndFeel - /// - /// - /// - public partial class BasicLookAndFeel : Javax.Swing.LookAndFeel - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicLookAndFeel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BasicLookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicLookAndFeel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BasicLookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicLookAndFeel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicMenuBarUI - /// - /// - /// - public partial class BasicMenuBarUI : Javax.Swing.Plaf.MenuBarUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicMenuBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicMenuBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicMenuItemUI - /// - /// - /// - public partial class BasicMenuItemUI : Javax.Swing.Plaf.MenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicMenuUI - /// - /// - /// - public partial class BasicMenuUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicMenuUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicMenuUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ChangeHandler - /// - /// - /// - public partial class ChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuUI$ChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicOptionPaneUI - /// - /// - /// - public partial class BasicOptionPaneUI : Javax.Swing.Plaf.OptionPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicOptionPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicOptionPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicOptionPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ButtonAreaLayout - /// - /// - /// - public partial class ButtonAreaLayout : Java.Awt.LayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicOptionPaneUI$ButtonAreaLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ButtonAreaLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ButtonAreaLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicOptionPaneUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicPanelUI - /// - /// - /// - public partial class BasicPanelUI : Javax.Swing.Plaf.PanelUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicPanelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicPanelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicPanelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicPasswordFieldUI - /// - /// - /// - public partial class BasicPasswordFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicPasswordFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicPasswordFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicPasswordFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicPopupMenuSeparatorUI - /// - /// - /// - public partial class BasicPopupMenuSeparatorUI : Javax.Swing.Plaf.Basic.BasicSeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicPopupMenuSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicPopupMenuSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicPopupMenuSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicPopupMenuUI - /// - /// - /// - public partial class BasicPopupMenuUI : Javax.Swing.Plaf.PopupMenuUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicPopupMenuUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicPopupMenuUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicPopupMenuUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicProgressBarUI - /// - /// - /// - public partial class BasicProgressBarUI : Javax.Swing.Plaf.ProgressBarUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicProgressBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicProgressBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicProgressBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ChangeHandler - /// - /// - /// - public partial class ChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicProgressBarUI$ChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicRadioButtonMenuItemUI - /// - /// - /// - public partial class BasicRadioButtonMenuItemUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicRadioButtonMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicRadioButtonMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicRadioButtonMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicRadioButtonUI - /// - /// - /// - public partial class BasicRadioButtonUI : Javax.Swing.Plaf.Basic.BasicToggleButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicRadioButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicRadioButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicRadioButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicRootPaneUI - /// - /// - /// - public partial class BasicRootPaneUI : Javax.Swing.Plaf.RootPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicRootPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicRootPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicRootPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicScrollBarUI - /// - /// - /// - public partial class BasicScrollBarUI : Javax.Swing.Plaf.ScrollBarUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicScrollBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicScrollBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollBarUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicScrollPaneUI - /// - /// - /// - public partial class BasicScrollPaneUI : Javax.Swing.Plaf.ScrollPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicScrollPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicScrollPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollPaneUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ViewportChangeHandler - /// - /// - /// - public partial class ViewportChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollPaneUI$ViewportChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ViewportChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ViewportChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicSeparatorUI - /// - /// - /// - public partial class BasicSeparatorUI : Javax.Swing.Plaf.SeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicSliderUI - /// - /// - /// - public partial class BasicSliderUI : Javax.Swing.Plaf.SliderUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicSliderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicSliderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ActionScroller - /// - /// - /// - public partial class ActionScroller : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$ActionScroller"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ActionScroller() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ActionScroller(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChangeHandler - /// - /// - /// - public partial class ChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$ChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FocusHandler - /// - /// - /// - public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$FocusHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FocusHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicSpinnerUI - /// - /// - /// - public partial class BasicSpinnerUI : Javax.Swing.Plaf.SpinnerUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSpinnerUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicSpinnerUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicSpinnerUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicSplitPaneDivider - /// - /// - /// - public partial class BasicSplitPaneDivider : Java.Awt.Container - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneDivider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicSplitPaneDivider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicSplitPaneDivider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicSplitPaneUI - /// - /// - /// - public partial class BasicSplitPaneUI : Javax.Swing.Plaf.SplitPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicSplitPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicSplitPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BasicHorizontalLayoutManager - /// - /// - /// - public partial class BasicHorizontalLayoutManager : Java.Awt.LayoutManager2 - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$BasicHorizontalLayoutManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicHorizontalLayoutManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicHorizontalLayoutManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicVerticalLayoutManager - /// - /// - /// - public partial class BasicVerticalLayoutManager : Javax.Swing.Plaf.Basic.BasicSplitPaneUI.BasicHorizontalLayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$BasicVerticalLayoutManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicVerticalLayoutManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicVerticalLayoutManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyboardDownRightHandler - /// - /// - /// - public partial class KeyboardDownRightHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardDownRightHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyboardDownRightHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyboardDownRightHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyboardEndHandler - /// - /// - /// - public partial class KeyboardEndHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardEndHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyboardEndHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyboardEndHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyboardHomeHandler - /// - /// - /// - public partial class KeyboardHomeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardHomeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyboardHomeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyboardHomeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyboardResizeToggleHandler - /// - /// - /// - public partial class KeyboardResizeToggleHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardResizeToggleHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyboardResizeToggleHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyboardResizeToggleHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyboardUpLeftHandler - /// - /// - /// - public partial class KeyboardUpLeftHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardUpLeftHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyboardUpLeftHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyboardUpLeftHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyHandler - /// - /// - /// - public partial class PropertyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$PropertyHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicTabbedPaneUI - /// - /// - /// - public partial class BasicTabbedPaneUI : Javax.Swing.Plaf.TabbedPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTabbedPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTabbedPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabbedPaneLayout - /// - /// - /// - public partial class TabbedPaneLayout : Java.Awt.LayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI$TabbedPaneLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabbedPaneLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabbedPaneLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabSelectionHandler - /// - /// - /// - public partial class TabSelectionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI$TabSelectionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabSelectionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabSelectionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicTableHeaderUI - /// - /// - /// - public partial class BasicTableHeaderUI : Javax.Swing.Plaf.TableHeaderUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableHeaderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTableHeaderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTableHeaderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region MouseInputHandler - /// - /// - /// - public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableHeaderUI$MouseInputHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInputHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseInputHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicTableUI - /// - /// - /// - public partial class BasicTableUI : Javax.Swing.Plaf.TableUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTableUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTableUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FocusHandler - /// - /// - /// - public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI$FocusHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FocusHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyHandler - /// - /// - /// - public partial class KeyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI$KeyHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseInputHandler - /// - /// - /// - public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI$MouseInputHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInputHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseInputHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicTextAreaUI - /// - /// - /// - public partial class BasicTextAreaUI : Javax.Swing.Plaf.Basic.BasicTextUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextAreaUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTextAreaUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTextAreaUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicTextFieldUI - /// - /// - /// - public partial class BasicTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTextFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTextFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicTextPaneUI - /// - /// - /// - public partial class BasicTextPaneUI : Javax.Swing.Plaf.Basic.BasicEditorPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTextPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTextPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicTextUI - /// - /// - /// - public partial class BasicTextUI : Javax.Swing.Plaf.TextUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("BasicTextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicTextUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("BasicTextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public BasicTextUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BasicCaret - /// - /// - /// - public partial class BasicCaret : Javax.Swing.Text.DefaultCaret - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextUI$BasicCaret"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicCaret() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicCaret(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BasicHighlighter - /// - /// - /// - public partial class BasicHighlighter : Javax.Swing.Text.DefaultHighlighter - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextUI$BasicHighlighter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicHighlighter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicHighlighter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicToggleButtonUI - /// - /// - /// - public partial class BasicToggleButtonUI : Javax.Swing.Plaf.Basic.BasicButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicToggleButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicToggleButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicToggleButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicToolBarSeparatorUI - /// - /// - /// - public partial class BasicToolBarSeparatorUI : Javax.Swing.Plaf.Basic.BasicSeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicToolBarSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicToolBarSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicToolBarSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicToolBarUI - /// - /// - /// - public partial class BasicToolBarUI : Javax.Swing.Plaf.ToolBarUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicToolBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicToolBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicToolBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicToolTipUI - /// - /// - /// - public partial class BasicToolTipUI : Javax.Swing.Plaf.ToolTipUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicToolTipUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicToolTipUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicToolTipUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BasicTreeUI - /// - /// - /// - public partial class BasicTreeUI : Javax.Swing.Plaf.TreeUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicTreeUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicTreeUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CellEditorHandler - /// - /// - /// - public partial class CellEditorHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$CellEditorHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CellEditorHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CellEditorHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FocusHandler - /// - /// - /// - public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$FocusHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FocusHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FocusHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseInputHandler - /// - /// - /// - public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$MouseInputHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MouseInputHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MouseInputHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NodeDimensionsHandler - /// - /// - /// - public partial class NodeDimensionsHandler : Javax.Swing.Tree.AbstractLayoutCache.NodeDimensions - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$NodeDimensionsHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NodeDimensionsHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NodeDimensionsHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PropertyChangeHandler - /// - /// - /// - public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$PropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SelectionModelPropertyChangeHandler - /// - /// - /// - public partial class SelectionModelPropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$SelectionModelPropertyChangeHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SelectionModelPropertyChangeHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SelectionModelPropertyChangeHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeCancelEditingAction - /// - /// - /// - public partial class TreeCancelEditingAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeCancelEditingAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeCancelEditingAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeCancelEditingAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeExpansionHandler - /// - /// - /// - public partial class TreeExpansionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeExpansionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeExpansionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeExpansionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeHomeAction - /// - /// - /// - public partial class TreeHomeAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeHomeAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeHomeAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeHomeAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeIncrementAction - /// - /// - /// - public partial class TreeIncrementAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeIncrementAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeIncrementAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeIncrementAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeModelHandler - /// - /// - /// - public partial class TreeModelHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeModelHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeModelHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeModelHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreePageAction - /// - /// - /// - public partial class TreePageAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreePageAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreePageAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreePageAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeSelectionHandler - /// - /// - /// - public partial class TreeSelectionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeSelectionHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeSelectionHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeSelectionHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeToggleAction - /// - /// - /// - public partial class TreeToggleAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeToggleAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeToggleAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeToggleAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeTraverseAction - /// - /// - /// - public partial class TreeTraverseAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeTraverseAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeTraverseAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeTraverseAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BasicViewportUI - /// - /// - /// - public partial class BasicViewportUI : Javax.Swing.Plaf.ViewportUI - { - const string _bridgeClassName = "javax.swing.plaf.basic.BasicViewportUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BasicViewportUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BasicViewportUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ComboPopup - /// - /// - /// - public partial class ComboPopup : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.basic.ComboPopup"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ComboPopup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboPopup() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ComboPopup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ComboPopup(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultMenuLayout - /// - /// - /// - public partial class DefaultMenuLayout : Javax.Swing.BoxLayout - { - const string _bridgeClassName = "javax.swing.plaf.basic.DefaultMenuLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultMenuLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultMenuLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicArrowButton.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicArrowButton.cs index 6869f07237..8e3adee01f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicArrowButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicArrowButton.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicArrowButton + #region BasicArrowButton declaration + /// + /// + /// + public partial class BasicArrowButton : Javax.Swing.JButton + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicArrowButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicArrowButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicArrowButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicArrowButton implementation public partial class BasicArrowButton { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicBorders.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicBorders.cs index 6fe45dc6f5..d3991b0b6e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicBorders.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicBorders.cs @@ -25,7 +25,412 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicBorders + #region BasicBorders declaration + /// + /// + /// + public partial class BasicBorders : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicBorders() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicBorders(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ButtonBorder declaration + /// + /// + /// + public partial class ButtonBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$ButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FieldBorder declaration + /// + /// + /// + public partial class FieldBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$FieldBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FieldBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FieldBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MarginBorder declaration + /// + /// + /// + public partial class MarginBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$MarginBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MarginBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MarginBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MenuBarBorder declaration + /// + /// + /// + public partial class MenuBarBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$MenuBarBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuBarBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuBarBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region RadioButtonBorder declaration + /// + /// + /// + public partial class RadioButtonBorder : Javax.Swing.Plaf.Basic.BasicBorders.ButtonBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$RadioButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RadioButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RadioButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region RolloverButtonBorder declaration + /// + /// + /// + public partial class RolloverButtonBorder : Javax.Swing.Plaf.Basic.BasicBorders.ButtonBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$RolloverButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RolloverButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RolloverButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region SplitPaneBorder declaration + /// + /// + /// + public partial class SplitPaneBorder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$SplitPaneBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SplitPaneBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SplitPaneBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ToggleButtonBorder declaration + /// + /// + /// + public partial class ToggleButtonBorder : Javax.Swing.Plaf.Basic.BasicBorders.ButtonBorder + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicBorders$ToggleButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToggleButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ToggleButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicBorders implementation public partial class BasicBorders { #region Constructors @@ -112,7 +517,7 @@ public static Javax.Swing.Border.Border TextFieldBorder #endregion #region Nested classes - #region ButtonBorder + #region ButtonBorder implementation public partial class ButtonBorder { #region Constructors @@ -158,7 +563,7 @@ public ButtonBorder(Java.Awt.Color arg0, Java.Awt.Color arg1, Java.Awt.Color arg } #endregion - #region FieldBorder + #region FieldBorder implementation public partial class FieldBorder { #region Constructors @@ -204,7 +609,7 @@ public FieldBorder(Java.Awt.Color arg0, Java.Awt.Color arg1, Java.Awt.Color arg2 } #endregion - #region MarginBorder + #region MarginBorder implementation public partial class MarginBorder { #region Constructors @@ -239,7 +644,7 @@ public partial class MarginBorder } #endregion - #region MenuBarBorder + #region MenuBarBorder implementation public partial class MenuBarBorder { #region Constructors @@ -283,7 +688,7 @@ public MenuBarBorder(Java.Awt.Color arg0, Java.Awt.Color arg1) } #endregion - #region RadioButtonBorder + #region RadioButtonBorder implementation public partial class RadioButtonBorder { #region Constructors @@ -325,7 +730,7 @@ public RadioButtonBorder(Java.Awt.Color arg0, Java.Awt.Color arg1, Java.Awt.Colo } #endregion - #region RolloverButtonBorder + #region RolloverButtonBorder implementation public partial class RolloverButtonBorder { #region Constructors @@ -367,7 +772,7 @@ public RolloverButtonBorder(Java.Awt.Color arg0, Java.Awt.Color arg1, Java.Awt.C } #endregion - #region SplitPaneBorder + #region SplitPaneBorder implementation public partial class SplitPaneBorder { #region Constructors @@ -445,7 +850,7 @@ public void PaintBorder(Java.Awt.Component arg0, Java.Awt.Graphics arg1, int arg } #endregion - #region ToggleButtonBorder + #region ToggleButtonBorder implementation public partial class ToggleButtonBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicButtonUI.cs index cdaabf9218..4a80e006a3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicButtonUI + #region BasicButtonUI declaration + /// + /// + /// + public partial class BasicButtonUI : Javax.Swing.Plaf.ButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicButtonUI implementation public partial class BasicButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxMenuItemUI.cs index a3928b279d..4d1e925abd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicCheckBoxMenuItemUI + #region BasicCheckBoxMenuItemUI declaration + /// + /// + /// + public partial class BasicCheckBoxMenuItemUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicCheckBoxMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicCheckBoxMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicCheckBoxMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicCheckBoxMenuItemUI implementation public partial class BasicCheckBoxMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxUI.cs index de8f6c9a07..756f5308dc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicCheckBoxUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicCheckBoxUI + #region BasicCheckBoxUI declaration + /// + /// + /// + public partial class BasicCheckBoxUI : Javax.Swing.Plaf.Basic.BasicRadioButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicCheckBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicCheckBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicCheckBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicCheckBoxUI implementation public partial class BasicCheckBoxUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicColorChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicColorChooserUI.cs index 787d0a0af7..e0df860653 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicColorChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicColorChooserUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicColorChooserUI + #region BasicColorChooserUI declaration + /// + /// + /// + public partial class BasicColorChooserUI : Javax.Swing.Plaf.ColorChooserUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicColorChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicColorChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicColorChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PropertyHandler declaration + /// + /// + /// + public partial class PropertyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicColorChooserUI$PropertyHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicColorChooserUI implementation public partial class BasicColorChooserUI { #region Constructors @@ -49,7 +139,7 @@ public partial class BasicColorChooserUI #endregion #region Nested classes - #region PropertyHandler + #region PropertyHandler implementation public partial class PropertyHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxEditor.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxEditor.cs index ed1c5f4441..a2e110e905 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxEditor.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicComboBoxEditor + #region BasicComboBoxEditor declaration + /// + /// + /// + public partial class BasicComboBoxEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicComboBoxEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicComboBoxEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region UIResource declaration + /// + /// + /// + public partial class UIResource : Javax.Swing.Plaf.Basic.BasicComboBoxEditor + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxEditor$UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicComboBoxEditor implementation public partial class BasicComboBoxEditor { #region Constructors @@ -110,7 +200,7 @@ public void SelectAll() #endregion #region Nested classes - #region UIResource + #region UIResource implementation public partial class UIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxRenderer.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxRenderer.cs index 510b946067..2ab7c77443 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxRenderer.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicComboBoxRenderer + #region BasicComboBoxRenderer declaration + /// + /// + /// + public partial class BasicComboBoxRenderer : Javax.Swing.JLabel + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicComboBoxRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicComboBoxRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region UIResource declaration + /// + /// + /// + public partial class UIResource : Javax.Swing.Plaf.Basic.BasicComboBoxRenderer + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxRenderer$UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicComboBoxRenderer implementation public partial class BasicComboBoxRenderer { #region Constructors @@ -70,7 +160,7 @@ public Java.Awt.Component GetListCellRendererComponent(Javax.Swing.JList #endregion #region Nested classes - #region UIResource + #region UIResource implementation public partial class UIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxUI.cs index 826a7bf969..5c54cf0f8f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboBoxUI.cs @@ -25,7 +25,277 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicComboBoxUI + #region BasicComboBoxUI declaration + /// + /// + /// + public partial class BasicComboBoxUI : Javax.Swing.Plaf.ComboBoxUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicComboBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicComboBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ComboBoxLayoutManager declaration + /// + /// + /// + public partial class ComboBoxLayoutManager : Java.Awt.LayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$ComboBoxLayoutManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComboBoxLayoutManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComboBoxLayoutManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FocusHandler declaration + /// + /// + /// + public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$FocusHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FocusHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ItemHandler declaration + /// + /// + /// + public partial class ItemHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$ItemHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ItemHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ItemHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListDataHandler declaration + /// + /// + /// + public partial class ListDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$ListDataHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListDataHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListDataHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboBoxUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicComboBoxUI implementation public partial class BasicComboBoxUI { #region Constructors @@ -97,7 +367,7 @@ public void UnconfigureArrowButton() #endregion #region Nested classes - #region ComboBoxLayoutManager + #region ComboBoxLayoutManager implementation public partial class ComboBoxLayoutManager { #region Constructors @@ -179,7 +449,7 @@ public void RemoveLayoutComponent(Java.Awt.Component arg0) } #endregion - #region FocusHandler + #region FocusHandler implementation public partial class FocusHandler { #region Constructors @@ -238,7 +508,7 @@ public void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region ItemHandler + #region ItemHandler implementation public partial class ItemHandler { #region Constructors @@ -289,7 +559,7 @@ public void ItemStateChanged(Java.Awt.EventNs.ItemEvent arg0) } #endregion - #region ListDataHandler + #region ListDataHandler implementation public partial class ListDataHandler { #region Constructors @@ -356,7 +626,7 @@ public void IntervalRemoved(Javax.Swing.Event.ListDataEvent arg0) } #endregion - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboPopup.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboPopup.cs index 84abca529a..5e54eedfed 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboPopup.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicComboPopup.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicComboPopup + #region BasicComboPopup declaration + /// + /// + /// + public partial class BasicComboPopup : Javax.Swing.JPopupMenu + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboPopup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicComboPopup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicComboPopup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ListDataHandler declaration + /// + /// + /// + public partial class ListDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicComboPopup$ListDataHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListDataHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListDataHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicComboPopup implementation public partial class BasicComboPopup { #region Constructors @@ -96,7 +186,7 @@ public void UninstallingUI() #endregion #region Nested classes - #region ListDataHandler + #region ListDataHandler implementation public partial class ListDataHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopIconUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopIconUI.cs index 204a044d3a..b4501bd5e6 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopIconUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopIconUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicDesktopIconUI + #region BasicDesktopIconUI declaration + /// + /// + /// + public partial class BasicDesktopIconUI : Javax.Swing.Plaf.DesktopIconUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicDesktopIconUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicDesktopIconUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicDesktopIconUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicDesktopIconUI implementation public partial class BasicDesktopIconUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopPaneUI.cs index ef24655687..3efacb8c95 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDesktopPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicDesktopPaneUI + #region BasicDesktopPaneUI declaration + /// + /// + /// + public partial class BasicDesktopPaneUI : Javax.Swing.Plaf.DesktopPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicDesktopPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicDesktopPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicDesktopPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicDesktopPaneUI implementation public partial class BasicDesktopPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDirectoryModel.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDirectoryModel.cs index 5b69103354..36bf140b88 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDirectoryModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicDirectoryModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicDirectoryModel + #region BasicDirectoryModel declaration + /// + /// + /// + public partial class BasicDirectoryModel : Javax.Swing.AbstractListModel + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicDirectoryModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicDirectoryModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicDirectoryModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicDirectoryModel implementation public partial class BasicDirectoryModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicEditorPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicEditorPaneUI.cs index 16ad6a5409..79f995410e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicEditorPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicEditorPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicEditorPaneUI + #region BasicEditorPaneUI declaration + /// + /// + /// + public partial class BasicEditorPaneUI : Javax.Swing.Plaf.Basic.BasicTextUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicEditorPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicEditorPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicEditorPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicEditorPaneUI implementation public partial class BasicEditorPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFileChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFileChooserUI.cs index 2fcb525257..e038ccf2d5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFileChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFileChooserUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicFileChooserUI + #region BasicFileChooserUI declaration + /// + /// + /// + public partial class BasicFileChooserUI : Javax.Swing.Plaf.FileChooserUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicFileChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicFileChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicFileChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicFileChooserUI implementation public partial class BasicFileChooserUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFormattedTextFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFormattedTextFieldUI.cs index e1fa6b3df0..96f95490cf 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFormattedTextFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicFormattedTextFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicFormattedTextFieldUI + #region BasicFormattedTextFieldUI declaration + /// + /// + /// + public partial class BasicFormattedTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicFormattedTextFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicFormattedTextFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicFormattedTextFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicFormattedTextFieldUI implementation public partial class BasicFormattedTextFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicGraphicsUtils.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicGraphicsUtils.cs index ffe8d7156a..e18c718102 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicGraphicsUtils.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicGraphicsUtils.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicGraphicsUtils + #region BasicGraphicsUtils declaration + /// + /// + /// + public partial class BasicGraphicsUtils : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicGraphicsUtils"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicGraphicsUtils() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicGraphicsUtils(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicGraphicsUtils implementation public partial class BasicGraphicsUtils { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicHTML.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicHTML.cs index df2b2825f1..acefc0fb44 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicHTML.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicHTML.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicHTML + #region BasicHTML declaration + /// + /// + /// + public partial class BasicHTML : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicHTML"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicHTML() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicHTML(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicHTML implementation public partial class BasicHTML { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicIconFactory.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicIconFactory.cs index 98afee278b..41fa14e3d7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicIconFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicIconFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicIconFactory + #region BasicIconFactory declaration + /// + /// + /// + public partial class BasicIconFactory : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicIconFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicIconFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicIconFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicIconFactory implementation public partial class BasicIconFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameTitlePane.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameTitlePane.cs index 38e81d8d0e..306bd94c9a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameTitlePane.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameTitlePane.cs @@ -25,7 +25,457 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicInternalFrameTitlePane + #region BasicInternalFrameTitlePane declaration + /// + /// + /// + public partial class BasicInternalFrameTitlePane : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicInternalFrameTitlePane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicInternalFrameTitlePane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CloseAction declaration + /// + /// + /// + public partial class CloseAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$CloseAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CloseAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CloseAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IconifyAction declaration + /// + /// + /// + public partial class IconifyAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$IconifyAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IconifyAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IconifyAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MaximizeAction declaration + /// + /// + /// + public partial class MaximizeAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$MaximizeAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MaximizeAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MaximizeAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MoveAction declaration + /// + /// + /// + public partial class MoveAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$MoveAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MoveAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MoveAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RestoreAction declaration + /// + /// + /// + public partial class RestoreAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$RestoreAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RestoreAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RestoreAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SizeAction declaration + /// + /// + /// + public partial class SizeAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$SizeAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SizeAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SizeAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SystemMenuBar declaration + /// + /// + /// + public partial class SystemMenuBar : Javax.Swing.JMenuBar + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$SystemMenuBar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SystemMenuBar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SystemMenuBar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TitlePaneLayout declaration + /// + /// + /// + public partial class TitlePaneLayout : Java.Awt.LayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameTitlePane$TitlePaneLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TitlePaneLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TitlePaneLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicInternalFrameTitlePane implementation public partial class BasicInternalFrameTitlePane { #region Constructors @@ -65,7 +515,7 @@ public void PaintComponent(Java.Awt.Graphics arg0) #endregion #region Nested classes - #region CloseAction + #region CloseAction implementation public partial class CloseAction { #region Constructors @@ -104,7 +554,7 @@ public CloseAction(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region IconifyAction + #region IconifyAction implementation public partial class IconifyAction { #region Constructors @@ -143,7 +593,7 @@ public IconifyAction(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region MaximizeAction + #region MaximizeAction implementation public partial class MaximizeAction { #region Constructors @@ -182,7 +632,7 @@ public MaximizeAction(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region MoveAction + #region MoveAction implementation public partial class MoveAction { #region Constructors @@ -221,7 +671,7 @@ public MoveAction(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors @@ -272,7 +722,7 @@ public void PropertyChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region RestoreAction + #region RestoreAction implementation public partial class RestoreAction { #region Constructors @@ -311,7 +761,7 @@ public RestoreAction(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region SizeAction + #region SizeAction implementation public partial class SizeAction { #region Constructors @@ -350,7 +800,7 @@ public SizeAction(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region SystemMenuBar + #region SystemMenuBar implementation public partial class SystemMenuBar { #region Constructors @@ -389,7 +839,7 @@ public SystemMenuBar(Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane arg0) } #endregion - #region TitlePaneLayout + #region TitlePaneLayout implementation public partial class TitlePaneLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameUI.cs index 29aa574746..83a7a4d12c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicInternalFrameUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicInternalFrameUI + #region BasicInternalFrameUI declaration + /// + /// + /// + public partial class BasicInternalFrameUI : Javax.Swing.Plaf.InternalFrameUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicInternalFrameUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicInternalFrameUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region InternalFrameLayout declaration + /// + /// + /// + public partial class InternalFrameLayout : Java.Awt.LayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicInternalFrameUI$InternalFrameLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InternalFrameLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InternalFrameLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicInternalFrameUI implementation public partial class BasicInternalFrameUI { #region Constructors @@ -93,7 +183,7 @@ public bool IsKeyBindingActive() #endregion #region Nested classes - #region InternalFrameLayout + #region InternalFrameLayout implementation public partial class InternalFrameLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLabelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLabelUI.cs index dec4787bba..f7c573695f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLabelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLabelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicLabelUI + #region BasicLabelUI declaration + /// + /// + /// + public partial class BasicLabelUI : Javax.Swing.Plaf.LabelUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicLabelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicLabelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicLabelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicLabelUI implementation public partial class BasicLabelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicListUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicListUI.cs index f44b0c15ad..9a1acbef2d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicListUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicListUI.cs @@ -25,7 +25,277 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicListUI + #region BasicListUI declaration + /// + /// + /// + public partial class BasicListUI : Javax.Swing.Plaf.ListUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicListUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicListUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FocusHandler declaration + /// + /// + /// + public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$FocusHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FocusHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListDataHandler declaration + /// + /// + /// + public partial class ListDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$ListDataHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListDataHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListDataHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListSelectionHandler declaration + /// + /// + /// + public partial class ListSelectionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$ListSelectionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListSelectionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListSelectionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseInputHandler declaration + /// + /// + /// + public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$MouseInputHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInputHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseInputHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicListUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicListUI implementation public partial class BasicListUI { #region Constructors @@ -49,7 +319,7 @@ public partial class BasicListUI #endregion #region Nested classes - #region FocusHandler + #region FocusHandler implementation public partial class FocusHandler { #region Constructors @@ -108,7 +378,7 @@ public void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region ListDataHandler + #region ListDataHandler implementation public partial class ListDataHandler { #region Constructors @@ -175,7 +445,7 @@ public void IntervalRemoved(Javax.Swing.Event.ListDataEvent arg0) } #endregion - #region ListSelectionHandler + #region ListSelectionHandler implementation public partial class ListSelectionHandler { #region Constructors @@ -226,7 +496,7 @@ public void ValueChanged(Javax.Swing.Event.ListSelectionEvent arg0) } #endregion - #region MouseInputHandler + #region MouseInputHandler implementation public partial class MouseInputHandler { #region Constructors @@ -325,7 +595,7 @@ public void MouseReleased(Java.Awt.EventNs.MouseEvent arg0) } #endregion - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLookAndFeel.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLookAndFeel.cs index 8cebaf22c0..ca4d16a81b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLookAndFeel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicLookAndFeel.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicLookAndFeel + #region BasicLookAndFeel declaration + /// + /// + /// + public partial class BasicLookAndFeel : Javax.Swing.LookAndFeel + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicLookAndFeel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BasicLookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicLookAndFeel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BasicLookAndFeel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicLookAndFeel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicLookAndFeel implementation public partial class BasicLookAndFeel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuBarUI.cs index 0a4aa84293..8608679bd2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicMenuBarUI + #region BasicMenuBarUI declaration + /// + /// + /// + public partial class BasicMenuBarUI : Javax.Swing.Plaf.MenuBarUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicMenuBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicMenuBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicMenuBarUI implementation public partial class BasicMenuBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuItemUI.cs index e71af9c808..7d55176f4f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicMenuItemUI + #region BasicMenuItemUI declaration + /// + /// + /// + public partial class BasicMenuItemUI : Javax.Swing.Plaf.MenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicMenuItemUI implementation public partial class BasicMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuUI.cs index 3b6227bb44..8428c00145 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicMenuUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicMenuUI + #region BasicMenuUI declaration + /// + /// + /// + public partial class BasicMenuUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicMenuUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicMenuUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ChangeHandler declaration + /// + /// + /// + public partial class ChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicMenuUI$ChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicMenuUI implementation public partial class BasicMenuUI { #region Constructors @@ -49,7 +139,7 @@ public partial class BasicMenuUI #endregion #region Nested classes - #region ChangeHandler + #region ChangeHandler implementation public partial class ChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicOptionPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicOptionPaneUI.cs index a4ff476da3..1727b3b973 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicOptionPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicOptionPaneUI.cs @@ -25,7 +25,142 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicOptionPaneUI + #region BasicOptionPaneUI declaration + /// + /// + /// + public partial class BasicOptionPaneUI : Javax.Swing.Plaf.OptionPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicOptionPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicOptionPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicOptionPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ButtonAreaLayout declaration + /// + /// + /// + public partial class ButtonAreaLayout : Java.Awt.LayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicOptionPaneUI$ButtonAreaLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ButtonAreaLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ButtonAreaLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicOptionPaneUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicOptionPaneUI implementation public partial class BasicOptionPaneUI { #region Constructors @@ -68,7 +203,7 @@ public Java.Awt.Dimension MinimumOptionPaneSize #endregion #region Nested classes - #region ButtonAreaLayout + #region ButtonAreaLayout implementation public partial class ButtonAreaLayout { #region Constructors @@ -172,7 +307,7 @@ public void RemoveLayoutComponent(Java.Awt.Component arg0) } #endregion - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPanelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPanelUI.cs index 982efe84a8..f78c89af2b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPanelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPanelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicPanelUI + #region BasicPanelUI declaration + /// + /// + /// + public partial class BasicPanelUI : Javax.Swing.Plaf.PanelUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicPanelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicPanelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicPanelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicPanelUI implementation public partial class BasicPanelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPasswordFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPasswordFieldUI.cs index 5d18d2c1bb..c3e0173b10 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPasswordFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPasswordFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicPasswordFieldUI + #region BasicPasswordFieldUI declaration + /// + /// + /// + public partial class BasicPasswordFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicPasswordFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicPasswordFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicPasswordFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicPasswordFieldUI implementation public partial class BasicPasswordFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuSeparatorUI.cs index f6a1f53d73..718ba80eb0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicPopupMenuSeparatorUI + #region BasicPopupMenuSeparatorUI declaration + /// + /// + /// + public partial class BasicPopupMenuSeparatorUI : Javax.Swing.Plaf.Basic.BasicSeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicPopupMenuSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicPopupMenuSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicPopupMenuSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicPopupMenuSeparatorUI implementation public partial class BasicPopupMenuSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuUI.cs index 2bb7667217..5a8dc9a2e8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicPopupMenuUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicPopupMenuUI + #region BasicPopupMenuUI declaration + /// + /// + /// + public partial class BasicPopupMenuUI : Javax.Swing.Plaf.PopupMenuUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicPopupMenuUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicPopupMenuUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicPopupMenuUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicPopupMenuUI implementation public partial class BasicPopupMenuUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicProgressBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicProgressBarUI.cs index 84bf2d3b1b..ad84a160a3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicProgressBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicProgressBarUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicProgressBarUI + #region BasicProgressBarUI declaration + /// + /// + /// + public partial class BasicProgressBarUI : Javax.Swing.Plaf.ProgressBarUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicProgressBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicProgressBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicProgressBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ChangeHandler declaration + /// + /// + /// + public partial class ChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicProgressBarUI$ChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicProgressBarUI implementation public partial class BasicProgressBarUI { #region Constructors @@ -49,7 +139,7 @@ public partial class BasicProgressBarUI #endregion #region Nested classes - #region ChangeHandler + #region ChangeHandler implementation public partial class ChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonMenuItemUI.cs index e082367f9d..97039f7120 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicRadioButtonMenuItemUI + #region BasicRadioButtonMenuItemUI declaration + /// + /// + /// + public partial class BasicRadioButtonMenuItemUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicRadioButtonMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicRadioButtonMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicRadioButtonMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicRadioButtonMenuItemUI implementation public partial class BasicRadioButtonMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonUI.cs index 66e6d9dc77..ea49a85f0b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRadioButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicRadioButtonUI + #region BasicRadioButtonUI declaration + /// + /// + /// + public partial class BasicRadioButtonUI : Javax.Swing.Plaf.Basic.BasicToggleButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicRadioButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicRadioButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicRadioButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicRadioButtonUI implementation public partial class BasicRadioButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRootPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRootPaneUI.cs index ae775554cb..b40c75ccb5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRootPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicRootPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicRootPaneUI + #region BasicRootPaneUI declaration + /// + /// + /// + public partial class BasicRootPaneUI : Javax.Swing.Plaf.RootPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicRootPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicRootPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicRootPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicRootPaneUI implementation public partial class BasicRootPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollBarUI.cs index f1634525f6..637491735a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollBarUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicScrollBarUI + #region BasicScrollBarUI declaration + /// + /// + /// + public partial class BasicScrollBarUI : Javax.Swing.Plaf.ScrollBarUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicScrollBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicScrollBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollBarUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicScrollBarUI implementation public partial class BasicScrollBarUI { #region Constructors @@ -115,7 +205,7 @@ public void RemoveLayoutComponent(Java.Awt.Component arg0) #endregion #region Nested classes - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollPaneUI.cs index ca4066da12..70c96b5476 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicScrollPaneUI.cs @@ -25,7 +25,142 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicScrollPaneUI + #region BasicScrollPaneUI declaration + /// + /// + /// + public partial class BasicScrollPaneUI : Javax.Swing.Plaf.ScrollPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicScrollPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicScrollPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollPaneUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ViewportChangeHandler declaration + /// + /// + /// + public partial class ViewportChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicScrollPaneUI$ViewportChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ViewportChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ViewportChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicScrollPaneUI implementation public partial class BasicScrollPaneUI { #region Constructors @@ -53,7 +188,7 @@ public partial class BasicScrollPaneUI #endregion #region Nested classes - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors @@ -104,7 +239,7 @@ public void PropertyChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region ViewportChangeHandler + #region ViewportChangeHandler implementation public partial class ViewportChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSeparatorUI.cs index 5bce15e2cb..0856bd12a4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicSeparatorUI + #region BasicSeparatorUI declaration + /// + /// + /// + public partial class BasicSeparatorUI : Javax.Swing.Plaf.SeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicSeparatorUI implementation public partial class BasicSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSliderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSliderUI.cs index f6d058a97c..0e8e854422 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSliderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSliderUI.cs @@ -25,7 +25,232 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicSliderUI + #region BasicSliderUI declaration + /// + /// + /// + public partial class BasicSliderUI : Javax.Swing.Plaf.SliderUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicSliderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicSliderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ActionScroller declaration + /// + /// + /// + public partial class ActionScroller : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$ActionScroller"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ActionScroller() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ActionScroller(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChangeHandler declaration + /// + /// + /// + public partial class ChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$ChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FocusHandler declaration + /// + /// + /// + public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$FocusHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FocusHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSliderUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicSliderUI implementation public partial class BasicSliderUI { #region Constructors @@ -192,7 +417,7 @@ public void SetThumbLocation(int arg0, int arg1) #endregion #region Nested classes - #region ActionScroller + #region ActionScroller implementation public partial class ActionScroller { #region Constructors @@ -234,7 +459,7 @@ public ActionScroller(Javax.Swing.Plaf.Basic.BasicSliderUI arg0, Javax.Swing.JSl } #endregion - #region ChangeHandler + #region ChangeHandler implementation public partial class ChangeHandler { #region Constructors @@ -285,7 +510,7 @@ public void StateChanged(Javax.Swing.Event.ChangeEvent arg0) } #endregion - #region FocusHandler + #region FocusHandler implementation public partial class FocusHandler { #region Constructors @@ -344,7 +569,7 @@ public void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSpinnerUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSpinnerUI.cs index 5e69b44ab2..e0127d0664 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSpinnerUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSpinnerUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicSpinnerUI + #region BasicSpinnerUI declaration + /// + /// + /// + public partial class BasicSpinnerUI : Javax.Swing.Plaf.SpinnerUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSpinnerUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicSpinnerUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicSpinnerUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicSpinnerUI implementation public partial class BasicSpinnerUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneDivider.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneDivider.cs index fbf4f7a45a..e9862e28e5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneDivider.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneDivider.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicSplitPaneDivider + #region BasicSplitPaneDivider declaration + /// + /// + /// + public partial class BasicSplitPaneDivider : Java.Awt.Container + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneDivider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicSplitPaneDivider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicSplitPaneDivider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicSplitPaneDivider implementation public partial class BasicSplitPaneDivider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneUI.cs index 6fbd9a81b8..9c0bcfae50 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicSplitPaneUI.cs @@ -25,7 +25,412 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicSplitPaneUI + #region BasicSplitPaneUI declaration + /// + /// + /// + public partial class BasicSplitPaneUI : Javax.Swing.Plaf.SplitPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicSplitPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicSplitPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BasicHorizontalLayoutManager declaration + /// + /// + /// + public partial class BasicHorizontalLayoutManager : Java.Awt.LayoutManager2 + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$BasicHorizontalLayoutManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicHorizontalLayoutManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicHorizontalLayoutManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicVerticalLayoutManager declaration + /// + /// + /// + public partial class BasicVerticalLayoutManager : Javax.Swing.Plaf.Basic.BasicSplitPaneUI.BasicHorizontalLayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$BasicVerticalLayoutManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicVerticalLayoutManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicVerticalLayoutManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyboardDownRightHandler declaration + /// + /// + /// + public partial class KeyboardDownRightHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardDownRightHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyboardDownRightHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyboardDownRightHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyboardEndHandler declaration + /// + /// + /// + public partial class KeyboardEndHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardEndHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyboardEndHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyboardEndHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyboardHomeHandler declaration + /// + /// + /// + public partial class KeyboardHomeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardHomeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyboardHomeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyboardHomeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyboardResizeToggleHandler declaration + /// + /// + /// + public partial class KeyboardResizeToggleHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardResizeToggleHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyboardResizeToggleHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyboardResizeToggleHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyboardUpLeftHandler declaration + /// + /// + /// + public partial class KeyboardUpLeftHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$KeyboardUpLeftHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyboardUpLeftHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyboardUpLeftHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyHandler declaration + /// + /// + /// + public partial class PropertyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicSplitPaneUI$PropertyHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicSplitPaneUI implementation public partial class BasicSplitPaneUI { #region Constructors @@ -117,7 +522,7 @@ public void SetContinuousLayout(bool arg0) #endregion #region Nested classes - #region BasicHorizontalLayoutManager + #region BasicHorizontalLayoutManager implementation public partial class BasicHorizontalLayoutManager { #region Constructors @@ -242,7 +647,7 @@ public void ResetToPreferredSizes() } #endregion - #region BasicVerticalLayoutManager + #region BasicVerticalLayoutManager implementation public partial class BasicVerticalLayoutManager { #region Constructors @@ -281,7 +686,7 @@ public BasicVerticalLayoutManager(Javax.Swing.Plaf.Basic.BasicSplitPaneUI arg0) } #endregion - #region KeyboardDownRightHandler + #region KeyboardDownRightHandler implementation public partial class KeyboardDownRightHandler { #region Constructors @@ -332,7 +737,7 @@ public void ActionPerformed(Java.Awt.EventNs.ActionEvent arg0) } #endregion - #region KeyboardEndHandler + #region KeyboardEndHandler implementation public partial class KeyboardEndHandler { #region Constructors @@ -383,7 +788,7 @@ public void ActionPerformed(Java.Awt.EventNs.ActionEvent arg0) } #endregion - #region KeyboardHomeHandler + #region KeyboardHomeHandler implementation public partial class KeyboardHomeHandler { #region Constructors @@ -434,7 +839,7 @@ public void ActionPerformed(Java.Awt.EventNs.ActionEvent arg0) } #endregion - #region KeyboardResizeToggleHandler + #region KeyboardResizeToggleHandler implementation public partial class KeyboardResizeToggleHandler { #region Constructors @@ -485,7 +890,7 @@ public void ActionPerformed(Java.Awt.EventNs.ActionEvent arg0) } #endregion - #region KeyboardUpLeftHandler + #region KeyboardUpLeftHandler implementation public partial class KeyboardUpLeftHandler { #region Constructors @@ -536,7 +941,7 @@ public void ActionPerformed(Java.Awt.EventNs.ActionEvent arg0) } #endregion - #region PropertyHandler + #region PropertyHandler implementation public partial class PropertyHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTabbedPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTabbedPaneUI.cs index 8eb9267123..e1b18f14b4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTabbedPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTabbedPaneUI.cs @@ -25,7 +25,187 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTabbedPaneUI + #region BasicTabbedPaneUI declaration + /// + /// + /// + public partial class BasicTabbedPaneUI : Javax.Swing.Plaf.TabbedPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTabbedPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTabbedPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabbedPaneLayout declaration + /// + /// + /// + public partial class TabbedPaneLayout : Java.Awt.LayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI$TabbedPaneLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabbedPaneLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabbedPaneLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabSelectionHandler declaration + /// + /// + /// + public partial class TabSelectionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTabbedPaneUI$TabSelectionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabSelectionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabSelectionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicTabbedPaneUI implementation public partial class BasicTabbedPaneUI { #region Constructors @@ -53,7 +233,7 @@ public partial class BasicTabbedPaneUI #endregion #region Nested classes - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors @@ -104,7 +284,7 @@ public void PropertyChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region TabbedPaneLayout + #region TabbedPaneLayout implementation public partial class TabbedPaneLayout { #region Constructors @@ -193,7 +373,7 @@ public void RemoveLayoutComponent(Java.Awt.Component arg0) } #endregion - #region TabSelectionHandler + #region TabSelectionHandler implementation public partial class TabSelectionHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableHeaderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableHeaderUI.cs index 0e6308b707..8d1dc3fcdc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableHeaderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableHeaderUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTableHeaderUI + #region BasicTableHeaderUI declaration + /// + /// + /// + public partial class BasicTableHeaderUI : Javax.Swing.Plaf.TableHeaderUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableHeaderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTableHeaderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTableHeaderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region MouseInputHandler declaration + /// + /// + /// + public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableHeaderUI$MouseInputHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInputHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseInputHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicTableHeaderUI implementation public partial class BasicTableHeaderUI { #region Constructors @@ -49,7 +139,7 @@ public partial class BasicTableHeaderUI #endregion #region Nested classes - #region MouseInputHandler + #region MouseInputHandler implementation public partial class MouseInputHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableUI.cs index 95dcff8acf..0542c4e89e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTableUI.cs @@ -25,7 +25,187 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTableUI + #region BasicTableUI declaration + /// + /// + /// + public partial class BasicTableUI : Javax.Swing.Plaf.TableUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTableUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTableUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FocusHandler declaration + /// + /// + /// + public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI$FocusHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FocusHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyHandler declaration + /// + /// + /// + public partial class KeyHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI$KeyHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseInputHandler declaration + /// + /// + /// + public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTableUI$MouseInputHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInputHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseInputHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicTableUI implementation public partial class BasicTableUI { #region Constructors @@ -49,7 +229,7 @@ public partial class BasicTableUI #endregion #region Nested classes - #region FocusHandler + #region FocusHandler implementation public partial class FocusHandler { #region Constructors @@ -108,7 +288,7 @@ public void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region KeyHandler + #region KeyHandler implementation public partial class KeyHandler { #region Constructors @@ -175,7 +355,7 @@ public void KeyTyped(Java.Awt.EventNs.KeyEvent arg0) } #endregion - #region MouseInputHandler + #region MouseInputHandler implementation public partial class MouseInputHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextAreaUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextAreaUI.cs index 2a285ada77..93085b9e2e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextAreaUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextAreaUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTextAreaUI + #region BasicTextAreaUI declaration + /// + /// + /// + public partial class BasicTextAreaUI : Javax.Swing.Plaf.Basic.BasicTextUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextAreaUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTextAreaUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTextAreaUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicTextAreaUI implementation public partial class BasicTextAreaUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextFieldUI.cs index 2b8ac77735..4c46309b8d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTextFieldUI + #region BasicTextFieldUI declaration + /// + /// + /// + public partial class BasicTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTextFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTextFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicTextFieldUI implementation public partial class BasicTextFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextPaneUI.cs index b15c3c3e7f..4b19d47bfd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTextPaneUI + #region BasicTextPaneUI declaration + /// + /// + /// + public partial class BasicTextPaneUI : Javax.Swing.Plaf.Basic.BasicEditorPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTextPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTextPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicTextPaneUI implementation public partial class BasicTextPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextUI.cs index 9c352170aa..932fa59816 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTextUI.cs @@ -25,7 +25,144 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTextUI + #region BasicTextUI declaration + /// + /// + /// + public partial class BasicTextUI : Javax.Swing.Plaf.TextUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("BasicTextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicTextUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("BasicTextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public BasicTextUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BasicCaret declaration + /// + /// + /// + public partial class BasicCaret : Javax.Swing.Text.DefaultCaret + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextUI$BasicCaret"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicCaret() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicCaret(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BasicHighlighter declaration + /// + /// + /// + public partial class BasicHighlighter : Javax.Swing.Text.DefaultHighlighter + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTextUI$BasicHighlighter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicHighlighter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicHighlighter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicTextUI implementation public partial class BasicTextUI { #region Constructors @@ -73,7 +210,7 @@ public Javax.Swing.Text.View Create(Javax.Swing.Text.Element arg0) #endregion #region Nested classes - #region BasicCaret + #region BasicCaret implementation public partial class BasicCaret { #region Constructors @@ -108,7 +245,7 @@ public partial class BasicCaret } #endregion - #region BasicHighlighter + #region BasicHighlighter implementation public partial class BasicHighlighter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToggleButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToggleButtonUI.cs index 2f95988c17..9e6bd68c86 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToggleButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToggleButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicToggleButtonUI + #region BasicToggleButtonUI declaration + /// + /// + /// + public partial class BasicToggleButtonUI : Javax.Swing.Plaf.Basic.BasicButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicToggleButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicToggleButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicToggleButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicToggleButtonUI implementation public partial class BasicToggleButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarSeparatorUI.cs index 6e465913dc..4a4b5dec03 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicToolBarSeparatorUI + #region BasicToolBarSeparatorUI declaration + /// + /// + /// + public partial class BasicToolBarSeparatorUI : Javax.Swing.Plaf.Basic.BasicSeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicToolBarSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicToolBarSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicToolBarSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicToolBarSeparatorUI implementation public partial class BasicToolBarSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarUI.cs index 57b4a33137..99fdc8051c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicToolBarUI + #region BasicToolBarUI declaration + /// + /// + /// + public partial class BasicToolBarUI : Javax.Swing.Plaf.ToolBarUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicToolBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicToolBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicToolBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicToolBarUI implementation public partial class BasicToolBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolTipUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolTipUI.cs index ad728e6d4c..769ab67323 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolTipUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicToolTipUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicToolTipUI + #region BasicToolTipUI declaration + /// + /// + /// + public partial class BasicToolTipUI : Javax.Swing.Plaf.ToolTipUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicToolTipUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicToolTipUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicToolTipUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicToolTipUI implementation public partial class BasicToolTipUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTreeUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTreeUI.cs index ff500e38b1..23aaedc50d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTreeUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicTreeUI.cs @@ -25,7 +25,727 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicTreeUI + #region BasicTreeUI declaration + /// + /// + /// + public partial class BasicTreeUI : Javax.Swing.Plaf.TreeUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicTreeUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicTreeUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CellEditorHandler declaration + /// + /// + /// + public partial class CellEditorHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$CellEditorHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CellEditorHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CellEditorHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FocusHandler declaration + /// + /// + /// + public partial class FocusHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$FocusHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FocusHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FocusHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MouseInputHandler declaration + /// + /// + /// + public partial class MouseInputHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$MouseInputHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MouseInputHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MouseInputHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NodeDimensionsHandler declaration + /// + /// + /// + public partial class NodeDimensionsHandler : Javax.Swing.Tree.AbstractLayoutCache.NodeDimensions + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$NodeDimensionsHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NodeDimensionsHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NodeDimensionsHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PropertyChangeHandler declaration + /// + /// + /// + public partial class PropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$PropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SelectionModelPropertyChangeHandler declaration + /// + /// + /// + public partial class SelectionModelPropertyChangeHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$SelectionModelPropertyChangeHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SelectionModelPropertyChangeHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SelectionModelPropertyChangeHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeCancelEditingAction declaration + /// + /// + /// + public partial class TreeCancelEditingAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeCancelEditingAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeCancelEditingAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeCancelEditingAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeExpansionHandler declaration + /// + /// + /// + public partial class TreeExpansionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeExpansionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeExpansionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeExpansionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeHomeAction declaration + /// + /// + /// + public partial class TreeHomeAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeHomeAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeHomeAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeHomeAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeIncrementAction declaration + /// + /// + /// + public partial class TreeIncrementAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeIncrementAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeIncrementAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeIncrementAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeModelHandler declaration + /// + /// + /// + public partial class TreeModelHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeModelHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeModelHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeModelHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreePageAction declaration + /// + /// + /// + public partial class TreePageAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreePageAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreePageAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreePageAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeSelectionHandler declaration + /// + /// + /// + public partial class TreeSelectionHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeSelectionHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeSelectionHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeSelectionHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeToggleAction declaration + /// + /// + /// + public partial class TreeToggleAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeToggleAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeToggleAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeToggleAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeTraverseAction declaration + /// + /// + /// + public partial class TreeTraverseAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicTreeUI$TreeTraverseAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeTraverseAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeTraverseAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BasicTreeUI implementation public partial class BasicTreeUI { #region Constructors @@ -94,7 +814,7 @@ public Java.Awt.Dimension GetPreferredSize(Javax.Swing.JComponent arg0, bool arg #endregion #region Nested classes - #region CellEditorHandler + #region CellEditorHandler implementation public partial class CellEditorHandler { #region Constructors @@ -153,7 +873,7 @@ public void EditingStopped(Javax.Swing.Event.ChangeEvent arg0) } #endregion - #region FocusHandler + #region FocusHandler implementation public partial class FocusHandler { #region Constructors @@ -212,7 +932,7 @@ public void FocusLost(Java.Awt.EventNs.FocusEvent arg0) } #endregion - #region MouseInputHandler + #region MouseInputHandler implementation public partial class MouseInputHandler { #region Constructors @@ -314,7 +1034,7 @@ public void MouseReleased(Java.Awt.EventNs.MouseEvent arg0) } #endregion - #region NodeDimensionsHandler + #region NodeDimensionsHandler implementation public partial class NodeDimensionsHandler { #region Constructors @@ -353,7 +1073,7 @@ public NodeDimensionsHandler(Javax.Swing.Plaf.Basic.BasicTreeUI arg0) } #endregion - #region PropertyChangeHandler + #region PropertyChangeHandler implementation public partial class PropertyChangeHandler { #region Constructors @@ -404,7 +1124,7 @@ public void PropertyChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region SelectionModelPropertyChangeHandler + #region SelectionModelPropertyChangeHandler implementation public partial class SelectionModelPropertyChangeHandler { #region Constructors @@ -455,7 +1175,7 @@ public void PropertyChange(Java.Beans.PropertyChangeEvent arg0) } #endregion - #region TreeCancelEditingAction + #region TreeCancelEditingAction implementation public partial class TreeCancelEditingAction { #region Constructors @@ -495,7 +1215,7 @@ public TreeCancelEditingAction(Javax.Swing.Plaf.Basic.BasicTreeUI arg0, Java.Lan } #endregion - #region TreeExpansionHandler + #region TreeExpansionHandler implementation public partial class TreeExpansionHandler { #region Constructors @@ -554,7 +1274,7 @@ public void TreeExpanded(Javax.Swing.Event.TreeExpansionEvent arg0) } #endregion - #region TreeHomeAction + #region TreeHomeAction implementation public partial class TreeHomeAction { #region Constructors @@ -595,7 +1315,7 @@ public TreeHomeAction(Javax.Swing.Plaf.Basic.BasicTreeUI arg0, int arg1, Java.La } #endregion - #region TreeIncrementAction + #region TreeIncrementAction implementation public partial class TreeIncrementAction { #region Constructors @@ -636,7 +1356,7 @@ public TreeIncrementAction(Javax.Swing.Plaf.Basic.BasicTreeUI arg0, int arg1, Ja } #endregion - #region TreeModelHandler + #region TreeModelHandler implementation public partial class TreeModelHandler { #region Constructors @@ -711,7 +1431,7 @@ public void TreeStructureChanged(Javax.Swing.Event.TreeModelEvent arg0) } #endregion - #region TreePageAction + #region TreePageAction implementation public partial class TreePageAction { #region Constructors @@ -752,7 +1472,7 @@ public TreePageAction(Javax.Swing.Plaf.Basic.BasicTreeUI arg0, int arg1, Java.La } #endregion - #region TreeSelectionHandler + #region TreeSelectionHandler implementation public partial class TreeSelectionHandler { #region Constructors @@ -803,7 +1523,7 @@ public void ValueChanged(Javax.Swing.Event.TreeSelectionEvent arg0) } #endregion - #region TreeToggleAction + #region TreeToggleAction implementation public partial class TreeToggleAction { #region Constructors @@ -843,7 +1563,7 @@ public TreeToggleAction(Javax.Swing.Plaf.Basic.BasicTreeUI arg0, Java.Lang.Strin } #endregion - #region TreeTraverseAction + #region TreeTraverseAction implementation public partial class TreeTraverseAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicViewportUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicViewportUI.cs index d3dd30a3b7..16b5dcd41a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicViewportUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/BasicViewportUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region BasicViewportUI + #region BasicViewportUI declaration + /// + /// + /// + public partial class BasicViewportUI : Javax.Swing.Plaf.ViewportUI + { + const string _bridgeClassName = "javax.swing.plaf.basic.BasicViewportUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BasicViewportUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BasicViewportUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BasicViewportUI implementation public partial class BasicViewportUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/ComboPopup.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/ComboPopup.cs index 95291584f6..cc2a0bc326 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/ComboPopup.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/ComboPopup.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Plaf.Basic { + #region ComboPopup declaration + /// + /// + /// + public partial class ComboPopup : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.basic.ComboPopup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ComboPopup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboPopup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ComboPopup class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboPopup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IComboPopup /// /// .NET interface for TO BE DEFINED FROM USER @@ -76,7 +123,7 @@ public partial interface IComboPopup } #endregion - #region ComboPopup + #region ComboPopup implementation public partial class ComboPopup : Javax.Swing.Plaf.Basic.IComboPopup { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/DefaultMenuLayout.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/DefaultMenuLayout.cs index 17bbd2cf43..f30329a6d1 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/DefaultMenuLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Basic/DefaultMenuLayout.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Basic { - #region DefaultMenuLayout + #region DefaultMenuLayout declaration + /// + /// + /// + public partial class DefaultMenuLayout : Javax.Swing.BoxLayout + { + const string _bridgeClassName = "javax.swing.plaf.basic.DefaultMenuLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultMenuLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultMenuLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultMenuLayout implementation public partial class DefaultMenuLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/BorderUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/BorderUIResource.cs index 482a8d82e2..00fe2c68e7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/BorderUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/BorderUIResource.cs @@ -25,7 +25,367 @@ namespace Javax.Swing.Plaf { - #region BorderUIResource + #region BorderUIResource declaration + /// + /// + /// + public partial class BorderUIResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BevelBorderUIResource declaration + /// + /// + /// + public partial class BevelBorderUIResource : Javax.Swing.Border.BevelBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$BevelBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BevelBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BevelBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CompoundBorderUIResource declaration + /// + /// + /// + public partial class CompoundBorderUIResource : Javax.Swing.Border.CompoundBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$CompoundBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompoundBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompoundBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region EmptyBorderUIResource declaration + /// + /// + /// + public partial class EmptyBorderUIResource : Javax.Swing.Border.EmptyBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$EmptyBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EmptyBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EmptyBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region EtchedBorderUIResource declaration + /// + /// + /// + public partial class EtchedBorderUIResource : Javax.Swing.Border.EtchedBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$EtchedBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EtchedBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EtchedBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region LineBorderUIResource declaration + /// + /// + /// + public partial class LineBorderUIResource : Javax.Swing.Border.LineBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$LineBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LineBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LineBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MatteBorderUIResource declaration + /// + /// + /// + public partial class MatteBorderUIResource : Javax.Swing.Border.MatteBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$MatteBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MatteBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MatteBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TitledBorderUIResource declaration + /// + /// + /// + public partial class TitledBorderUIResource : Javax.Swing.Border.TitledBorder + { + const string _bridgeClassName = "javax.swing.plaf.BorderUIResource$TitledBorderUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TitledBorderUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TitledBorderUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region BorderUIResource implementation public partial class BorderUIResource { #region Constructors @@ -127,7 +487,7 @@ public void PaintBorder(Java.Awt.Component arg0, Java.Awt.Graphics arg1, int arg #endregion #region Nested classes - #region BevelBorderUIResource + #region BevelBorderUIResource implementation public partial class BevelBorderUIResource { #region Constructors @@ -192,7 +552,7 @@ public BevelBorderUIResource(int arg0) } #endregion - #region CompoundBorderUIResource + #region CompoundBorderUIResource implementation public partial class CompoundBorderUIResource { #region Constructors @@ -236,7 +596,7 @@ public CompoundBorderUIResource(Javax.Swing.Border.Border arg0, Javax.Swing.Bord } #endregion - #region EmptyBorderUIResource + #region EmptyBorderUIResource implementation public partial class EmptyBorderUIResource { #region Constructors @@ -290,7 +650,7 @@ public EmptyBorderUIResource(Java.Awt.Insets arg0) } #endregion - #region EtchedBorderUIResource + #region EtchedBorderUIResource implementation public partial class EtchedBorderUIResource { #region Constructors @@ -352,7 +712,7 @@ public EtchedBorderUIResource(Java.Awt.Color arg0, Java.Awt.Color arg1) } #endregion - #region LineBorderUIResource + #region LineBorderUIResource implementation public partial class LineBorderUIResource { #region Constructors @@ -404,7 +764,7 @@ public LineBorderUIResource(Java.Awt.Color arg0) } #endregion - #region MatteBorderUIResource + #region MatteBorderUIResource implementation public partial class MatteBorderUIResource { #region Constructors @@ -471,7 +831,7 @@ public MatteBorderUIResource(Javax.Swing.Icon arg0) } #endregion - #region TitledBorderUIResource + #region TitledBorderUIResource implementation public partial class TitledBorderUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ButtonUI.cs index 5b113a262b..0cb1ad1f24 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ButtonUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ButtonUI + #region ButtonUI declaration + /// + /// + /// + public partial class ButtonUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ButtonUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ButtonUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ButtonUI implementation public partial class ButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ColorChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ColorChooserUI.cs index 67c88d4c27..585cda1414 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ColorChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ColorChooserUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ColorChooserUI + #region ColorChooserUI declaration + /// + /// + /// + public partial class ColorChooserUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ColorChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ColorChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ColorChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorChooserUI implementation public partial class ColorChooserUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ColorUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ColorUIResource.cs index 9d7961187d..711d83f571 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ColorUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ColorUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region ColorUIResource + #region ColorUIResource declaration + /// + /// + /// + public partial class ColorUIResource : Java.Awt.Color + { + const string _bridgeClassName = "javax.swing.plaf.ColorUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorUIResource implementation public partial class ColorUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ComboBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ComboBoxUI.cs index 80f5a4a07f..c2f621a88d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ComboBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ComboBoxUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ComboBoxUI + #region ComboBoxUI declaration + /// + /// + /// + public partial class ComboBoxUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ComboBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ComboBoxUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ComboBoxUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComboBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComboBoxUI implementation public partial class ComboBoxUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentInputMapUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentInputMapUIResource.cs index d5ffee05f5..addcf2772e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentInputMapUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentInputMapUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region ComponentInputMapUIResource + #region ComponentInputMapUIResource declaration + /// + /// + /// + public partial class ComponentInputMapUIResource : Javax.Swing.ComponentInputMap + { + const string _bridgeClassName = "javax.swing.plaf.ComponentInputMapUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentInputMapUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentInputMapUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentInputMapUIResource implementation public partial class ComponentInputMapUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentUI.cs index 55db9559a1..9a02713371 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ComponentUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ComponentUI + #region ComponentUI declaration + /// + /// + /// + public partial class ComponentUI : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.ComponentUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ComponentUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComponentUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ComponentUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ComponentUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentUI implementation public partial class ComponentUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopIconUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopIconUI.cs index 5c8b7c23b6..dddba7e3a0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopIconUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopIconUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region DesktopIconUI + #region DesktopIconUI declaration + /// + /// + /// + public partial class DesktopIconUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.DesktopIconUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DesktopIconUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesktopIconUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DesktopIconUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesktopIconUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DesktopIconUI implementation public partial class DesktopIconUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopPaneUI.cs index ba1e42b4dc..4625017371 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/DesktopPaneUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region DesktopPaneUI + #region DesktopPaneUI declaration + /// + /// + /// + public partial class DesktopPaneUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.DesktopPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DesktopPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesktopPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DesktopPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DesktopPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DesktopPaneUI implementation public partial class DesktopPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/DimensionUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/DimensionUIResource.cs index d7998ad612..31e4b41090 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/DimensionUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/DimensionUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region DimensionUIResource + #region DimensionUIResource declaration + /// + /// + /// + public partial class DimensionUIResource : Java.Awt.Dimension + { + const string _bridgeClassName = "javax.swing.plaf.DimensionUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DimensionUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DimensionUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DimensionUIResource implementation public partial class DimensionUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/FileChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/FileChooserUI.cs index b4a7b887b6..9312efd754 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/FileChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/FileChooserUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region FileChooserUI + #region FileChooserUI declaration + /// + /// + /// + public partial class FileChooserUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.FileChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileChooserUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FileChooserUI implementation public partial class FileChooserUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/FontUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/FontUIResource.cs index b7efd6f370..63d052d351 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/FontUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/FontUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region FontUIResource + #region FontUIResource declaration + /// + /// + /// + public partial class FontUIResource : Java.Awt.Font + { + const string _bridgeClassName = "javax.swing.plaf.FontUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FontUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FontUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FontUIResource implementation public partial class FontUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/IconUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/IconUIResource.cs index 7dcd7ed479..381a4336db 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/IconUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/IconUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region IconUIResource + #region IconUIResource declaration + /// + /// + /// + public partial class IconUIResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.IconUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IconUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IconUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IconUIResource implementation public partial class IconUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/InputMapUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/InputMapUIResource.cs index 7f65962e03..20f36e73aa 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/InputMapUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/InputMapUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region InputMapUIResource + #region InputMapUIResource declaration + /// + /// + /// + public partial class InputMapUIResource : Javax.Swing.InputMap + { + const string _bridgeClassName = "javax.swing.plaf.InputMapUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputMapUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputMapUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputMapUIResource implementation public partial class InputMapUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/InsetsUIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/InsetsUIResource.cs index dc141ccf4c..a55613e83e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/InsetsUIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/InsetsUIResource.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf { - #region InsetsUIResource + #region InsetsUIResource declaration + /// + /// + /// + public partial class InsetsUIResource : Java.Awt.Insets + { + const string _bridgeClassName = "javax.swing.plaf.InsetsUIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InsetsUIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InsetsUIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InsetsUIResource implementation public partial class InsetsUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/InternalFrameUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/InternalFrameUI.cs index c9ca5ca1c9..d7f903555a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/InternalFrameUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/InternalFrameUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region InternalFrameUI + #region InternalFrameUI declaration + /// + /// + /// + public partial class InternalFrameUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.InternalFrameUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("InternalFrameUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InternalFrameUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("InternalFrameUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public InternalFrameUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InternalFrameUI implementation public partial class InternalFrameUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/LabelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/LabelUI.cs index 9861c6d33c..b43b21413a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/LabelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/LabelUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region LabelUI + #region LabelUI declaration + /// + /// + /// + public partial class LabelUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.LabelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LabelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LabelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LabelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LabelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LabelUI implementation public partial class LabelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/LayerUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/LayerUI.cs index 8018543b9d..6431c0e2e9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/LayerUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/LayerUI.cs @@ -25,7 +25,98 @@ namespace Javax.Swing.Plaf { - #region LayerUI + #region LayerUI declaration + /// + /// + /// + public partial class LayerUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.LayerUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LayerUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LayerUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LayerUI declaration + /// + /// + /// + /// + public partial class LayerUI : Javax.Swing.Plaf.ComponentUI where V : Java.Awt.Component + { + const string _bridgeClassName = "javax.swing.plaf.LayerUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LayerUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LayerUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LayerUI implementation public partial class LayerUI { #region Constructors @@ -171,7 +262,7 @@ public void UpdateUI(Javax.Swing.JLayer arg0) } #endregion - #region LayerUI + #region LayerUI implementation public partial class LayerUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ListUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ListUI.cs index ce03b60d4b..b8f9e12dd4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ListUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ListUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ListUI + #region ListUI declaration + /// + /// + /// + public partial class ListUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ListUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ListUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ListUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ListUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListUI implementation public partial class ListUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/MenuBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/MenuBarUI.cs index d84bd6fa24..e307dfdf38 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/MenuBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/MenuBarUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region MenuBarUI + #region MenuBarUI declaration + /// + /// + /// + public partial class MenuBarUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.MenuBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MenuBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MenuBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuBarUI implementation public partial class MenuBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/MenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/MenuItemUI.cs index 7726c09458..dff5627026 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/MenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/MenuItemUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region MenuItemUI + #region MenuItemUI declaration + /// + /// + /// + public partial class MenuItemUI : Javax.Swing.Plaf.ButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.MenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MenuItemUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MenuItemUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MenuItemUI implementation public partial class MenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/AllPackageClasses.cs deleted file mode 100644 index 0afb5b4193..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/AllPackageClasses.cs +++ /dev/null @@ -1,2687 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Plaf.Metal -{ - #region DefaultMetalTheme - /// - /// - /// - public partial class DefaultMetalTheme : Javax.Swing.Plaf.Metal.MetalTheme - { - const string _bridgeClassName = "javax.swing.plaf.metal.DefaultMetalTheme"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultMetalTheme() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultMetalTheme(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalBorders - /// - /// - /// - public partial class MetalBorders : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalBorders() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalBorders(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ButtonBorder - /// - /// - /// - public partial class ButtonBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Flush3DBorder - /// - /// - /// - public partial class Flush3DBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$Flush3DBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Flush3DBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Flush3DBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region InternalFrameBorder - /// - /// - /// - public partial class InternalFrameBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$InternalFrameBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InternalFrameBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InternalFrameBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MenuBarBorder - /// - /// - /// - public partial class MenuBarBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$MenuBarBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuBarBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuBarBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region MenuItemBorder - /// - /// - /// - public partial class MenuItemBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$MenuItemBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MenuItemBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MenuItemBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region OptionDialogBorder - /// - /// - /// - public partial class OptionDialogBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$OptionDialogBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OptionDialogBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OptionDialogBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PaletteBorder - /// - /// - /// - public partial class PaletteBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$PaletteBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PaletteBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PaletteBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PopupMenuBorder - /// - /// - /// - public partial class PopupMenuBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$PopupMenuBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PopupMenuBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PopupMenuBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region RolloverButtonBorder - /// - /// - /// - public partial class RolloverButtonBorder : Javax.Swing.Plaf.Metal.MetalBorders.ButtonBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$RolloverButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RolloverButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RolloverButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ScrollPaneBorder - /// - /// - /// - public partial class ScrollPaneBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ScrollPaneBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ScrollPaneBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ScrollPaneBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TableHeaderBorder - /// - /// - /// - public partial class TableHeaderBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$TableHeaderBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableHeaderBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableHeaderBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TextFieldBorder - /// - /// - /// - public partial class TextFieldBorder : Javax.Swing.Plaf.Metal.MetalBorders.Flush3DBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$TextFieldBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TextFieldBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TextFieldBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ToggleButtonBorder - /// - /// - /// - public partial class ToggleButtonBorder : Javax.Swing.Plaf.Metal.MetalBorders.ButtonBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ToggleButtonBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToggleButtonBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ToggleButtonBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ToolBarBorder - /// - /// - /// - public partial class ToolBarBorder : Javax.Swing.Border.AbstractBorder - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ToolBarBorder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToolBarBorder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ToolBarBorder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MetalButtonUI - /// - /// - /// - public partial class MetalButtonUI : Javax.Swing.Plaf.Basic.BasicButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalCheckBoxIcon - /// - /// - /// - public partial class MetalCheckBoxIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalCheckBoxIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalCheckBoxIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalCheckBoxIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalCheckBoxUI - /// - /// - /// - public partial class MetalCheckBoxUI : Javax.Swing.Plaf.Metal.MetalRadioButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalCheckBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalCheckBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalCheckBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalComboBoxButton - /// - /// - /// - public partial class MetalComboBoxButton : Javax.Swing.JButton - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalComboBoxButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalComboBoxButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalComboBoxEditor - /// - /// - /// - public partial class MetalComboBoxEditor : Javax.Swing.Plaf.Basic.BasicComboBoxEditor - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalComboBoxEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalComboBoxEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region UIResource - /// - /// - /// - public partial class UIResource : Javax.Swing.Plaf.Metal.MetalComboBoxEditor - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxEditor$UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MetalComboBoxIcon - /// - /// - /// - public partial class MetalComboBoxIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalComboBoxIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalComboBoxIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalComboBoxUI - /// - /// - /// - public partial class MetalComboBoxUI : Javax.Swing.Plaf.Basic.BasicComboBoxUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalComboBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalComboBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region MetalComboBoxLayoutManager - /// - /// - /// - public partial class MetalComboBoxLayoutManager : Javax.Swing.Plaf.Basic.BasicComboBoxUI.ComboBoxLayoutManager - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxUI$MetalComboBoxLayoutManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalComboBoxLayoutManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalComboBoxLayoutManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MetalDesktopIconUI - /// - /// - /// - public partial class MetalDesktopIconUI : Javax.Swing.Plaf.Basic.BasicDesktopIconUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalDesktopIconUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalDesktopIconUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalDesktopIconUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalFileChooserUI - /// - /// - /// - public partial class MetalFileChooserUI : Javax.Swing.Plaf.Basic.BasicFileChooserUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalFileChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalFileChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalFileChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FilterComboBoxRenderer - /// - /// - /// - public partial class FilterComboBoxRenderer : Javax.Swing.DefaultListCellRenderer - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalFileChooserUI$FilterComboBoxRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FilterComboBoxRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FilterComboBoxRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MetalIconFactory - /// - /// - /// - public partial class MetalIconFactory : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalIconFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalIconFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FileIcon16 - /// - /// - /// - public partial class FileIcon16 : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$FileIcon16"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FileIcon16() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FileIcon16(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FolderIcon16 - /// - /// - /// - public partial class FolderIcon16 : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$FolderIcon16"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FolderIcon16() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FolderIcon16(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PaletteCloseIcon - /// - /// - /// - public partial class PaletteCloseIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$PaletteCloseIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PaletteCloseIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PaletteCloseIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TreeControlIcon - /// - /// - /// - public partial class TreeControlIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$TreeControlIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeControlIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeControlIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TreeFolderIcon - /// - /// - /// - public partial class TreeFolderIcon : Javax.Swing.Plaf.Metal.MetalIconFactory.FolderIcon16 - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$TreeFolderIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeFolderIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeFolderIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region TreeLeafIcon - /// - /// - /// - public partial class TreeLeafIcon : Javax.Swing.Plaf.Metal.MetalIconFactory.FileIcon16 - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$TreeLeafIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreeLeafIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreeLeafIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MetalInternalFrameTitlePane - /// - /// - /// - public partial class MetalInternalFrameTitlePane : Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalInternalFrameTitlePane"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalInternalFrameTitlePane() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalInternalFrameTitlePane(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalInternalFrameUI - /// - /// - /// - public partial class MetalInternalFrameUI : Javax.Swing.Plaf.Basic.BasicInternalFrameUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalInternalFrameUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalInternalFrameUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalInternalFrameUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalLabelUI - /// - /// - /// - public partial class MetalLabelUI : Javax.Swing.Plaf.Basic.BasicLabelUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalLabelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalLabelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalLabelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalLookAndFeel - /// - /// - /// - public partial class MetalLookAndFeel : Javax.Swing.Plaf.Basic.BasicLookAndFeel - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalLookAndFeel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalLookAndFeel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalLookAndFeel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalMenuBarUI - /// - /// - /// - public partial class MetalMenuBarUI : Javax.Swing.Plaf.Basic.BasicMenuBarUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalMenuBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalMenuBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalMenuBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalPopupMenuSeparatorUI - /// - /// - /// - public partial class MetalPopupMenuSeparatorUI : Javax.Swing.Plaf.Metal.MetalSeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalPopupMenuSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalPopupMenuSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalPopupMenuSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalProgressBarUI - /// - /// - /// - public partial class MetalProgressBarUI : Javax.Swing.Plaf.Basic.BasicProgressBarUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalProgressBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalProgressBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalProgressBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalRadioButtonUI - /// - /// - /// - public partial class MetalRadioButtonUI : Javax.Swing.Plaf.Basic.BasicRadioButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalRadioButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalRadioButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalRadioButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalRootPaneUI - /// - /// - /// - public partial class MetalRootPaneUI : Javax.Swing.Plaf.Basic.BasicRootPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalRootPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalRootPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalRootPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalScrollBarUI - /// - /// - /// - public partial class MetalScrollBarUI : Javax.Swing.Plaf.Basic.BasicScrollBarUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalScrollBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalScrollBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalScrollBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalScrollButton - /// - /// - /// - public partial class MetalScrollButton : Javax.Swing.Plaf.Basic.BasicArrowButton - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalScrollButton"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalScrollButton() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalScrollButton(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalScrollPaneUI - /// - /// - /// - public partial class MetalScrollPaneUI : Javax.Swing.Plaf.Basic.BasicScrollPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalScrollPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalScrollPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalScrollPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalSeparatorUI - /// - /// - /// - public partial class MetalSeparatorUI : Javax.Swing.Plaf.Basic.BasicSeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalSliderUI - /// - /// - /// - public partial class MetalSliderUI : Javax.Swing.Plaf.Basic.BasicSliderUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalSliderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalSliderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalSliderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalSplitPaneUI - /// - /// - /// - public partial class MetalSplitPaneUI : Javax.Swing.Plaf.Basic.BasicSplitPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalSplitPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalSplitPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalSplitPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalTabbedPaneUI - /// - /// - /// - public partial class MetalTabbedPaneUI : Javax.Swing.Plaf.Basic.BasicTabbedPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalTabbedPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalTabbedPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalTabbedPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region TabbedPaneLayout - /// - /// - /// - public partial class TabbedPaneLayout : Javax.Swing.Plaf.Basic.BasicTabbedPaneUI.TabbedPaneLayout - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalTabbedPaneUI$TabbedPaneLayout"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabbedPaneLayout() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabbedPaneLayout(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region MetalTextFieldUI - /// - /// - /// - public partial class MetalTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalTextFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalTextFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalTextFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalTheme - /// - /// - /// - public partial class MetalTheme : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalTheme"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MetalTheme class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MetalTheme() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MetalTheme class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MetalTheme(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalToggleButtonUI - /// - /// - /// - public partial class MetalToggleButtonUI : Javax.Swing.Plaf.Basic.BasicToggleButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalToggleButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalToggleButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalToggleButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalToolBarUI - /// - /// - /// - public partial class MetalToolBarUI : Javax.Swing.Plaf.Basic.BasicToolBarUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalToolBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalToolBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalToolBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalToolTipUI - /// - /// - /// - public partial class MetalToolTipUI : Javax.Swing.Plaf.Basic.BasicToolTipUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalToolTipUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalToolTipUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalToolTipUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MetalTreeUI - /// - /// - /// - public partial class MetalTreeUI : Javax.Swing.Plaf.Basic.BasicTreeUI - { - const string _bridgeClassName = "javax.swing.plaf.metal.MetalTreeUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MetalTreeUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MetalTreeUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region OceanTheme - /// - /// - /// - public partial class OceanTheme : Javax.Swing.Plaf.Metal.DefaultMetalTheme - { - const string _bridgeClassName = "javax.swing.plaf.metal.OceanTheme"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OceanTheme() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OceanTheme(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/DefaultMetalTheme.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/DefaultMetalTheme.cs index 3ead2d8fe5..59b2be8f9e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/DefaultMetalTheme.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/DefaultMetalTheme.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region DefaultMetalTheme + #region DefaultMetalTheme declaration + /// + /// + /// + public partial class DefaultMetalTheme : Javax.Swing.Plaf.Metal.MetalTheme + { + const string _bridgeClassName = "javax.swing.plaf.metal.DefaultMetalTheme"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultMetalTheme() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultMetalTheme(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultMetalTheme implementation public partial class DefaultMetalTheme { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalBorders.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalBorders.cs index e77a5386b8..66e88600d9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalBorders.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalBorders.cs @@ -25,7 +25,682 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalBorders + #region MetalBorders declaration + /// + /// + /// + public partial class MetalBorders : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalBorders() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalBorders(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ButtonBorder declaration + /// + /// + /// + public partial class ButtonBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Flush3DBorder declaration + /// + /// + /// + public partial class Flush3DBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$Flush3DBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Flush3DBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Flush3DBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region InternalFrameBorder declaration + /// + /// + /// + public partial class InternalFrameBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$InternalFrameBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InternalFrameBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InternalFrameBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MenuBarBorder declaration + /// + /// + /// + public partial class MenuBarBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$MenuBarBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuBarBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuBarBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region MenuItemBorder declaration + /// + /// + /// + public partial class MenuItemBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$MenuItemBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MenuItemBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MenuItemBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region OptionDialogBorder declaration + /// + /// + /// + public partial class OptionDialogBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$OptionDialogBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OptionDialogBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OptionDialogBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PaletteBorder declaration + /// + /// + /// + public partial class PaletteBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$PaletteBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PaletteBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PaletteBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PopupMenuBorder declaration + /// + /// + /// + public partial class PopupMenuBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$PopupMenuBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PopupMenuBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PopupMenuBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region RolloverButtonBorder declaration + /// + /// + /// + public partial class RolloverButtonBorder : Javax.Swing.Plaf.Metal.MetalBorders.ButtonBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$RolloverButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RolloverButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RolloverButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ScrollPaneBorder declaration + /// + /// + /// + public partial class ScrollPaneBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ScrollPaneBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScrollPaneBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScrollPaneBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TableHeaderBorder declaration + /// + /// + /// + public partial class TableHeaderBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$TableHeaderBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableHeaderBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableHeaderBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TextFieldBorder declaration + /// + /// + /// + public partial class TextFieldBorder : Javax.Swing.Plaf.Metal.MetalBorders.Flush3DBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$TextFieldBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TextFieldBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TextFieldBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ToggleButtonBorder declaration + /// + /// + /// + public partial class ToggleButtonBorder : Javax.Swing.Plaf.Metal.MetalBorders.ButtonBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ToggleButtonBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToggleButtonBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ToggleButtonBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ToolBarBorder declaration + /// + /// + /// + public partial class ToolBarBorder : Javax.Swing.Border.AbstractBorder + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalBorders$ToolBarBorder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToolBarBorder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ToolBarBorder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MetalBorders implementation public partial class MetalBorders { #region Constructors @@ -84,7 +759,7 @@ public static Javax.Swing.Border.Border TextBorder #endregion #region Nested classes - #region ButtonBorder + #region ButtonBorder implementation public partial class ButtonBorder { #region Constructors @@ -119,7 +794,7 @@ public partial class ButtonBorder } #endregion - #region Flush3DBorder + #region Flush3DBorder implementation public partial class Flush3DBorder { #region Constructors @@ -154,7 +829,7 @@ public partial class Flush3DBorder } #endregion - #region InternalFrameBorder + #region InternalFrameBorder implementation public partial class InternalFrameBorder { #region Constructors @@ -189,7 +864,7 @@ public partial class InternalFrameBorder } #endregion - #region MenuBarBorder + #region MenuBarBorder implementation public partial class MenuBarBorder { #region Constructors @@ -224,7 +899,7 @@ public partial class MenuBarBorder } #endregion - #region MenuItemBorder + #region MenuItemBorder implementation public partial class MenuItemBorder { #region Constructors @@ -259,7 +934,7 @@ public partial class MenuItemBorder } #endregion - #region OptionDialogBorder + #region OptionDialogBorder implementation public partial class OptionDialogBorder { #region Constructors @@ -294,7 +969,7 @@ public partial class OptionDialogBorder } #endregion - #region PaletteBorder + #region PaletteBorder implementation public partial class PaletteBorder { #region Constructors @@ -329,7 +1004,7 @@ public partial class PaletteBorder } #endregion - #region PopupMenuBorder + #region PopupMenuBorder implementation public partial class PopupMenuBorder { #region Constructors @@ -364,7 +1039,7 @@ public partial class PopupMenuBorder } #endregion - #region RolloverButtonBorder + #region RolloverButtonBorder implementation public partial class RolloverButtonBorder { #region Constructors @@ -395,7 +1070,7 @@ public partial class RolloverButtonBorder } #endregion - #region ScrollPaneBorder + #region ScrollPaneBorder implementation public partial class ScrollPaneBorder { #region Constructors @@ -430,7 +1105,7 @@ public partial class ScrollPaneBorder } #endregion - #region TableHeaderBorder + #region TableHeaderBorder implementation public partial class TableHeaderBorder { #region Constructors @@ -461,7 +1136,7 @@ public partial class TableHeaderBorder } #endregion - #region TextFieldBorder + #region TextFieldBorder implementation public partial class TextFieldBorder { #region Constructors @@ -492,7 +1167,7 @@ public partial class TextFieldBorder } #endregion - #region ToggleButtonBorder + #region ToggleButtonBorder implementation public partial class ToggleButtonBorder { #region Constructors @@ -523,7 +1198,7 @@ public partial class ToggleButtonBorder } #endregion - #region ToolBarBorder + #region ToolBarBorder implementation public partial class ToolBarBorder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalButtonUI.cs index 45833c44be..05c012f56d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalButtonUI + #region MetalButtonUI declaration + /// + /// + /// + public partial class MetalButtonUI : Javax.Swing.Plaf.Basic.BasicButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalButtonUI implementation public partial class MetalButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxIcon.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxIcon.cs index 0652082880..536598bd23 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxIcon.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxIcon.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalCheckBoxIcon + #region MetalCheckBoxIcon declaration + /// + /// + /// + public partial class MetalCheckBoxIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalCheckBoxIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalCheckBoxIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalCheckBoxIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalCheckBoxIcon implementation public partial class MetalCheckBoxIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxUI.cs index 4cb9c1f506..7fa9a61c60 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalCheckBoxUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalCheckBoxUI + #region MetalCheckBoxUI declaration + /// + /// + /// + public partial class MetalCheckBoxUI : Javax.Swing.Plaf.Metal.MetalRadioButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalCheckBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalCheckBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalCheckBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalCheckBoxUI implementation public partial class MetalCheckBoxUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxButton.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxButton.cs index caeaf008b7..894f10524f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxButton.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalComboBoxButton + #region MetalComboBoxButton declaration + /// + /// + /// + public partial class MetalComboBoxButton : Javax.Swing.JButton + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalComboBoxButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalComboBoxButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalComboBoxButton implementation public partial class MetalComboBoxButton { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxEditor.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxEditor.cs index 45d07597cc..6c1e0cbbef 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxEditor.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalComboBoxEditor + #region MetalComboBoxEditor declaration + /// + /// + /// + public partial class MetalComboBoxEditor : Javax.Swing.Plaf.Basic.BasicComboBoxEditor + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalComboBoxEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalComboBoxEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region UIResource declaration + /// + /// + /// + public partial class UIResource : Javax.Swing.Plaf.Metal.MetalComboBoxEditor + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxEditor$UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MetalComboBoxEditor implementation public partial class MetalComboBoxEditor { #region Constructors @@ -49,7 +139,7 @@ public partial class MetalComboBoxEditor #endregion #region Nested classes - #region UIResource + #region UIResource implementation public partial class UIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxIcon.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxIcon.cs index e53161680c..bd6be1cf7d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxIcon.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxIcon.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalComboBoxIcon + #region MetalComboBoxIcon declaration + /// + /// + /// + public partial class MetalComboBoxIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalComboBoxIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalComboBoxIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalComboBoxIcon implementation public partial class MetalComboBoxIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxUI.cs index 31327d59b4..09a5ca1c7d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalComboBoxUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalComboBoxUI + #region MetalComboBoxUI declaration + /// + /// + /// + public partial class MetalComboBoxUI : Javax.Swing.Plaf.Basic.BasicComboBoxUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalComboBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalComboBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region MetalComboBoxLayoutManager declaration + /// + /// + /// + public partial class MetalComboBoxLayoutManager : Javax.Swing.Plaf.Basic.BasicComboBoxUI.ComboBoxLayoutManager + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalComboBoxUI$MetalComboBoxLayoutManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalComboBoxLayoutManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalComboBoxLayoutManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MetalComboBoxUI implementation public partial class MetalComboBoxUI { #region Constructors @@ -88,7 +178,7 @@ public void UnconfigureEditor() #endregion #region Nested classes - #region MetalComboBoxLayoutManager + #region MetalComboBoxLayoutManager implementation public partial class MetalComboBoxLayoutManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalDesktopIconUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalDesktopIconUI.cs index 78ed32caf1..3b1a239967 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalDesktopIconUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalDesktopIconUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalDesktopIconUI + #region MetalDesktopIconUI declaration + /// + /// + /// + public partial class MetalDesktopIconUI : Javax.Swing.Plaf.Basic.BasicDesktopIconUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalDesktopIconUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalDesktopIconUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalDesktopIconUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalDesktopIconUI implementation public partial class MetalDesktopIconUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalFileChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalFileChooserUI.cs index a43429888d..360f2fa732 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalFileChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalFileChooserUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalFileChooserUI + #region MetalFileChooserUI declaration + /// + /// + /// + public partial class MetalFileChooserUI : Javax.Swing.Plaf.Basic.BasicFileChooserUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalFileChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalFileChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalFileChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FilterComboBoxRenderer declaration + /// + /// + /// + public partial class FilterComboBoxRenderer : Javax.Swing.DefaultListCellRenderer + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalFileChooserUI$FilterComboBoxRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FilterComboBoxRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FilterComboBoxRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MetalFileChooserUI implementation public partial class MetalFileChooserUI { #region Constructors @@ -65,7 +155,7 @@ public void ValueChanged(Javax.Swing.Event.ListSelectionEvent arg0) #endregion #region Nested classes - #region FilterComboBoxRenderer + #region FilterComboBoxRenderer implementation public partial class FilterComboBoxRenderer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalIconFactory.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalIconFactory.cs index c5069131a0..08558dd4ae 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalIconFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalIconFactory.cs @@ -25,7 +25,322 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalIconFactory + #region MetalIconFactory declaration + /// + /// + /// + public partial class MetalIconFactory : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalIconFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalIconFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FileIcon16 declaration + /// + /// + /// + public partial class FileIcon16 : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$FileIcon16"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FileIcon16() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FileIcon16(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FolderIcon16 declaration + /// + /// + /// + public partial class FolderIcon16 : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$FolderIcon16"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FolderIcon16() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FolderIcon16(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PaletteCloseIcon declaration + /// + /// + /// + public partial class PaletteCloseIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$PaletteCloseIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PaletteCloseIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PaletteCloseIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TreeControlIcon declaration + /// + /// + /// + public partial class TreeControlIcon : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$TreeControlIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeControlIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeControlIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TreeFolderIcon declaration + /// + /// + /// + public partial class TreeFolderIcon : Javax.Swing.Plaf.Metal.MetalIconFactory.FolderIcon16 + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$TreeFolderIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeFolderIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeFolderIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TreeLeafIcon declaration + /// + /// + /// + public partial class TreeLeafIcon : Javax.Swing.Plaf.Metal.MetalIconFactory.FileIcon16 + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalIconFactory$TreeLeafIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreeLeafIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreeLeafIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MetalIconFactory implementation public partial class MetalIconFactory { #region Constructors @@ -246,7 +561,7 @@ public static Javax.Swing.Icon GetTreeControlIcon(bool arg0) #endregion #region Nested classes - #region FileIcon16 + #region FileIcon16 implementation public partial class FileIcon16 { #region Constructors @@ -324,7 +639,7 @@ public void PaintIcon(Java.Awt.Component arg0, Java.Awt.Graphics arg1, int arg2, } #endregion - #region FolderIcon16 + #region FolderIcon16 implementation public partial class FolderIcon16 { #region Constructors @@ -402,7 +717,7 @@ public void PaintIcon(Java.Awt.Component arg0, Java.Awt.Graphics arg1, int arg2, } #endregion - #region PaletteCloseIcon + #region PaletteCloseIcon implementation public partial class PaletteCloseIcon { #region Constructors @@ -470,7 +785,7 @@ public void PaintIcon(Java.Awt.Component arg0, Java.Awt.Graphics arg1, int arg2, } #endregion - #region TreeControlIcon + #region TreeControlIcon implementation public partial class TreeControlIcon { #region Constructors @@ -553,7 +868,7 @@ public void PaintMe(Java.Awt.Component arg0, Java.Awt.Graphics arg1, int arg2, i } #endregion - #region TreeFolderIcon + #region TreeFolderIcon implementation public partial class TreeFolderIcon { #region Constructors @@ -584,7 +899,7 @@ public partial class TreeFolderIcon } #endregion - #region TreeLeafIcon + #region TreeLeafIcon implementation public partial class TreeLeafIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameTitlePane.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameTitlePane.cs index 143445d212..8e5c85d4c9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameTitlePane.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameTitlePane.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalInternalFrameTitlePane + #region MetalInternalFrameTitlePane declaration + /// + /// + /// + public partial class MetalInternalFrameTitlePane : Javax.Swing.Plaf.Basic.BasicInternalFrameTitlePane + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalInternalFrameTitlePane"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalInternalFrameTitlePane() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalInternalFrameTitlePane(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalInternalFrameTitlePane implementation public partial class MetalInternalFrameTitlePane { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameUI.cs index 379d6908a0..c7e8d5ed07 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalInternalFrameUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalInternalFrameUI + #region MetalInternalFrameUI declaration + /// + /// + /// + public partial class MetalInternalFrameUI : Javax.Swing.Plaf.Basic.BasicInternalFrameUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalInternalFrameUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalInternalFrameUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalInternalFrameUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalInternalFrameUI implementation public partial class MetalInternalFrameUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLabelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLabelUI.cs index b811a1e0c5..7f6a1644be 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLabelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLabelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalLabelUI + #region MetalLabelUI declaration + /// + /// + /// + public partial class MetalLabelUI : Javax.Swing.Plaf.Basic.BasicLabelUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalLabelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalLabelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalLabelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalLabelUI implementation public partial class MetalLabelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLookAndFeel.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLookAndFeel.cs index edeb9d4dce..11bbd14add 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLookAndFeel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalLookAndFeel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalLookAndFeel + #region MetalLookAndFeel declaration + /// + /// + /// + public partial class MetalLookAndFeel : Javax.Swing.Plaf.Basic.BasicLookAndFeel + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalLookAndFeel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalLookAndFeel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalLookAndFeel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalLookAndFeel implementation public partial class MetalLookAndFeel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalMenuBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalMenuBarUI.cs index a0d4e774c4..4a567ddb65 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalMenuBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalMenuBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalMenuBarUI + #region MetalMenuBarUI declaration + /// + /// + /// + public partial class MetalMenuBarUI : Javax.Swing.Plaf.Basic.BasicMenuBarUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalMenuBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalMenuBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalMenuBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalMenuBarUI implementation public partial class MetalMenuBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalPopupMenuSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalPopupMenuSeparatorUI.cs index 8400edd8dd..4bcb053c26 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalPopupMenuSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalPopupMenuSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalPopupMenuSeparatorUI + #region MetalPopupMenuSeparatorUI declaration + /// + /// + /// + public partial class MetalPopupMenuSeparatorUI : Javax.Swing.Plaf.Metal.MetalSeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalPopupMenuSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalPopupMenuSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalPopupMenuSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalPopupMenuSeparatorUI implementation public partial class MetalPopupMenuSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalProgressBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalProgressBarUI.cs index d3233a5820..93881fe0b8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalProgressBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalProgressBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalProgressBarUI + #region MetalProgressBarUI declaration + /// + /// + /// + public partial class MetalProgressBarUI : Javax.Swing.Plaf.Basic.BasicProgressBarUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalProgressBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalProgressBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalProgressBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalProgressBarUI implementation public partial class MetalProgressBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRadioButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRadioButtonUI.cs index 9dde7c4267..a1336a2984 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRadioButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRadioButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalRadioButtonUI + #region MetalRadioButtonUI declaration + /// + /// + /// + public partial class MetalRadioButtonUI : Javax.Swing.Plaf.Basic.BasicRadioButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalRadioButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalRadioButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalRadioButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalRadioButtonUI implementation public partial class MetalRadioButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRootPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRootPaneUI.cs index 687b00edb8..e41c789d7d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRootPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalRootPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalRootPaneUI + #region MetalRootPaneUI declaration + /// + /// + /// + public partial class MetalRootPaneUI : Javax.Swing.Plaf.Basic.BasicRootPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalRootPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalRootPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalRootPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalRootPaneUI implementation public partial class MetalRootPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollBarUI.cs index e4366c09a4..ba1b3b42e8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalScrollBarUI + #region MetalScrollBarUI declaration + /// + /// + /// + public partial class MetalScrollBarUI : Javax.Swing.Plaf.Basic.BasicScrollBarUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalScrollBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalScrollBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalScrollBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalScrollBarUI implementation public partial class MetalScrollBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollButton.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollButton.cs index 31d2b0c2b9..1a6e03c419 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollButton.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollButton.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalScrollButton + #region MetalScrollButton declaration + /// + /// + /// + public partial class MetalScrollButton : Javax.Swing.Plaf.Basic.BasicArrowButton + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalScrollButton"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalScrollButton() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalScrollButton(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalScrollButton implementation public partial class MetalScrollButton { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollPaneUI.cs index 289d5d889c..1bc31cdec0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalScrollPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalScrollPaneUI + #region MetalScrollPaneUI declaration + /// + /// + /// + public partial class MetalScrollPaneUI : Javax.Swing.Plaf.Basic.BasicScrollPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalScrollPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalScrollPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalScrollPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalScrollPaneUI implementation public partial class MetalScrollPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSeparatorUI.cs index 4ba0a24d79..c95a01bd6e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalSeparatorUI + #region MetalSeparatorUI declaration + /// + /// + /// + public partial class MetalSeparatorUI : Javax.Swing.Plaf.Basic.BasicSeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalSeparatorUI implementation public partial class MetalSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSliderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSliderUI.cs index d345cd5f78..14d713ddc7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSliderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSliderUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalSliderUI + #region MetalSliderUI declaration + /// + /// + /// + public partial class MetalSliderUI : Javax.Swing.Plaf.Basic.BasicSliderUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalSliderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalSliderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalSliderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalSliderUI implementation public partial class MetalSliderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSplitPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSplitPaneUI.cs index 7e8fd7dee3..7f4763a493 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSplitPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalSplitPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalSplitPaneUI + #region MetalSplitPaneUI declaration + /// + /// + /// + public partial class MetalSplitPaneUI : Javax.Swing.Plaf.Basic.BasicSplitPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalSplitPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalSplitPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalSplitPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalSplitPaneUI implementation public partial class MetalSplitPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTabbedPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTabbedPaneUI.cs index b87f97b48f..e87a4a690e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTabbedPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTabbedPaneUI.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalTabbedPaneUI + #region MetalTabbedPaneUI declaration + /// + /// + /// + public partial class MetalTabbedPaneUI : Javax.Swing.Plaf.Basic.BasicTabbedPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalTabbedPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalTabbedPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalTabbedPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region TabbedPaneLayout declaration + /// + /// + /// + public partial class TabbedPaneLayout : Javax.Swing.Plaf.Basic.BasicTabbedPaneUI.TabbedPaneLayout + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalTabbedPaneUI$TabbedPaneLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabbedPaneLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabbedPaneLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region MetalTabbedPaneUI implementation public partial class MetalTabbedPaneUI { #region Constructors @@ -49,7 +139,7 @@ public partial class MetalTabbedPaneUI #endregion #region Nested classes - #region TabbedPaneLayout + #region TabbedPaneLayout implementation public partial class TabbedPaneLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTextFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTextFieldUI.cs index 1d25d49e41..b0b6f4debe 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTextFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTextFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalTextFieldUI + #region MetalTextFieldUI declaration + /// + /// + /// + public partial class MetalTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalTextFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalTextFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalTextFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalTextFieldUI implementation public partial class MetalTextFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTheme.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTheme.cs index 0d4a590fc8..b93538844b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTheme.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTheme.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalTheme + #region MetalTheme declaration + /// + /// + /// + public partial class MetalTheme : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalTheme"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MetalTheme class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MetalTheme() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MetalTheme class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MetalTheme(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalTheme implementation public partial class MetalTheme { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToggleButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToggleButtonUI.cs index 9737aaac5e..34ebff39c3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToggleButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToggleButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalToggleButtonUI + #region MetalToggleButtonUI declaration + /// + /// + /// + public partial class MetalToggleButtonUI : Javax.Swing.Plaf.Basic.BasicToggleButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalToggleButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalToggleButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalToggleButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalToggleButtonUI implementation public partial class MetalToggleButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolBarUI.cs index 29dd1132cc..f8ae4f02ef 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalToolBarUI + #region MetalToolBarUI declaration + /// + /// + /// + public partial class MetalToolBarUI : Javax.Swing.Plaf.Basic.BasicToolBarUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalToolBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalToolBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalToolBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalToolBarUI implementation public partial class MetalToolBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolTipUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolTipUI.cs index 3037a02038..3b58b9bcb8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolTipUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalToolTipUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalToolTipUI + #region MetalToolTipUI declaration + /// + /// + /// + public partial class MetalToolTipUI : Javax.Swing.Plaf.Basic.BasicToolTipUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalToolTipUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalToolTipUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalToolTipUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalToolTipUI implementation public partial class MetalToolTipUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTreeUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTreeUI.cs index 1c862bd91e..ac751f1aee 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTreeUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/MetalTreeUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region MetalTreeUI + #region MetalTreeUI declaration + /// + /// + /// + public partial class MetalTreeUI : Javax.Swing.Plaf.Basic.BasicTreeUI + { + const string _bridgeClassName = "javax.swing.plaf.metal.MetalTreeUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MetalTreeUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MetalTreeUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MetalTreeUI implementation public partial class MetalTreeUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/OceanTheme.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/OceanTheme.cs index f9825133bb..d5425fa1af 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/OceanTheme.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Metal/OceanTheme.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Metal { - #region OceanTheme + #region OceanTheme declaration + /// + /// + /// + public partial class OceanTheme : Javax.Swing.Plaf.Metal.DefaultMetalTheme + { + const string _bridgeClassName = "javax.swing.plaf.metal.OceanTheme"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OceanTheme() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OceanTheme(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OceanTheme implementation public partial class OceanTheme { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/AllPackageClasses.cs deleted file mode 100644 index 3c8f1524fb..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/AllPackageClasses.cs +++ /dev/null @@ -1,1425 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Plaf.Multi -{ - #region MultiButtonUI - /// - /// - /// - public partial class MultiButtonUI : Javax.Swing.Plaf.ButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiColorChooserUI - /// - /// - /// - public partial class MultiColorChooserUI : Javax.Swing.Plaf.ColorChooserUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiColorChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiColorChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiColorChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiComboBoxUI - /// - /// - /// - public partial class MultiComboBoxUI : Javax.Swing.Plaf.ComboBoxUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiComboBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiComboBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiComboBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiDesktopIconUI - /// - /// - /// - public partial class MultiDesktopIconUI : Javax.Swing.Plaf.DesktopIconUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiDesktopIconUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiDesktopIconUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiDesktopIconUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiDesktopPaneUI - /// - /// - /// - public partial class MultiDesktopPaneUI : Javax.Swing.Plaf.DesktopPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiDesktopPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiDesktopPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiDesktopPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiFileChooserUI - /// - /// - /// - public partial class MultiFileChooserUI : Javax.Swing.Plaf.FileChooserUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiFileChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiFileChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiFileChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiInternalFrameUI - /// - /// - /// - public partial class MultiInternalFrameUI : Javax.Swing.Plaf.InternalFrameUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiInternalFrameUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiInternalFrameUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiInternalFrameUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiLabelUI - /// - /// - /// - public partial class MultiLabelUI : Javax.Swing.Plaf.LabelUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiLabelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiLabelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiLabelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiListUI - /// - /// - /// - public partial class MultiListUI : Javax.Swing.Plaf.ListUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiListUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiListUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiListUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiLookAndFeel - /// - /// - /// - public partial class MultiLookAndFeel : Javax.Swing.LookAndFeel - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiLookAndFeel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiLookAndFeel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiLookAndFeel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiMenuBarUI - /// - /// - /// - public partial class MultiMenuBarUI : Javax.Swing.Plaf.MenuBarUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiMenuBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiMenuBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiMenuBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiMenuItemUI - /// - /// - /// - public partial class MultiMenuItemUI : Javax.Swing.Plaf.MenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiOptionPaneUI - /// - /// - /// - public partial class MultiOptionPaneUI : Javax.Swing.Plaf.OptionPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiOptionPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiOptionPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiOptionPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiPanelUI - /// - /// - /// - public partial class MultiPanelUI : Javax.Swing.Plaf.PanelUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiPanelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiPanelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiPanelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiPopupMenuUI - /// - /// - /// - public partial class MultiPopupMenuUI : Javax.Swing.Plaf.PopupMenuUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiPopupMenuUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiPopupMenuUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiPopupMenuUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiProgressBarUI - /// - /// - /// - public partial class MultiProgressBarUI : Javax.Swing.Plaf.ProgressBarUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiProgressBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiProgressBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiProgressBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiRootPaneUI - /// - /// - /// - public partial class MultiRootPaneUI : Javax.Swing.Plaf.RootPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiRootPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiRootPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiRootPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiScrollBarUI - /// - /// - /// - public partial class MultiScrollBarUI : Javax.Swing.Plaf.ScrollBarUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiScrollBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiScrollBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiScrollBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiScrollPaneUI - /// - /// - /// - public partial class MultiScrollPaneUI : Javax.Swing.Plaf.ScrollPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiScrollPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiScrollPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiScrollPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiSeparatorUI - /// - /// - /// - public partial class MultiSeparatorUI : Javax.Swing.Plaf.SeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiSliderUI - /// - /// - /// - public partial class MultiSliderUI : Javax.Swing.Plaf.SliderUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiSliderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiSliderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiSliderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiSpinnerUI - /// - /// - /// - public partial class MultiSpinnerUI : Javax.Swing.Plaf.SpinnerUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiSpinnerUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiSpinnerUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiSpinnerUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiSplitPaneUI - /// - /// - /// - public partial class MultiSplitPaneUI : Javax.Swing.Plaf.SplitPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiSplitPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiSplitPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiSplitPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiTabbedPaneUI - /// - /// - /// - public partial class MultiTabbedPaneUI : Javax.Swing.Plaf.TabbedPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiTabbedPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiTabbedPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiTabbedPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiTableHeaderUI - /// - /// - /// - public partial class MultiTableHeaderUI : Javax.Swing.Plaf.TableHeaderUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiTableHeaderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiTableHeaderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiTableHeaderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiTableUI - /// - /// - /// - public partial class MultiTableUI : Javax.Swing.Plaf.TableUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiTableUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiTableUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiTableUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiTextUI - /// - /// - /// - public partial class MultiTextUI : Javax.Swing.Plaf.TextUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiTextUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiTextUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiTextUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiToolBarUI - /// - /// - /// - public partial class MultiToolBarUI : Javax.Swing.Plaf.ToolBarUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiToolBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiToolBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiToolBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiToolTipUI - /// - /// - /// - public partial class MultiToolTipUI : Javax.Swing.Plaf.ToolTipUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiToolTipUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiToolTipUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiToolTipUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiTreeUI - /// - /// - /// - public partial class MultiTreeUI : Javax.Swing.Plaf.TreeUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiTreeUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiTreeUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiTreeUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MultiViewportUI - /// - /// - /// - public partial class MultiViewportUI : Javax.Swing.Plaf.ViewportUI - { - const string _bridgeClassName = "javax.swing.plaf.multi.MultiViewportUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MultiViewportUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MultiViewportUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiButtonUI.cs index 3fb18c34da..d3ef8a0c77 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiButtonUI + #region MultiButtonUI declaration + /// + /// + /// + public partial class MultiButtonUI : Javax.Swing.Plaf.ButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiButtonUI implementation public partial class MultiButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiColorChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiColorChooserUI.cs index 1bc2f1e210..a8eff3ba65 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiColorChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiColorChooserUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiColorChooserUI + #region MultiColorChooserUI declaration + /// + /// + /// + public partial class MultiColorChooserUI : Javax.Swing.Plaf.ColorChooserUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiColorChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiColorChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiColorChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiColorChooserUI implementation public partial class MultiColorChooserUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiComboBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiComboBoxUI.cs index 4d68165616..9c35b5f14c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiComboBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiComboBoxUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiComboBoxUI + #region MultiComboBoxUI declaration + /// + /// + /// + public partial class MultiComboBoxUI : Javax.Swing.Plaf.ComboBoxUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiComboBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiComboBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiComboBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiComboBoxUI implementation public partial class MultiComboBoxUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopIconUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopIconUI.cs index 4bab6239de..928d27b500 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopIconUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopIconUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiDesktopIconUI + #region MultiDesktopIconUI declaration + /// + /// + /// + public partial class MultiDesktopIconUI : Javax.Swing.Plaf.DesktopIconUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiDesktopIconUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiDesktopIconUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiDesktopIconUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiDesktopIconUI implementation public partial class MultiDesktopIconUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopPaneUI.cs index 3e5e24d77b..f560902c6b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiDesktopPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiDesktopPaneUI + #region MultiDesktopPaneUI declaration + /// + /// + /// + public partial class MultiDesktopPaneUI : Javax.Swing.Plaf.DesktopPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiDesktopPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiDesktopPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiDesktopPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiDesktopPaneUI implementation public partial class MultiDesktopPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiFileChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiFileChooserUI.cs index a477c8628e..b84e2ca1e5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiFileChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiFileChooserUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiFileChooserUI + #region MultiFileChooserUI declaration + /// + /// + /// + public partial class MultiFileChooserUI : Javax.Swing.Plaf.FileChooserUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiFileChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiFileChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiFileChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiFileChooserUI implementation public partial class MultiFileChooserUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiInternalFrameUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiInternalFrameUI.cs index b0c60e182a..b0d769b0e0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiInternalFrameUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiInternalFrameUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiInternalFrameUI + #region MultiInternalFrameUI declaration + /// + /// + /// + public partial class MultiInternalFrameUI : Javax.Swing.Plaf.InternalFrameUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiInternalFrameUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiInternalFrameUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiInternalFrameUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiInternalFrameUI implementation public partial class MultiInternalFrameUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLabelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLabelUI.cs index 11f978ce59..a018cb8d85 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLabelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLabelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiLabelUI + #region MultiLabelUI declaration + /// + /// + /// + public partial class MultiLabelUI : Javax.Swing.Plaf.LabelUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiLabelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiLabelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiLabelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiLabelUI implementation public partial class MultiLabelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiListUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiListUI.cs index 1052c73392..23e137ae1a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiListUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiListUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiListUI + #region MultiListUI declaration + /// + /// + /// + public partial class MultiListUI : Javax.Swing.Plaf.ListUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiListUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiListUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiListUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiListUI implementation public partial class MultiListUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLookAndFeel.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLookAndFeel.cs index ae9551fae6..0f55712a68 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLookAndFeel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiLookAndFeel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiLookAndFeel + #region MultiLookAndFeel declaration + /// + /// + /// + public partial class MultiLookAndFeel : Javax.Swing.LookAndFeel + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiLookAndFeel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiLookAndFeel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiLookAndFeel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiLookAndFeel implementation public partial class MultiLookAndFeel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuBarUI.cs index ee772f3913..c6db3c1f2e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiMenuBarUI + #region MultiMenuBarUI declaration + /// + /// + /// + public partial class MultiMenuBarUI : Javax.Swing.Plaf.MenuBarUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiMenuBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiMenuBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiMenuBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiMenuBarUI implementation public partial class MultiMenuBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuItemUI.cs index b83041a10a..44edf89045 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiMenuItemUI + #region MultiMenuItemUI declaration + /// + /// + /// + public partial class MultiMenuItemUI : Javax.Swing.Plaf.MenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiMenuItemUI implementation public partial class MultiMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiOptionPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiOptionPaneUI.cs index 974b3d8e97..7a76ffcbcd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiOptionPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiOptionPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiOptionPaneUI + #region MultiOptionPaneUI declaration + /// + /// + /// + public partial class MultiOptionPaneUI : Javax.Swing.Plaf.OptionPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiOptionPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiOptionPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiOptionPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiOptionPaneUI implementation public partial class MultiOptionPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPanelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPanelUI.cs index 0510651fde..81363f9fe3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPanelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPanelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiPanelUI + #region MultiPanelUI declaration + /// + /// + /// + public partial class MultiPanelUI : Javax.Swing.Plaf.PanelUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiPanelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiPanelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiPanelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiPanelUI implementation public partial class MultiPanelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPopupMenuUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPopupMenuUI.cs index cd6237ed39..ff29338120 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPopupMenuUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiPopupMenuUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiPopupMenuUI + #region MultiPopupMenuUI declaration + /// + /// + /// + public partial class MultiPopupMenuUI : Javax.Swing.Plaf.PopupMenuUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiPopupMenuUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiPopupMenuUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiPopupMenuUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiPopupMenuUI implementation public partial class MultiPopupMenuUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiProgressBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiProgressBarUI.cs index b7427ee0c9..d5be19f0bb 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiProgressBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiProgressBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiProgressBarUI + #region MultiProgressBarUI declaration + /// + /// + /// + public partial class MultiProgressBarUI : Javax.Swing.Plaf.ProgressBarUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiProgressBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiProgressBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiProgressBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiProgressBarUI implementation public partial class MultiProgressBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiRootPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiRootPaneUI.cs index 77b589178b..f5ba125ea4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiRootPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiRootPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiRootPaneUI + #region MultiRootPaneUI declaration + /// + /// + /// + public partial class MultiRootPaneUI : Javax.Swing.Plaf.RootPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiRootPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiRootPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiRootPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiRootPaneUI implementation public partial class MultiRootPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollBarUI.cs index bb6888f4fb..59313108e4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiScrollBarUI + #region MultiScrollBarUI declaration + /// + /// + /// + public partial class MultiScrollBarUI : Javax.Swing.Plaf.ScrollBarUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiScrollBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiScrollBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiScrollBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiScrollBarUI implementation public partial class MultiScrollBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollPaneUI.cs index 52402d39e6..3db3a478f8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiScrollPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiScrollPaneUI + #region MultiScrollPaneUI declaration + /// + /// + /// + public partial class MultiScrollPaneUI : Javax.Swing.Plaf.ScrollPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiScrollPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiScrollPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiScrollPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiScrollPaneUI implementation public partial class MultiScrollPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSeparatorUI.cs index cd0d3e2fa2..0f777d31f8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiSeparatorUI + #region MultiSeparatorUI declaration + /// + /// + /// + public partial class MultiSeparatorUI : Javax.Swing.Plaf.SeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiSeparatorUI implementation public partial class MultiSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSliderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSliderUI.cs index 0d29ec7f3f..4d5ced716f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSliderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSliderUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiSliderUI + #region MultiSliderUI declaration + /// + /// + /// + public partial class MultiSliderUI : Javax.Swing.Plaf.SliderUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiSliderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiSliderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiSliderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiSliderUI implementation public partial class MultiSliderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSpinnerUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSpinnerUI.cs index 8bf0475727..2d2f8d8613 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSpinnerUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSpinnerUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiSpinnerUI + #region MultiSpinnerUI declaration + /// + /// + /// + public partial class MultiSpinnerUI : Javax.Swing.Plaf.SpinnerUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiSpinnerUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiSpinnerUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiSpinnerUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiSpinnerUI implementation public partial class MultiSpinnerUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSplitPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSplitPaneUI.cs index edd70bd337..a6b88e7eab 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSplitPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiSplitPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiSplitPaneUI + #region MultiSplitPaneUI declaration + /// + /// + /// + public partial class MultiSplitPaneUI : Javax.Swing.Plaf.SplitPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiSplitPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiSplitPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiSplitPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiSplitPaneUI implementation public partial class MultiSplitPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTabbedPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTabbedPaneUI.cs index 23e8fc65e2..8c41d03500 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTabbedPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTabbedPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiTabbedPaneUI + #region MultiTabbedPaneUI declaration + /// + /// + /// + public partial class MultiTabbedPaneUI : Javax.Swing.Plaf.TabbedPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiTabbedPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiTabbedPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiTabbedPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiTabbedPaneUI implementation public partial class MultiTabbedPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableHeaderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableHeaderUI.cs index d11b3cc4c5..550597974a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableHeaderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableHeaderUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiTableHeaderUI + #region MultiTableHeaderUI declaration + /// + /// + /// + public partial class MultiTableHeaderUI : Javax.Swing.Plaf.TableHeaderUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiTableHeaderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiTableHeaderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiTableHeaderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiTableHeaderUI implementation public partial class MultiTableHeaderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableUI.cs index b0b9e613f2..691eff6e5d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTableUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiTableUI + #region MultiTableUI declaration + /// + /// + /// + public partial class MultiTableUI : Javax.Swing.Plaf.TableUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiTableUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiTableUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiTableUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiTableUI implementation public partial class MultiTableUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTextUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTextUI.cs index 8a0e80a9dc..847d289346 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTextUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTextUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiTextUI + #region MultiTextUI declaration + /// + /// + /// + public partial class MultiTextUI : Javax.Swing.Plaf.TextUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiTextUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiTextUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiTextUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiTextUI implementation public partial class MultiTextUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolBarUI.cs index 867b836ec7..26bd69c011 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiToolBarUI + #region MultiToolBarUI declaration + /// + /// + /// + public partial class MultiToolBarUI : Javax.Swing.Plaf.ToolBarUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiToolBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiToolBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiToolBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiToolBarUI implementation public partial class MultiToolBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolTipUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolTipUI.cs index 0df5d31031..b2d2850701 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolTipUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiToolTipUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiToolTipUI + #region MultiToolTipUI declaration + /// + /// + /// + public partial class MultiToolTipUI : Javax.Swing.Plaf.ToolTipUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiToolTipUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiToolTipUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiToolTipUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiToolTipUI implementation public partial class MultiToolTipUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTreeUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTreeUI.cs index 2cd025c67b..9c5a731781 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTreeUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiTreeUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiTreeUI + #region MultiTreeUI declaration + /// + /// + /// + public partial class MultiTreeUI : Javax.Swing.Plaf.TreeUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiTreeUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiTreeUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiTreeUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiTreeUI implementation public partial class MultiTreeUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiViewportUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiViewportUI.cs index fe64a86bbc..5d6686d66c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiViewportUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Multi/MultiViewportUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Multi { - #region MultiViewportUI + #region MultiViewportUI declaration + /// + /// + /// + public partial class MultiViewportUI : Javax.Swing.Plaf.ViewportUI + { + const string _bridgeClassName = "javax.swing.plaf.multi.MultiViewportUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MultiViewportUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MultiViewportUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MultiViewportUI implementation public partial class MultiViewportUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AbstractRegionPainter.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AbstractRegionPainter.cs index 62d7fd0437..856732425d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AbstractRegionPainter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AbstractRegionPainter.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf.Nimbus { - #region AbstractRegionPainter + #region AbstractRegionPainter declaration + /// + /// + /// + public partial class AbstractRegionPainter : Javax.Swing.Painter + { + const string _bridgeClassName = "javax.swing.plaf.nimbus.AbstractRegionPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractRegionPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractRegionPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractRegionPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractRegionPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractRegionPainter implementation public partial class AbstractRegionPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AllPackageClasses.cs deleted file mode 100644 index af581e1a5e..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/AllPackageClasses.cs +++ /dev/null @@ -1,262 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Plaf.Nimbus -{ - #region AbstractRegionPainter - /// - /// - /// - public partial class AbstractRegionPainter : Javax.Swing.Painter - { - const string _bridgeClassName = "javax.swing.plaf.nimbus.AbstractRegionPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractRegionPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractRegionPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractRegionPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractRegionPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NimbusLookAndFeel - /// - /// - /// - public partial class NimbusLookAndFeel : Javax.Swing.Plaf.Synth.SynthLookAndFeel - { - const string _bridgeClassName = "javax.swing.plaf.nimbus.NimbusLookAndFeel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NimbusLookAndFeel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NimbusLookAndFeel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NimbusStyle - /// - /// - /// - public partial class NimbusStyle : Javax.Swing.Plaf.Synth.SynthStyle - { - const string _bridgeClassName = "javax.swing.plaf.nimbus.NimbusStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NimbusStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NimbusStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region State - /// - /// - /// - public partial class State : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.nimbus.State"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public State() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public State(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region State - /// - /// - /// - /// - public partial class State : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where T : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.plaf.nimbus.State"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public State() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public State(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusLookAndFeel.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusLookAndFeel.cs index f3e62b491d..2f5d3a92bd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusLookAndFeel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusLookAndFeel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Nimbus { - #region NimbusLookAndFeel + #region NimbusLookAndFeel declaration + /// + /// + /// + public partial class NimbusLookAndFeel : Javax.Swing.Plaf.Synth.SynthLookAndFeel + { + const string _bridgeClassName = "javax.swing.plaf.nimbus.NimbusLookAndFeel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NimbusLookAndFeel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NimbusLookAndFeel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NimbusLookAndFeel implementation public partial class NimbusLookAndFeel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusStyle.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusStyle.cs index 1a8d9a39f6..02f045d5fa 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusStyle.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/NimbusStyle.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Nimbus { - #region NimbusStyle + #region NimbusStyle declaration + /// + /// + /// + public partial class NimbusStyle : Javax.Swing.Plaf.Synth.SynthStyle + { + const string _bridgeClassName = "javax.swing.plaf.nimbus.NimbusStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NimbusStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NimbusStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NimbusStyle implementation public partial class NimbusStyle { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/State.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/State.cs index 7ff12a501b..aa3f8621d5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/State.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Nimbus/State.cs @@ -25,7 +25,102 @@ namespace Javax.Swing.Plaf.Nimbus { - #region State + #region State declaration + /// + /// + /// + public partial class State : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.nimbus.State"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public State() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public State(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region State declaration + /// + /// + /// + /// + public partial class State : MASES.JCOBridge.C2JBridge.JVMBridgeBase> where T : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.plaf.nimbus.State"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public State() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("State class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public State(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region State implementation public partial class State { #region Constructors @@ -56,7 +151,7 @@ public partial class State } #endregion - #region State + #region State implementation public partial class State { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/OptionPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/OptionPaneUI.cs index fd3640d576..448bbb0c27 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/OptionPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/OptionPaneUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region OptionPaneUI + #region OptionPaneUI declaration + /// + /// + /// + public partial class OptionPaneUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.OptionPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OptionPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OptionPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OptionPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OptionPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OptionPaneUI implementation public partial class OptionPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/PanelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/PanelUI.cs index 22f65a96d8..32b172f092 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/PanelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/PanelUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region PanelUI + #region PanelUI declaration + /// + /// + /// + public partial class PanelUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.PanelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PanelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PanelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PanelUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PanelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PanelUI implementation public partial class PanelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/PopupMenuUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/PopupMenuUI.cs index aa53d7908f..4a991fc306 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/PopupMenuUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/PopupMenuUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region PopupMenuUI + #region PopupMenuUI declaration + /// + /// + /// + public partial class PopupMenuUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.PopupMenuUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PopupMenuUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PopupMenuUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PopupMenuUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PopupMenuUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PopupMenuUI implementation public partial class PopupMenuUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ProgressBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ProgressBarUI.cs index 54003479f9..f558c1fd36 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ProgressBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ProgressBarUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ProgressBarUI + #region ProgressBarUI declaration + /// + /// + /// + public partial class ProgressBarUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ProgressBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProgressBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProgressBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProgressBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProgressBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ProgressBarUI implementation public partial class ProgressBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/RootPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/RootPaneUI.cs index 4bd9524702..783f39fce0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/RootPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/RootPaneUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region RootPaneUI + #region RootPaneUI declaration + /// + /// + /// + public partial class RootPaneUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.RootPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RootPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RootPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RootPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RootPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RootPaneUI implementation public partial class RootPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollBarUI.cs index 0b31dfefa7..7f43464805 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollBarUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ScrollBarUI + #region ScrollBarUI declaration + /// + /// + /// + public partial class ScrollBarUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ScrollBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScrollBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScrollBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScrollBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScrollBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScrollBarUI implementation public partial class ScrollBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollPaneUI.cs index 943c47b5d4..66efc1e136 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ScrollPaneUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ScrollPaneUI + #region ScrollPaneUI declaration + /// + /// + /// + public partial class ScrollPaneUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ScrollPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScrollPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScrollPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScrollPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScrollPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ScrollPaneUI implementation public partial class ScrollPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/SeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/SeparatorUI.cs index b29dc54e50..cfda8fa3af 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/SeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/SeparatorUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region SeparatorUI + #region SeparatorUI declaration + /// + /// + /// + public partial class SeparatorUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.SeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SeparatorUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SeparatorUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SeparatorUI implementation public partial class SeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/SliderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/SliderUI.cs index 9cba104bb4..0bd0b8d752 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/SliderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/SliderUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region SliderUI + #region SliderUI declaration + /// + /// + /// + public partial class SliderUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.SliderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SliderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SliderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SliderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SliderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SliderUI implementation public partial class SliderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/SpinnerUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/SpinnerUI.cs index 4103dec941..6b8e372737 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/SpinnerUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/SpinnerUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region SpinnerUI + #region SpinnerUI declaration + /// + /// + /// + public partial class SpinnerUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.SpinnerUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SpinnerUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SpinnerUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SpinnerUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SpinnerUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SpinnerUI implementation public partial class SpinnerUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/SplitPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/SplitPaneUI.cs index d601333560..02a09e7a1d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/SplitPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/SplitPaneUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region SplitPaneUI + #region SplitPaneUI declaration + /// + /// + /// + public partial class SplitPaneUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.SplitPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SplitPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SplitPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SplitPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SplitPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SplitPaneUI implementation public partial class SplitPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/AllPackageClasses.cs deleted file mode 100644 index 96ec1dd43a..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/AllPackageClasses.cs +++ /dev/null @@ -1,2337 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Plaf.Synth -{ - #region ColorType - /// - /// - /// - public partial class ColorType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.ColorType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Region - /// - /// - /// - public partial class Region : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.Region"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Region() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Region(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthButtonUI - /// - /// - /// - public partial class SynthButtonUI : Javax.Swing.Plaf.Basic.BasicButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthCheckBoxMenuItemUI - /// - /// - /// - public partial class SynthCheckBoxMenuItemUI : Javax.Swing.Plaf.Synth.SynthMenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthCheckBoxMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthCheckBoxMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthCheckBoxMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthCheckBoxUI - /// - /// - /// - public partial class SynthCheckBoxUI : Javax.Swing.Plaf.Synth.SynthRadioButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthCheckBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthCheckBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthCheckBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthColorChooserUI - /// - /// - /// - public partial class SynthColorChooserUI : Javax.Swing.Plaf.Basic.BasicColorChooserUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthColorChooserUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthColorChooserUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthColorChooserUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthComboBoxUI - /// - /// - /// - public partial class SynthComboBoxUI : Javax.Swing.Plaf.Basic.BasicComboBoxUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthComboBoxUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthComboBoxUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthComboBoxUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthConstants - /// - /// - /// - public partial class SynthConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SynthConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SynthConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthContext - /// - /// - /// - public partial class SynthContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthDesktopIconUI - /// - /// - /// - public partial class SynthDesktopIconUI : Javax.Swing.Plaf.Basic.BasicDesktopIconUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthDesktopIconUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthDesktopIconUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthDesktopIconUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthDesktopPaneUI - /// - /// - /// - public partial class SynthDesktopPaneUI : Javax.Swing.Plaf.Basic.BasicDesktopPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthDesktopPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthDesktopPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthDesktopPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthEditorPaneUI - /// - /// - /// - public partial class SynthEditorPaneUI : Javax.Swing.Plaf.Basic.BasicEditorPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthEditorPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthEditorPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthEditorPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthFormattedTextFieldUI - /// - /// - /// - public partial class SynthFormattedTextFieldUI : Javax.Swing.Plaf.Synth.SynthTextFieldUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthFormattedTextFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthFormattedTextFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthFormattedTextFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthGraphicsUtils - /// - /// - /// - public partial class SynthGraphicsUtils : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthGraphicsUtils"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthGraphicsUtils() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthGraphicsUtils(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthIcon - /// - /// - /// - public partial class SynthIcon : Javax.Swing.Icon - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthIcon"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SynthIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthIcon() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SynthIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthIcon(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthInternalFrameUI - /// - /// - /// - public partial class SynthInternalFrameUI : Javax.Swing.Plaf.Basic.BasicInternalFrameUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthInternalFrameUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthInternalFrameUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthInternalFrameUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthLabelUI - /// - /// - /// - public partial class SynthLabelUI : Javax.Swing.Plaf.Basic.BasicLabelUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthLabelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthLabelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthLabelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthListUI - /// - /// - /// - public partial class SynthListUI : Javax.Swing.Plaf.Basic.BasicListUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthListUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthListUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthListUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthLookAndFeel - /// - /// - /// - public partial class SynthLookAndFeel : Javax.Swing.Plaf.Basic.BasicLookAndFeel - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthLookAndFeel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthLookAndFeel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthLookAndFeel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthMenuBarUI - /// - /// - /// - public partial class SynthMenuBarUI : Javax.Swing.Plaf.Basic.BasicMenuBarUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthMenuBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthMenuBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthMenuBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthMenuItemUI - /// - /// - /// - public partial class SynthMenuItemUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthMenuUI - /// - /// - /// - public partial class SynthMenuUI : Javax.Swing.Plaf.Basic.BasicMenuUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthMenuUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthMenuUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthMenuUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthOptionPaneUI - /// - /// - /// - public partial class SynthOptionPaneUI : Javax.Swing.Plaf.Basic.BasicOptionPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthOptionPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthOptionPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthOptionPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthPainter - /// - /// - /// - public partial class SynthPainter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SynthPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SynthPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthPanelUI - /// - /// - /// - public partial class SynthPanelUI : Javax.Swing.Plaf.Basic.BasicPanelUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthPanelUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthPanelUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthPanelUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthPasswordFieldUI - /// - /// - /// - public partial class SynthPasswordFieldUI : Javax.Swing.Plaf.Synth.SynthTextFieldUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthPasswordFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthPasswordFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthPasswordFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthPopupMenuUI - /// - /// - /// - public partial class SynthPopupMenuUI : Javax.Swing.Plaf.Basic.BasicPopupMenuUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthPopupMenuUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthPopupMenuUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthPopupMenuUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthProgressBarUI - /// - /// - /// - public partial class SynthProgressBarUI : Javax.Swing.Plaf.Basic.BasicProgressBarUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthProgressBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthProgressBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthProgressBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthRadioButtonMenuItemUI - /// - /// - /// - public partial class SynthRadioButtonMenuItemUI : Javax.Swing.Plaf.Synth.SynthMenuItemUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthRadioButtonMenuItemUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthRadioButtonMenuItemUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthRadioButtonMenuItemUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthRadioButtonUI - /// - /// - /// - public partial class SynthRadioButtonUI : Javax.Swing.Plaf.Synth.SynthToggleButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthRadioButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthRadioButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthRadioButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthRootPaneUI - /// - /// - /// - public partial class SynthRootPaneUI : Javax.Swing.Plaf.Basic.BasicRootPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthRootPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthRootPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthRootPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthScrollBarUI - /// - /// - /// - public partial class SynthScrollBarUI : Javax.Swing.Plaf.Basic.BasicScrollBarUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthScrollBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthScrollBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthScrollBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthScrollPaneUI - /// - /// - /// - public partial class SynthScrollPaneUI : Javax.Swing.Plaf.Basic.BasicScrollPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthScrollPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthScrollPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthScrollPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthSeparatorUI - /// - /// - /// - public partial class SynthSeparatorUI : Javax.Swing.Plaf.SeparatorUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthSeparatorUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthSeparatorUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthSeparatorUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthSliderUI - /// - /// - /// - public partial class SynthSliderUI : Javax.Swing.Plaf.Basic.BasicSliderUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthSliderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthSliderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthSliderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthSpinnerUI - /// - /// - /// - public partial class SynthSpinnerUI : Javax.Swing.Plaf.Basic.BasicSpinnerUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthSpinnerUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthSpinnerUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthSpinnerUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthSplitPaneUI - /// - /// - /// - public partial class SynthSplitPaneUI : Javax.Swing.Plaf.Basic.BasicSplitPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthSplitPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthSplitPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthSplitPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthStyle - /// - /// - /// - public partial class SynthStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SynthStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SynthStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthStyleFactory - /// - /// - /// - public partial class SynthStyleFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthStyleFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SynthStyleFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthStyleFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SynthStyleFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthStyleFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTabbedPaneUI - /// - /// - /// - public partial class SynthTabbedPaneUI : Javax.Swing.Plaf.Basic.BasicTabbedPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTabbedPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTabbedPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTabbedPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTableHeaderUI - /// - /// - /// - public partial class SynthTableHeaderUI : Javax.Swing.Plaf.Basic.BasicTableHeaderUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTableHeaderUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTableHeaderUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTableHeaderUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTableUI - /// - /// - /// - public partial class SynthTableUI : Javax.Swing.Plaf.Basic.BasicTableUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTableUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTableUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTableUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTextAreaUI - /// - /// - /// - public partial class SynthTextAreaUI : Javax.Swing.Plaf.Basic.BasicTextAreaUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTextAreaUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTextAreaUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTextAreaUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTextFieldUI - /// - /// - /// - public partial class SynthTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTextFieldUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTextFieldUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTextFieldUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTextPaneUI - /// - /// - /// - public partial class SynthTextPaneUI : Javax.Swing.Plaf.Synth.SynthEditorPaneUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTextPaneUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTextPaneUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTextPaneUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthToggleButtonUI - /// - /// - /// - public partial class SynthToggleButtonUI : Javax.Swing.Plaf.Synth.SynthButtonUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthToggleButtonUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthToggleButtonUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthToggleButtonUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthToolBarUI - /// - /// - /// - public partial class SynthToolBarUI : Javax.Swing.Plaf.Basic.BasicToolBarUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthToolBarUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthToolBarUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthToolBarUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthToolTipUI - /// - /// - /// - public partial class SynthToolTipUI : Javax.Swing.Plaf.Basic.BasicToolTipUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthToolTipUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthToolTipUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthToolTipUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthTreeUI - /// - /// - /// - public partial class SynthTreeUI : Javax.Swing.Plaf.Basic.BasicTreeUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthTreeUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthTreeUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthTreeUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthUI - /// - /// - /// - public partial class SynthUI : Javax.Swing.Plaf.Synth.SynthConstants - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SynthUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SynthUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SynthUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SynthViewportUI - /// - /// - /// - public partial class SynthViewportUI : Javax.Swing.Plaf.ViewportUI - { - const string _bridgeClassName = "javax.swing.plaf.synth.SynthViewportUI"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SynthViewportUI() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SynthViewportUI(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/ColorType.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/ColorType.cs index 79c09cc41c..38e0dd8da1 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/ColorType.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/ColorType.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region ColorType + #region ColorType declaration + /// + /// + /// + public partial class ColorType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.ColorType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ColorType implementation public partial class ColorType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/Region.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/Region.cs index c34ec39053..9f7b53c16b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/Region.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/Region.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region Region + #region Region declaration + /// + /// + /// + public partial class Region : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.Region"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Region() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Region(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Region implementation public partial class Region { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthButtonUI.cs index fb28035e5a..e6d0cbf56e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthButtonUI + #region SynthButtonUI declaration + /// + /// + /// + public partial class SynthButtonUI : Javax.Swing.Plaf.Basic.BasicButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthButtonUI implementation public partial class SynthButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxMenuItemUI.cs index 8562347229..2c153a9602 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthCheckBoxMenuItemUI + #region SynthCheckBoxMenuItemUI declaration + /// + /// + /// + public partial class SynthCheckBoxMenuItemUI : Javax.Swing.Plaf.Synth.SynthMenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthCheckBoxMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthCheckBoxMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthCheckBoxMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthCheckBoxMenuItemUI implementation public partial class SynthCheckBoxMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxUI.cs index 79d2fca75a..aa90d0346b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthCheckBoxUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthCheckBoxUI + #region SynthCheckBoxUI declaration + /// + /// + /// + public partial class SynthCheckBoxUI : Javax.Swing.Plaf.Synth.SynthRadioButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthCheckBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthCheckBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthCheckBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthCheckBoxUI implementation public partial class SynthCheckBoxUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthColorChooserUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthColorChooserUI.cs index 8e23f98e72..38ab66e843 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthColorChooserUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthColorChooserUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthColorChooserUI + #region SynthColorChooserUI declaration + /// + /// + /// + public partial class SynthColorChooserUI : Javax.Swing.Plaf.Basic.BasicColorChooserUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthColorChooserUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthColorChooserUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthColorChooserUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthColorChooserUI implementation public partial class SynthColorChooserUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthComboBoxUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthComboBoxUI.cs index 5ea47245a5..e0d62114c0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthComboBoxUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthComboBoxUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthComboBoxUI + #region SynthComboBoxUI declaration + /// + /// + /// + public partial class SynthComboBoxUI : Javax.Swing.Plaf.Basic.BasicComboBoxUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthComboBoxUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthComboBoxUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthComboBoxUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthComboBoxUI implementation public partial class SynthComboBoxUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthConstants.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthConstants.cs index 4bcee8c607..451325d517 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthConstants.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthConstants.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Plaf.Synth { + #region SynthConstants declaration + /// + /// + /// + public partial class SynthConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SynthConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SynthConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISynthConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISynthConstants } #endregion - #region SynthConstants + #region SynthConstants implementation public partial class SynthConstants : Javax.Swing.Plaf.Synth.ISynthConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthContext.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthContext.cs index ddbd8c032a..ca5c1c05d6 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthContext.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthContext.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthContext + #region SynthContext declaration + /// + /// + /// + public partial class SynthContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthContext implementation public partial class SynthContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopIconUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopIconUI.cs index 801c081915..ae4b4e270a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopIconUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopIconUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthDesktopIconUI + #region SynthDesktopIconUI declaration + /// + /// + /// + public partial class SynthDesktopIconUI : Javax.Swing.Plaf.Basic.BasicDesktopIconUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthDesktopIconUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthDesktopIconUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthDesktopIconUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthDesktopIconUI implementation public partial class SynthDesktopIconUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopPaneUI.cs index 1986f09272..c770c77d71 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthDesktopPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthDesktopPaneUI + #region SynthDesktopPaneUI declaration + /// + /// + /// + public partial class SynthDesktopPaneUI : Javax.Swing.Plaf.Basic.BasicDesktopPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthDesktopPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthDesktopPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthDesktopPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthDesktopPaneUI implementation public partial class SynthDesktopPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthEditorPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthEditorPaneUI.cs index 82b86bdddc..58962fd861 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthEditorPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthEditorPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthEditorPaneUI + #region SynthEditorPaneUI declaration + /// + /// + /// + public partial class SynthEditorPaneUI : Javax.Swing.Plaf.Basic.BasicEditorPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthEditorPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthEditorPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthEditorPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthEditorPaneUI implementation public partial class SynthEditorPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthFormattedTextFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthFormattedTextFieldUI.cs index c1d4c1fe09..6c451033c1 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthFormattedTextFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthFormattedTextFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthFormattedTextFieldUI + #region SynthFormattedTextFieldUI declaration + /// + /// + /// + public partial class SynthFormattedTextFieldUI : Javax.Swing.Plaf.Synth.SynthTextFieldUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthFormattedTextFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthFormattedTextFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthFormattedTextFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthFormattedTextFieldUI implementation public partial class SynthFormattedTextFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthGraphicsUtils.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthGraphicsUtils.cs index 9254c7dc18..55ee9c35e2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthGraphicsUtils.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthGraphicsUtils.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthGraphicsUtils + #region SynthGraphicsUtils declaration + /// + /// + /// + public partial class SynthGraphicsUtils : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthGraphicsUtils"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthGraphicsUtils() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthGraphicsUtils(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthGraphicsUtils implementation public partial class SynthGraphicsUtils { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthIcon.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthIcon.cs index 7571790d23..5382a4b002 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthIcon.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthIcon.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Plaf.Synth { + #region SynthIcon declaration + /// + /// + /// + public partial class SynthIcon : Javax.Swing.Icon + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthIcon"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SynthIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthIcon() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SynthIcon class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthIcon(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISynthIcon /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface ISynthIcon : Javax.Swing.IIcon } #endregion - #region SynthIcon + #region SynthIcon implementation public partial class SynthIcon : Javax.Swing.Plaf.Synth.ISynthIcon { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthInternalFrameUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthInternalFrameUI.cs index 917424a3c7..c644a37027 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthInternalFrameUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthInternalFrameUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthInternalFrameUI + #region SynthInternalFrameUI declaration + /// + /// + /// + public partial class SynthInternalFrameUI : Javax.Swing.Plaf.Basic.BasicInternalFrameUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthInternalFrameUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthInternalFrameUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthInternalFrameUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthInternalFrameUI implementation public partial class SynthInternalFrameUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLabelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLabelUI.cs index fd8c3cedd0..4c926eef58 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLabelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLabelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthLabelUI + #region SynthLabelUI declaration + /// + /// + /// + public partial class SynthLabelUI : Javax.Swing.Plaf.Basic.BasicLabelUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthLabelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthLabelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthLabelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthLabelUI implementation public partial class SynthLabelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthListUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthListUI.cs index 4db6c2101a..81fe810e25 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthListUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthListUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthListUI + #region SynthListUI declaration + /// + /// + /// + public partial class SynthListUI : Javax.Swing.Plaf.Basic.BasicListUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthListUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthListUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthListUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthListUI implementation public partial class SynthListUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLookAndFeel.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLookAndFeel.cs index c8427a4751..4e32829bc4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLookAndFeel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthLookAndFeel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthLookAndFeel + #region SynthLookAndFeel declaration + /// + /// + /// + public partial class SynthLookAndFeel : Javax.Swing.Plaf.Basic.BasicLookAndFeel + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthLookAndFeel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthLookAndFeel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthLookAndFeel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthLookAndFeel implementation public partial class SynthLookAndFeel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuBarUI.cs index c8e73dda6a..9f0611b3ed 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthMenuBarUI + #region SynthMenuBarUI declaration + /// + /// + /// + public partial class SynthMenuBarUI : Javax.Swing.Plaf.Basic.BasicMenuBarUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthMenuBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthMenuBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthMenuBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthMenuBarUI implementation public partial class SynthMenuBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuItemUI.cs index 042d2e9f4f..98b5e18349 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthMenuItemUI + #region SynthMenuItemUI declaration + /// + /// + /// + public partial class SynthMenuItemUI : Javax.Swing.Plaf.Basic.BasicMenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthMenuItemUI implementation public partial class SynthMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuUI.cs index bfb765eebb..702210477d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthMenuUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthMenuUI + #region SynthMenuUI declaration + /// + /// + /// + public partial class SynthMenuUI : Javax.Swing.Plaf.Basic.BasicMenuUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthMenuUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthMenuUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthMenuUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthMenuUI implementation public partial class SynthMenuUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthOptionPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthOptionPaneUI.cs index b05c070956..7ababef268 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthOptionPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthOptionPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthOptionPaneUI + #region SynthOptionPaneUI declaration + /// + /// + /// + public partial class SynthOptionPaneUI : Javax.Swing.Plaf.Basic.BasicOptionPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthOptionPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthOptionPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthOptionPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthOptionPaneUI implementation public partial class SynthOptionPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPainter.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPainter.cs index 15f55a825b..190d0b149a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPainter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPainter.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthPainter + #region SynthPainter declaration + /// + /// + /// + public partial class SynthPainter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SynthPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SynthPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthPainter implementation public partial class SynthPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPanelUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPanelUI.cs index 5d3df260f2..4466660652 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPanelUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPanelUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthPanelUI + #region SynthPanelUI declaration + /// + /// + /// + public partial class SynthPanelUI : Javax.Swing.Plaf.Basic.BasicPanelUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthPanelUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthPanelUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthPanelUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthPanelUI implementation public partial class SynthPanelUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPasswordFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPasswordFieldUI.cs index f2aa1ba2c2..6d893a5ad9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPasswordFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPasswordFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthPasswordFieldUI + #region SynthPasswordFieldUI declaration + /// + /// + /// + public partial class SynthPasswordFieldUI : Javax.Swing.Plaf.Synth.SynthTextFieldUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthPasswordFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthPasswordFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthPasswordFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthPasswordFieldUI implementation public partial class SynthPasswordFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPopupMenuUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPopupMenuUI.cs index bfba066548..2ff53177d8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPopupMenuUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthPopupMenuUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthPopupMenuUI + #region SynthPopupMenuUI declaration + /// + /// + /// + public partial class SynthPopupMenuUI : Javax.Swing.Plaf.Basic.BasicPopupMenuUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthPopupMenuUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthPopupMenuUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthPopupMenuUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthPopupMenuUI implementation public partial class SynthPopupMenuUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthProgressBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthProgressBarUI.cs index 47afe58587..4038258194 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthProgressBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthProgressBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthProgressBarUI + #region SynthProgressBarUI declaration + /// + /// + /// + public partial class SynthProgressBarUI : Javax.Swing.Plaf.Basic.BasicProgressBarUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthProgressBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthProgressBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthProgressBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthProgressBarUI implementation public partial class SynthProgressBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonMenuItemUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonMenuItemUI.cs index dbcaba1cd5..a4118620ea 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonMenuItemUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonMenuItemUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthRadioButtonMenuItemUI + #region SynthRadioButtonMenuItemUI declaration + /// + /// + /// + public partial class SynthRadioButtonMenuItemUI : Javax.Swing.Plaf.Synth.SynthMenuItemUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthRadioButtonMenuItemUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthRadioButtonMenuItemUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthRadioButtonMenuItemUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthRadioButtonMenuItemUI implementation public partial class SynthRadioButtonMenuItemUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonUI.cs index 41de5c5b22..664bab4131 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRadioButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthRadioButtonUI + #region SynthRadioButtonUI declaration + /// + /// + /// + public partial class SynthRadioButtonUI : Javax.Swing.Plaf.Synth.SynthToggleButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthRadioButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthRadioButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthRadioButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthRadioButtonUI implementation public partial class SynthRadioButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRootPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRootPaneUI.cs index 432710eea2..9633eed1a0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRootPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthRootPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthRootPaneUI + #region SynthRootPaneUI declaration + /// + /// + /// + public partial class SynthRootPaneUI : Javax.Swing.Plaf.Basic.BasicRootPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthRootPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthRootPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthRootPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthRootPaneUI implementation public partial class SynthRootPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollBarUI.cs index 81bb69b4c2..d75fe951a8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthScrollBarUI + #region SynthScrollBarUI declaration + /// + /// + /// + public partial class SynthScrollBarUI : Javax.Swing.Plaf.Basic.BasicScrollBarUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthScrollBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthScrollBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthScrollBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthScrollBarUI implementation public partial class SynthScrollBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollPaneUI.cs index c8e97f588b..4eb552909d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthScrollPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthScrollPaneUI + #region SynthScrollPaneUI declaration + /// + /// + /// + public partial class SynthScrollPaneUI : Javax.Swing.Plaf.Basic.BasicScrollPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthScrollPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthScrollPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthScrollPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthScrollPaneUI implementation public partial class SynthScrollPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSeparatorUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSeparatorUI.cs index 447bb3ba2d..2e72fb45a5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSeparatorUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSeparatorUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthSeparatorUI + #region SynthSeparatorUI declaration + /// + /// + /// + public partial class SynthSeparatorUI : Javax.Swing.Plaf.SeparatorUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthSeparatorUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthSeparatorUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthSeparatorUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthSeparatorUI implementation public partial class SynthSeparatorUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSliderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSliderUI.cs index 71eb90fc44..8e82b359a9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSliderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSliderUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthSliderUI + #region SynthSliderUI declaration + /// + /// + /// + public partial class SynthSliderUI : Javax.Swing.Plaf.Basic.BasicSliderUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthSliderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthSliderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthSliderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthSliderUI implementation public partial class SynthSliderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSpinnerUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSpinnerUI.cs index 35ff2c884a..88a1d4304c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSpinnerUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSpinnerUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthSpinnerUI + #region SynthSpinnerUI declaration + /// + /// + /// + public partial class SynthSpinnerUI : Javax.Swing.Plaf.Basic.BasicSpinnerUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthSpinnerUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthSpinnerUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthSpinnerUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthSpinnerUI implementation public partial class SynthSpinnerUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSplitPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSplitPaneUI.cs index 5848066e19..65d34815b2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSplitPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthSplitPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthSplitPaneUI + #region SynthSplitPaneUI declaration + /// + /// + /// + public partial class SynthSplitPaneUI : Javax.Swing.Plaf.Basic.BasicSplitPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthSplitPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthSplitPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthSplitPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthSplitPaneUI implementation public partial class SynthSplitPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyle.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyle.cs index b7f177e033..d806e7fecf 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyle.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyle.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthStyle + #region SynthStyle declaration + /// + /// + /// + public partial class SynthStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SynthStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SynthStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthStyle implementation public partial class SynthStyle { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyleFactory.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyleFactory.cs index 606686b23f..1f3ae8e8ee 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyleFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthStyleFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthStyleFactory + #region SynthStyleFactory declaration + /// + /// + /// + public partial class SynthStyleFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthStyleFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SynthStyleFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthStyleFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SynthStyleFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthStyleFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthStyleFactory implementation public partial class SynthStyleFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTabbedPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTabbedPaneUI.cs index d12f7a3066..34d99e3f3c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTabbedPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTabbedPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTabbedPaneUI + #region SynthTabbedPaneUI declaration + /// + /// + /// + public partial class SynthTabbedPaneUI : Javax.Swing.Plaf.Basic.BasicTabbedPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTabbedPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTabbedPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTabbedPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTabbedPaneUI implementation public partial class SynthTabbedPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableHeaderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableHeaderUI.cs index 13300b7e75..0247cabae2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableHeaderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableHeaderUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTableHeaderUI + #region SynthTableHeaderUI declaration + /// + /// + /// + public partial class SynthTableHeaderUI : Javax.Swing.Plaf.Basic.BasicTableHeaderUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTableHeaderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTableHeaderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTableHeaderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTableHeaderUI implementation public partial class SynthTableHeaderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableUI.cs index e62de7abb3..131e3ba5e0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTableUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTableUI + #region SynthTableUI declaration + /// + /// + /// + public partial class SynthTableUI : Javax.Swing.Plaf.Basic.BasicTableUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTableUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTableUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTableUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTableUI implementation public partial class SynthTableUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextAreaUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextAreaUI.cs index 7a4dcdd6a4..c47fa5eaec 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextAreaUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextAreaUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTextAreaUI + #region SynthTextAreaUI declaration + /// + /// + /// + public partial class SynthTextAreaUI : Javax.Swing.Plaf.Basic.BasicTextAreaUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTextAreaUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTextAreaUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTextAreaUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTextAreaUI implementation public partial class SynthTextAreaUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextFieldUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextFieldUI.cs index eec575d102..1854d93881 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextFieldUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextFieldUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTextFieldUI + #region SynthTextFieldUI declaration + /// + /// + /// + public partial class SynthTextFieldUI : Javax.Swing.Plaf.Basic.BasicTextFieldUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTextFieldUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTextFieldUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTextFieldUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTextFieldUI implementation public partial class SynthTextFieldUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextPaneUI.cs index 7a5d0e5002..847446764f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTextPaneUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTextPaneUI + #region SynthTextPaneUI declaration + /// + /// + /// + public partial class SynthTextPaneUI : Javax.Swing.Plaf.Synth.SynthEditorPaneUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTextPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTextPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTextPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTextPaneUI implementation public partial class SynthTextPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToggleButtonUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToggleButtonUI.cs index 34b0188eef..c577b29046 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToggleButtonUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToggleButtonUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthToggleButtonUI + #region SynthToggleButtonUI declaration + /// + /// + /// + public partial class SynthToggleButtonUI : Javax.Swing.Plaf.Synth.SynthButtonUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthToggleButtonUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthToggleButtonUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthToggleButtonUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthToggleButtonUI implementation public partial class SynthToggleButtonUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolBarUI.cs index 9a995ae182..5e2f933514 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolBarUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthToolBarUI + #region SynthToolBarUI declaration + /// + /// + /// + public partial class SynthToolBarUI : Javax.Swing.Plaf.Basic.BasicToolBarUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthToolBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthToolBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthToolBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthToolBarUI implementation public partial class SynthToolBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolTipUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolTipUI.cs index 12bb3c99a4..d68e5c31a3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolTipUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthToolTipUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthToolTipUI + #region SynthToolTipUI declaration + /// + /// + /// + public partial class SynthToolTipUI : Javax.Swing.Plaf.Basic.BasicToolTipUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthToolTipUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthToolTipUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthToolTipUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthToolTipUI implementation public partial class SynthToolTipUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTreeUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTreeUI.cs index 095193b0f4..892066d89a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTreeUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthTreeUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthTreeUI + #region SynthTreeUI declaration + /// + /// + /// + public partial class SynthTreeUI : Javax.Swing.Plaf.Basic.BasicTreeUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthTreeUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthTreeUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthTreeUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthTreeUI implementation public partial class SynthTreeUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthUI.cs index a9f51e0fb1..b4ca4cbea1 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthUI.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Plaf.Synth { + #region SynthUI declaration + /// + /// + /// + public partial class SynthUI : Javax.Swing.Plaf.Synth.SynthConstants + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SynthUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SynthUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SynthUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISynthUI /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ISynthUI : Javax.Swing.Plaf.Synth.ISynthConstants } #endregion - #region SynthUI + #region SynthUI implementation public partial class SynthUI : Javax.Swing.Plaf.Synth.ISynthUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthViewportUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthViewportUI.cs index b4d6886bd6..2cd40cab92 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthViewportUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/Synth/SynthViewportUI.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Plaf.Synth { - #region SynthViewportUI + #region SynthViewportUI declaration + /// + /// + /// + public partial class SynthViewportUI : Javax.Swing.Plaf.ViewportUI + { + const string _bridgeClassName = "javax.swing.plaf.synth.SynthViewportUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SynthViewportUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SynthViewportUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SynthViewportUI implementation public partial class SynthViewportUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/TabbedPaneUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/TabbedPaneUI.cs index bf75f4e4da..7374ce87ef 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/TabbedPaneUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/TabbedPaneUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region TabbedPaneUI + #region TabbedPaneUI declaration + /// + /// + /// + public partial class TabbedPaneUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.TabbedPaneUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TabbedPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabbedPaneUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TabbedPaneUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabbedPaneUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabbedPaneUI implementation public partial class TabbedPaneUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/TableHeaderUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/TableHeaderUI.cs index 94db9dcb5a..39961ef6a8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/TableHeaderUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/TableHeaderUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region TableHeaderUI + #region TableHeaderUI declaration + /// + /// + /// + public partial class TableHeaderUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.TableHeaderUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableHeaderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableHeaderUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableHeaderUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableHeaderUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableHeaderUI implementation public partial class TableHeaderUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/TableUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/TableUI.cs index 7279f8342f..b6f3e2b707 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/TableUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/TableUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region TableUI + #region TableUI declaration + /// + /// + /// + public partial class TableUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.TableUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableUI implementation public partial class TableUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/TextUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/TextUI.cs index 79818c3f4d..cd4003f427 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/TextUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/TextUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region TextUI + #region TextUI declaration + /// + /// + /// + public partial class TextUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.TextUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TextUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TextUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TextUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextUI implementation public partial class TextUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ToolBarUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ToolBarUI.cs index ef863f15ad..df069b4bd8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ToolBarUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ToolBarUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ToolBarUI + #region ToolBarUI declaration + /// + /// + /// + public partial class ToolBarUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ToolBarUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ToolBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ToolBarUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ToolBarUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ToolBarUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ToolBarUI implementation public partial class ToolBarUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ToolTipUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ToolTipUI.cs index 7f22935544..3c746320c5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ToolTipUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ToolTipUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ToolTipUI + #region ToolTipUI declaration + /// + /// + /// + public partial class ToolTipUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ToolTipUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ToolTipUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ToolTipUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ToolTipUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ToolTipUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ToolTipUI implementation public partial class ToolTipUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/TreeUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/TreeUI.cs index 83242fa58b..7a48525018 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/TreeUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/TreeUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region TreeUI + #region TreeUI declaration + /// + /// + /// + public partial class TreeUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.TreeUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreeUI implementation public partial class TreeUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/UIResource.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/UIResource.cs index cf214263ed..1502b92ab1 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/UIResource.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/UIResource.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Plaf { + #region UIResource declaration + /// + /// + /// + public partial class UIResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.plaf.UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UIResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UIResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUIResource /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IUIResource } #endregion - #region UIResource + #region UIResource implementation public partial class UIResource : Javax.Swing.Plaf.IUIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Plaf/ViewportUI.cs b/src/net/JNet/Generated/Javax/Swing/Plaf/ViewportUI.cs index 32b65427cc..5975baa91d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Plaf/ViewportUI.cs +++ b/src/net/JNet/Generated/Javax/Swing/Plaf/ViewportUI.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Plaf { - #region ViewportUI + #region ViewportUI declaration + /// + /// + /// + public partial class ViewportUI : Javax.Swing.Plaf.ComponentUI + { + const string _bridgeClassName = "javax.swing.plaf.ViewportUI"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ViewportUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ViewportUI() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ViewportUI class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ViewportUI(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ViewportUI implementation public partial class ViewportUI { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Popup.cs b/src/net/JNet/Generated/Javax/Swing/Popup.cs index 61c6fdef70..08cae5baae 100644 --- a/src/net/JNet/Generated/Javax/Swing/Popup.cs +++ b/src/net/JNet/Generated/Javax/Swing/Popup.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region Popup + #region Popup declaration + /// + /// + /// + public partial class Popup : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.Popup"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Popup() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Popup(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Popup implementation public partial class Popup { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/PopupFactory.cs b/src/net/JNet/Generated/Javax/Swing/PopupFactory.cs index 7bb6b99114..10f952d86a 100644 --- a/src/net/JNet/Generated/Javax/Swing/PopupFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/PopupFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region PopupFactory + #region PopupFactory declaration + /// + /// + /// + public partial class PopupFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.PopupFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PopupFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PopupFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PopupFactory implementation public partial class PopupFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ProgressMonitor.cs b/src/net/JNet/Generated/Javax/Swing/ProgressMonitor.cs index ed3c9565a3..7ad10ff7a0 100644 --- a/src/net/JNet/Generated/Javax/Swing/ProgressMonitor.cs +++ b/src/net/JNet/Generated/Javax/Swing/ProgressMonitor.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ProgressMonitor + #region ProgressMonitor declaration + /// + /// + /// + public partial class ProgressMonitor : Javax.Accessibility.Accessible + { + const string _bridgeClassName = "javax.swing.ProgressMonitor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ProgressMonitor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ProgressMonitor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ProgressMonitor implementation public partial class ProgressMonitor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ProgressMonitorInputStream.cs b/src/net/JNet/Generated/Javax/Swing/ProgressMonitorInputStream.cs index 25b99d2156..79071b0084 100644 --- a/src/net/JNet/Generated/Javax/Swing/ProgressMonitorInputStream.cs +++ b/src/net/JNet/Generated/Javax/Swing/ProgressMonitorInputStream.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ProgressMonitorInputStream + #region ProgressMonitorInputStream declaration + /// + /// + /// + public partial class ProgressMonitorInputStream : Java.Io.FilterInputStream + { + const string _bridgeClassName = "javax.swing.ProgressMonitorInputStream"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ProgressMonitorInputStream() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ProgressMonitorInputStream(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ProgressMonitorInputStream implementation public partial class ProgressMonitorInputStream { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Renderer.cs b/src/net/JNet/Generated/Javax/Swing/Renderer.cs index b07764d03e..8be5e80955 100644 --- a/src/net/JNet/Generated/Javax/Swing/Renderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Renderer.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region Renderer declaration + /// + /// + /// + public partial class Renderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.Renderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Renderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Renderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Renderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Renderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRenderer /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IRenderer } #endregion - #region Renderer + #region Renderer implementation public partial class Renderer : Javax.Swing.IRenderer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/RepaintManager.cs b/src/net/JNet/Generated/Javax/Swing/RepaintManager.cs index d62759790d..eef1f0c662 100644 --- a/src/net/JNet/Generated/Javax/Swing/RepaintManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/RepaintManager.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region RepaintManager + #region RepaintManager declaration + /// + /// + /// + public partial class RepaintManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.RepaintManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RepaintManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RepaintManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RepaintManager implementation public partial class RepaintManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/RootPaneContainer.cs b/src/net/JNet/Generated/Javax/Swing/RootPaneContainer.cs index 76a2f29804..e47549e093 100644 --- a/src/net/JNet/Generated/Javax/Swing/RootPaneContainer.cs +++ b/src/net/JNet/Generated/Javax/Swing/RootPaneContainer.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region RootPaneContainer declaration + /// + /// + /// + public partial class RootPaneContainer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.RootPaneContainer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RootPaneContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RootPaneContainer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RootPaneContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RootPaneContainer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRootPaneContainer /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IRootPaneContainer } #endregion - #region RootPaneContainer + #region RootPaneContainer implementation public partial class RootPaneContainer : Javax.Swing.IRootPaneContainer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/RowFilter.cs b/src/net/JNet/Generated/Javax/Swing/RowFilter.cs index 88a20cd27c..89ab882751 100644 --- a/src/net/JNet/Generated/Javax/Swing/RowFilter.cs +++ b/src/net/JNet/Generated/Javax/Swing/RowFilter.cs @@ -25,7 +25,244 @@ namespace Javax.Swing { - #region RowFilter + #region RowFilter declaration + /// + /// + /// + public partial class RowFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.RowFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ComparisonType declaration + /// + /// + /// + public partial class ComparisonType : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.RowFilter$ComparisonType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComparisonType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComparisonType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Entry declaration + /// + /// + /// + public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.RowFilter$Entry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Entry declaration + /// + /// + /// + /// + /// + public partial class Entry : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.RowFilter$Entry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Entry class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region RowFilter declaration + /// + /// + /// + /// + /// + public partial class RowFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.RowFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RowFilter implementation public partial class RowFilter { #region Constructors @@ -117,7 +354,7 @@ public bool Include(Javax.Swing.RowFilter.Entry arg0) #endregion #region Nested classes - #region ComparisonType + #region ComparisonType implementation public partial class ComparisonType { #region Constructors @@ -189,7 +426,7 @@ public static Javax.Swing.RowFilter.ComparisonType[] Values() } #endregion - #region Entry + #region Entry implementation public partial class Entry { #region Constructors @@ -259,7 +496,7 @@ public Java.Lang.String GetStringValue(int arg0) } #endregion - #region Entry + #region Entry implementation public partial class Entry { #region Constructors @@ -340,7 +577,7 @@ public Java.Lang.String GetStringValue(int arg0) } #endregion - #region RowFilter + #region RowFilter implementation public partial class RowFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/RowSorter.cs b/src/net/JNet/Generated/Javax/Swing/RowSorter.cs index edff828533..11dbdd6d92 100644 --- a/src/net/JNet/Generated/Javax/Swing/RowSorter.cs +++ b/src/net/JNet/Generated/Javax/Swing/RowSorter.cs @@ -25,7 +25,147 @@ namespace Javax.Swing { - #region RowSorter + #region RowSorter declaration + /// + /// + /// + public partial class RowSorter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.RowSorter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSorter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSorter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region SortKey declaration + /// + /// + /// + public partial class SortKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.RowSorter$SortKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SortKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SortKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region RowSorter declaration + /// + /// + /// + /// + public partial class RowSorter : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.swing.RowSorter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSorter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowSorter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowSorter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RowSorter implementation public partial class RowSorter { #region Constructors @@ -170,7 +310,7 @@ public void RemoveRowSorterListener(Javax.Swing.Event.RowSorterListener arg0) #endregion #region Nested classes - #region SortKey + #region SortKey implementation public partial class SortKey { #region Constructors @@ -231,7 +371,7 @@ public Javax.Swing.SortOrder SortOrder } #endregion - #region RowSorter + #region RowSorter implementation public partial class RowSorter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ScrollPaneConstants.cs b/src/net/JNet/Generated/Javax/Swing/ScrollPaneConstants.cs index 9f3b446774..be28873b08 100644 --- a/src/net/JNet/Generated/Javax/Swing/ScrollPaneConstants.cs +++ b/src/net/JNet/Generated/Javax/Swing/ScrollPaneConstants.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region ScrollPaneConstants declaration + /// + /// + /// + public partial class ScrollPaneConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ScrollPaneConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ScrollPaneConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScrollPaneConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ScrollPaneConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ScrollPaneConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScrollPaneConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IScrollPaneConstants } #endregion - #region ScrollPaneConstants + #region ScrollPaneConstants implementation public partial class ScrollPaneConstants : Javax.Swing.IScrollPaneConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ScrollPaneLayout.cs b/src/net/JNet/Generated/Javax/Swing/ScrollPaneLayout.cs index 60fbbcd873..c51636c51f 100644 --- a/src/net/JNet/Generated/Javax/Swing/ScrollPaneLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/ScrollPaneLayout.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region ScrollPaneLayout + #region ScrollPaneLayout declaration + /// + /// + /// + public partial class ScrollPaneLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ScrollPaneLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ScrollPaneLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ScrollPaneLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region UIResource declaration + /// + /// + /// + public partial class UIResource : Javax.Swing.ScrollPaneLayout + { + const string _bridgeClassName = "javax.swing.ScrollPaneLayout$UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region ScrollPaneLayout implementation public partial class ScrollPaneLayout { #region Constructors @@ -170,7 +260,7 @@ public void SyncWithScrollPane(Javax.Swing.JScrollPane arg0) #endregion #region Nested classes - #region UIResource + #region UIResource implementation public partial class UIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Scrollable.cs b/src/net/JNet/Generated/Javax/Swing/Scrollable.cs index ed8c71fc30..320afec135 100644 --- a/src/net/JNet/Generated/Javax/Swing/Scrollable.cs +++ b/src/net/JNet/Generated/Javax/Swing/Scrollable.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region Scrollable declaration + /// + /// + /// + public partial class Scrollable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.Scrollable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Scrollable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Scrollable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Scrollable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Scrollable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IScrollable /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IScrollable } #endregion - #region Scrollable + #region Scrollable implementation public partial class Scrollable : Javax.Swing.IScrollable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SingleSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/SingleSelectionModel.cs index 03504cbb79..10b0e12b9b 100644 --- a/src/net/JNet/Generated/Javax/Swing/SingleSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/SingleSelectionModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region SingleSelectionModel declaration + /// + /// + /// + public partial class SingleSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.SingleSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SingleSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SingleSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SingleSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SingleSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISingleSelectionModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface ISingleSelectionModel } #endregion - #region SingleSelectionModel + #region SingleSelectionModel implementation public partial class SingleSelectionModel : Javax.Swing.ISingleSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SizeRequirements.cs b/src/net/JNet/Generated/Javax/Swing/SizeRequirements.cs index ebfcf8cb43..cb9c1dede9 100644 --- a/src/net/JNet/Generated/Javax/Swing/SizeRequirements.cs +++ b/src/net/JNet/Generated/Javax/Swing/SizeRequirements.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SizeRequirements + #region SizeRequirements declaration + /// + /// + /// + public partial class SizeRequirements : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.SizeRequirements"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SizeRequirements() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SizeRequirements(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SizeRequirements implementation public partial class SizeRequirements { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SizeSequence.cs b/src/net/JNet/Generated/Javax/Swing/SizeSequence.cs index 4a240ec98d..9f961701c8 100644 --- a/src/net/JNet/Generated/Javax/Swing/SizeSequence.cs +++ b/src/net/JNet/Generated/Javax/Swing/SizeSequence.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SizeSequence + #region SizeSequence declaration + /// + /// + /// + public partial class SizeSequence : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.SizeSequence"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SizeSequence() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SizeSequence(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SizeSequence implementation public partial class SizeSequence { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SortOrder.cs b/src/net/JNet/Generated/Javax/Swing/SortOrder.cs index 850db3b850..2e11d1b58e 100644 --- a/src/net/JNet/Generated/Javax/Swing/SortOrder.cs +++ b/src/net/JNet/Generated/Javax/Swing/SortOrder.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SortOrder + #region SortOrder declaration + /// + /// + /// + public partial class SortOrder : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.SortOrder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SortOrder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SortOrder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortOrder implementation public partial class SortOrder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SortingFocusTraversalPolicy.cs b/src/net/JNet/Generated/Javax/Swing/SortingFocusTraversalPolicy.cs index fb741231b9..2852b5fcbe 100644 --- a/src/net/JNet/Generated/Javax/Swing/SortingFocusTraversalPolicy.cs +++ b/src/net/JNet/Generated/Javax/Swing/SortingFocusTraversalPolicy.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SortingFocusTraversalPolicy + #region SortingFocusTraversalPolicy declaration + /// + /// + /// + public partial class SortingFocusTraversalPolicy : Javax.Swing.InternalFrameFocusTraversalPolicy + { + const string _bridgeClassName = "javax.swing.SortingFocusTraversalPolicy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SortingFocusTraversalPolicy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SortingFocusTraversalPolicy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SortingFocusTraversalPolicy implementation public partial class SortingFocusTraversalPolicy { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SpinnerDateModel.cs b/src/net/JNet/Generated/Javax/Swing/SpinnerDateModel.cs index 714a51061f..5b326c5b57 100644 --- a/src/net/JNet/Generated/Javax/Swing/SpinnerDateModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/SpinnerDateModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SpinnerDateModel + #region SpinnerDateModel declaration + /// + /// + /// + public partial class SpinnerDateModel : Javax.Swing.AbstractSpinnerModel + { + const string _bridgeClassName = "javax.swing.SpinnerDateModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SpinnerDateModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SpinnerDateModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SpinnerDateModel implementation public partial class SpinnerDateModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SpinnerListModel.cs b/src/net/JNet/Generated/Javax/Swing/SpinnerListModel.cs index 710bfa1120..f16f17ca8c 100644 --- a/src/net/JNet/Generated/Javax/Swing/SpinnerListModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/SpinnerListModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SpinnerListModel + #region SpinnerListModel declaration + /// + /// + /// + public partial class SpinnerListModel : Javax.Swing.AbstractSpinnerModel + { + const string _bridgeClassName = "javax.swing.SpinnerListModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SpinnerListModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SpinnerListModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SpinnerListModel implementation public partial class SpinnerListModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SpinnerModel.cs b/src/net/JNet/Generated/Javax/Swing/SpinnerModel.cs index 60585aa6da..6921a4b524 100644 --- a/src/net/JNet/Generated/Javax/Swing/SpinnerModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/SpinnerModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region SpinnerModel declaration + /// + /// + /// + public partial class SpinnerModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.SpinnerModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SpinnerModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SpinnerModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SpinnerModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISpinnerModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface ISpinnerModel } #endregion - #region SpinnerModel + #region SpinnerModel implementation public partial class SpinnerModel : Javax.Swing.ISpinnerModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SpinnerNumberModel.cs b/src/net/JNet/Generated/Javax/Swing/SpinnerNumberModel.cs index 70b1411989..622ebc14a2 100644 --- a/src/net/JNet/Generated/Javax/Swing/SpinnerNumberModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/SpinnerNumberModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SpinnerNumberModel + #region SpinnerNumberModel declaration + /// + /// + /// + public partial class SpinnerNumberModel : Javax.Swing.AbstractSpinnerModel + { + const string _bridgeClassName = "javax.swing.SpinnerNumberModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SpinnerNumberModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SpinnerNumberModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SpinnerNumberModel implementation public partial class SpinnerNumberModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Spring.cs b/src/net/JNet/Generated/Javax/Swing/Spring.cs index c6caec5f54..a594516fc3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Spring.cs +++ b/src/net/JNet/Generated/Javax/Swing/Spring.cs @@ -25,7 +25,54 @@ namespace Javax.Swing { - #region Spring + #region Spring declaration + /// + /// + /// + public partial class Spring : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.Spring"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Spring class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Spring() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Spring class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Spring(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Spring implementation public partial class Spring { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SpringLayout.cs b/src/net/JNet/Generated/Javax/Swing/SpringLayout.cs index f9566b63b8..5062646b43 100644 --- a/src/net/JNet/Generated/Javax/Swing/SpringLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/SpringLayout.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region SpringLayout + #region SpringLayout declaration + /// + /// + /// + public partial class SpringLayout : Java.Awt.LayoutManager2 + { + const string _bridgeClassName = "javax.swing.SpringLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SpringLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SpringLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Constraints declaration + /// + /// + /// + public partial class Constraints : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.SpringLayout$Constraints"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Constraints() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Constraints(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region SpringLayout implementation public partial class SpringLayout { #region Constructors @@ -233,7 +323,7 @@ public void RemoveLayoutComponent(Java.Awt.Component arg0) #endregion #region Nested classes - #region Constraints + #region Constraints implementation public partial class Constraints { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SwingConstants.cs b/src/net/JNet/Generated/Javax/Swing/SwingConstants.cs index 791f8632b8..16f7c410e6 100644 --- a/src/net/JNet/Generated/Javax/Swing/SwingConstants.cs +++ b/src/net/JNet/Generated/Javax/Swing/SwingConstants.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region SwingConstants declaration + /// + /// + /// + public partial class SwingConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.SwingConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SwingConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SwingConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISwingConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISwingConstants } #endregion - #region SwingConstants + #region SwingConstants implementation public partial class SwingConstants : Javax.Swing.ISwingConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SwingContainer.cs b/src/net/JNet/Generated/Javax/Swing/SwingContainer.cs index d4aba7e13d..1baa25f5c2 100644 --- a/src/net/JNet/Generated/Javax/Swing/SwingContainer.cs +++ b/src/net/JNet/Generated/Javax/Swing/SwingContainer.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region SwingContainer declaration + /// + /// + /// + public partial class SwingContainer : Java.Lang.Annotation.Annotation + { + const string _bridgeClassName = "javax.swing.SwingContainer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SwingContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingContainer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SwingContainer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingContainer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISwingContainer /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ISwingContainer : Java.Lang.Annotation.IAnnotation } #endregion - #region SwingContainer + #region SwingContainer implementation public partial class SwingContainer : Javax.Swing.ISwingContainer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SwingUtilities.cs b/src/net/JNet/Generated/Javax/Swing/SwingUtilities.cs index 22eecbc974..cfeba4db38 100644 --- a/src/net/JNet/Generated/Javax/Swing/SwingUtilities.cs +++ b/src/net/JNet/Generated/Javax/Swing/SwingUtilities.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region SwingUtilities + #region SwingUtilities declaration + /// + /// + /// + public partial class SwingUtilities : Javax.Swing.SwingConstants + { + const string _bridgeClassName = "javax.swing.SwingUtilities"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SwingUtilities() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SwingUtilities(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SwingUtilities implementation public partial class SwingUtilities { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/SwingWorker.cs b/src/net/JNet/Generated/Javax/Swing/SwingWorker.cs index f0b2597436..460dba0095 100644 --- a/src/net/JNet/Generated/Javax/Swing/SwingWorker.cs +++ b/src/net/JNet/Generated/Javax/Swing/SwingWorker.cs @@ -25,7 +25,148 @@ namespace Javax.Swing { - #region SwingWorker + #region SwingWorker declaration + /// + /// + /// + public partial class SwingWorker : Java.Util.Concurrent.RunnableFuture + { + const string _bridgeClassName = "javax.swing.SwingWorker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingWorker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingWorker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region StateValue declaration + /// + /// + /// + public partial class StateValue : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.SwingWorker$StateValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StateValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StateValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region SwingWorker declaration + /// + /// + /// + /// + /// + public partial class SwingWorker : Java.Util.Concurrent.RunnableFuture + { + const string _bridgeClassName = "javax.swing.SwingWorker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingWorker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SwingWorker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SwingWorker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SwingWorker implementation public partial class SwingWorker { #region Constructors @@ -158,7 +299,7 @@ public void Run() #endregion #region Nested classes - #region StateValue + #region StateValue implementation public partial class StateValue { #region Constructors @@ -231,7 +372,7 @@ public static Javax.Swing.SwingWorker.StateValue[] Values() } #endregion - #region SwingWorker + #region SwingWorker implementation public partial class SwingWorker { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/AbstractTableModel.cs b/src/net/JNet/Generated/Javax/Swing/Table/AbstractTableModel.cs index 746dfa1c54..97736a22f6 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/AbstractTableModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/AbstractTableModel.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Table { - #region AbstractTableModel + #region AbstractTableModel declaration + /// + /// + /// + public partial class AbstractTableModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.table.AbstractTableModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractTableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTableModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractTableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractTableModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractTableModel implementation public partial class AbstractTableModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Table/AllPackageClasses.cs deleted file mode 100644 index 466044bb9f..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Table/AllPackageClasses.cs +++ /dev/null @@ -1,673 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Table -{ - #region AbstractTableModel - /// - /// - /// - public partial class AbstractTableModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.table.AbstractTableModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractTableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTableModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractTableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractTableModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultTableCellRenderer - /// - /// - /// - public partial class DefaultTableCellRenderer : Javax.Swing.JLabel - { - const string _bridgeClassName = "javax.swing.table.DefaultTableCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTableCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTableCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region UIResource - /// - /// - /// - public partial class UIResource : Javax.Swing.Table.DefaultTableCellRenderer - { - const string _bridgeClassName = "javax.swing.table.DefaultTableCellRenderer$UIResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UIResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UIResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DefaultTableColumnModel - /// - /// - /// - public partial class DefaultTableColumnModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.table.DefaultTableColumnModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTableColumnModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTableColumnModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultTableModel - /// - /// - /// - public partial class DefaultTableModel : Javax.Swing.Table.AbstractTableModel - { - const string _bridgeClassName = "javax.swing.table.DefaultTableModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTableModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTableModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTableHeader - /// - /// - /// - public partial class JTableHeader : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.table.JTableHeader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public JTableHeader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public JTableHeader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableCellEditor - /// - /// - /// - public partial class TableCellEditor : Javax.Swing.CellEditor - { - const string _bridgeClassName = "javax.swing.table.TableCellEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableCellEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableCellEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableCellRenderer - /// - /// - /// - public partial class TableCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.table.TableCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableColumn - /// - /// - /// - public partial class TableColumn : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.table.TableColumn"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableColumn() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableColumn(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableColumnModel - /// - /// - /// - public partial class TableColumnModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.table.TableColumnModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableColumnModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableColumnModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableColumnModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableColumnModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableModel - /// - /// - /// - public partial class TableModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.table.TableModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableRowSorter - /// - /// - /// - public partial class TableRowSorter : Javax.Swing.DefaultRowSorter - { - const string _bridgeClassName = "javax.swing.table.TableRowSorter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableRowSorter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableRowSorter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableRowSorter - /// - /// - /// - /// - public partial class TableRowSorter : Javax.Swing.DefaultRowSorter where M : Javax.Swing.Table.ITableModel, new() - { - const string _bridgeClassName = "javax.swing.table.TableRowSorter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableRowSorter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableRowSorter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableStringConverter - /// - /// - /// - public partial class TableStringConverter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.table.TableStringConverter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableStringConverter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableStringConverter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableStringConverter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableStringConverter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableCellRenderer.cs b/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableCellRenderer.cs index a5f9d1c448..76e452c85d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableCellRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableCellRenderer.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Table { - #region DefaultTableCellRenderer + #region DefaultTableCellRenderer declaration + /// + /// + /// + public partial class DefaultTableCellRenderer : Javax.Swing.JLabel + { + const string _bridgeClassName = "javax.swing.table.DefaultTableCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTableCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTableCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region UIResource declaration + /// + /// + /// + public partial class UIResource : Javax.Swing.Table.DefaultTableCellRenderer + { + const string _bridgeClassName = "javax.swing.table.DefaultTableCellRenderer$UIResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DefaultTableCellRenderer implementation public partial class DefaultTableCellRenderer { #region Constructors @@ -71,7 +161,7 @@ public Java.Awt.Component GetTableCellRendererComponent(Javax.Swing.JTable arg0, #endregion #region Nested classes - #region UIResource + #region UIResource implementation public partial class UIResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableColumnModel.cs b/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableColumnModel.cs index 23155271cb..e9534dbb24 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableColumnModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableColumnModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Table { - #region DefaultTableColumnModel + #region DefaultTableColumnModel declaration + /// + /// + /// + public partial class DefaultTableColumnModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.table.DefaultTableColumnModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTableColumnModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTableColumnModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultTableColumnModel implementation public partial class DefaultTableColumnModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableModel.cs b/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableModel.cs index 2626ebd260..0445e1bffc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/DefaultTableModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Table { - #region DefaultTableModel + #region DefaultTableModel declaration + /// + /// + /// + public partial class DefaultTableModel : Javax.Swing.Table.AbstractTableModel + { + const string _bridgeClassName = "javax.swing.table.DefaultTableModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTableModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTableModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultTableModel implementation public partial class DefaultTableModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/JTableHeader.cs b/src/net/JNet/Generated/Javax/Swing/Table/JTableHeader.cs index c251131f3a..7abca4778b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/JTableHeader.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/JTableHeader.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Table { - #region JTableHeader + #region JTableHeader declaration + /// + /// + /// + public partial class JTableHeader : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.table.JTableHeader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public JTableHeader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public JTableHeader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region JTableHeader implementation public partial class JTableHeader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableCellEditor.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableCellEditor.cs index 1d0b0272d9..cfe8a511cf 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableCellEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableCellEditor.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Table { + #region TableCellEditor declaration + /// + /// + /// + public partial class TableCellEditor : Javax.Swing.CellEditor + { + const string _bridgeClassName = "javax.swing.table.TableCellEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableCellEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableCellEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITableCellEditor /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ITableCellEditor : Javax.Swing.ICellEditor } #endregion - #region TableCellEditor + #region TableCellEditor implementation public partial class TableCellEditor : Javax.Swing.Table.ITableCellEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableCellRenderer.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableCellRenderer.cs index ea05e1809d..086a4a59ed 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableCellRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableCellRenderer.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Table { + #region TableCellRenderer declaration + /// + /// + /// + public partial class TableCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.table.TableCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITableCellRenderer /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface ITableCellRenderer } #endregion - #region TableCellRenderer + #region TableCellRenderer implementation public partial class TableCellRenderer : Javax.Swing.Table.ITableCellRenderer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableColumn.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableColumn.cs index 071f6b171d..7b8323b7ba 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableColumn.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableColumn.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Table { - #region TableColumn + #region TableColumn declaration + /// + /// + /// + public partial class TableColumn : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.table.TableColumn"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableColumn() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableColumn(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableColumn implementation public partial class TableColumn { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableColumnModel.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableColumnModel.cs index ea13ffc133..71b4e7920e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableColumnModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableColumnModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Table { + #region TableColumnModel declaration + /// + /// + /// + public partial class TableColumnModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.table.TableColumnModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableColumnModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableColumnModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableColumnModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableColumnModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITableColumnModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -119,7 +166,7 @@ public partial interface ITableColumnModel } #endregion - #region TableColumnModel + #region TableColumnModel implementation public partial class TableColumnModel : Javax.Swing.Table.ITableColumnModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableModel.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableModel.cs index ca9276821f..fde3a12728 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Table { + #region TableModel declaration + /// + /// + /// + public partial class TableModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.table.TableModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITableModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -94,7 +141,7 @@ public partial interface ITableModel } #endregion - #region TableModel + #region TableModel implementation public partial class TableModel : Javax.Swing.Table.ITableModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableRowSorter.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableRowSorter.cs index 0de111a321..19396854d2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableRowSorter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableRowSorter.cs @@ -25,7 +25,98 @@ namespace Javax.Swing.Table { - #region TableRowSorter + #region TableRowSorter declaration + /// + /// + /// + public partial class TableRowSorter : Javax.Swing.DefaultRowSorter + { + const string _bridgeClassName = "javax.swing.table.TableRowSorter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableRowSorter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableRowSorter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableRowSorter declaration + /// + /// + /// + /// + public partial class TableRowSorter : Javax.Swing.DefaultRowSorter where M : Javax.Swing.Table.ITableModel, new() + { + const string _bridgeClassName = "javax.swing.table.TableRowSorter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableRowSorter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableRowSorter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableRowSorter implementation public partial class TableRowSorter { #region Constructors @@ -79,7 +170,7 @@ public void SetModel(Javax.Swing.Table.TableModel arg0) } #endregion - #region TableRowSorter + #region TableRowSorter implementation public partial class TableRowSorter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Table/TableStringConverter.cs b/src/net/JNet/Generated/Javax/Swing/Table/TableStringConverter.cs index 04c4025cd6..43f76fad8a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Table/TableStringConverter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Table/TableStringConverter.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Table { - #region TableStringConverter + #region TableStringConverter declaration + /// + /// + /// + public partial class TableStringConverter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.table.TableStringConverter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableStringConverter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableStringConverter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableStringConverter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableStringConverter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TableStringConverter implementation public partial class TableStringConverter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/AbstractDocument.cs b/src/net/JNet/Generated/Javax/Swing/Text/AbstractDocument.cs index aabd01e261..4e53f90fd3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/AbstractDocument.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/AbstractDocument.cs @@ -25,7 +25,375 @@ namespace Javax.Swing.Text { - #region AbstractDocument + #region AbstractDocument declaration + /// + /// + /// + public partial class AbstractDocument : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AbstractElement declaration + /// + /// + /// + public partial class AbstractElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$AbstractElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeContext declaration + /// + /// + /// + public partial class AttributeContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$AttributeContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AttributeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AttributeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BranchElement declaration + /// + /// + /// + public partial class BranchElement : Javax.Swing.Text.AbstractDocument.AbstractElement + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$BranchElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BranchElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BranchElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Content declaration + /// + /// + /// + public partial class Content : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$Content"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Content class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Content() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Content class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Content(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DefaultDocumentEvent declaration + /// + /// + /// + public partial class DefaultDocumentEvent : Javax.Swing.Undo.CompoundEdit + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$DefaultDocumentEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultDocumentEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultDocumentEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementEdit declaration + /// + /// + /// + public partial class ElementEdit : Javax.Swing.Undo.AbstractUndoableEdit + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$ElementEdit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementEdit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementEdit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region LeafElement declaration + /// + /// + /// + public partial class LeafElement : Javax.Swing.Text.AbstractDocument.AbstractElement + { + const string _bridgeClassName = "javax.swing.text.AbstractDocument$LeafElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LeafElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LeafElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AbstractDocument implementation public partial class AbstractDocument { #region Constructors @@ -328,7 +696,7 @@ public void Replace(int arg0, int arg1, Java.Lang.String arg2, Javax.Swing.Text. #endregion #region Nested classes - #region AbstractElement + #region AbstractElement implementation public partial class AbstractElement { #region Constructors @@ -632,7 +1000,7 @@ public void RemoveAttributes(Javax.Swing.Text.AttributeSet arg0) } #endregion - #region AttributeContext + #region AttributeContext implementation public partial class AttributeContext { #region Constructors @@ -729,7 +1097,7 @@ public void Reclaim(Javax.Swing.Text.AttributeSet arg0) } #endregion - #region BranchElement + #region BranchElement implementation public partial class BranchElement { #region Constructors @@ -789,7 +1157,7 @@ public void Replace(int arg0, int arg1, Javax.Swing.Text.Element[] arg2) } #endregion - #region Content + #region Content implementation public partial class Content { #region Constructors @@ -882,7 +1250,7 @@ public void GetChars(int arg0, int arg1, Javax.Swing.Text.Segment arg2) } #endregion - #region DefaultDocumentEvent + #region DefaultDocumentEvent implementation public partial class DefaultDocumentEvent { #region Constructors @@ -965,7 +1333,7 @@ public Javax.Swing.Event.DocumentEvent.ElementChange GetChange(Javax.Swing.Text. } #endregion - #region ElementEdit + #region ElementEdit implementation public partial class ElementEdit { #region Constructors @@ -1035,7 +1403,7 @@ public int Index } #endregion - #region LeafElement + #region LeafElement implementation public partial class LeafElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/AbstractWriter.cs b/src/net/JNet/Generated/Javax/Swing/Text/AbstractWriter.cs index f473e9c71a..f6b91cbc67 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/AbstractWriter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/AbstractWriter.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Text { - #region AbstractWriter + #region AbstractWriter declaration + /// + /// + /// + public partial class AbstractWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AbstractWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractWriter implementation public partial class AbstractWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Text/AllPackageClasses.cs deleted file mode 100644 index abf098a5b5..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Text/AllPackageClasses.cs +++ /dev/null @@ -1,5133 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Text -{ - #region AbstractDocument - /// - /// - /// - public partial class AbstractDocument : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AbstractElement - /// - /// - /// - public partial class AbstractElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$AbstractElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AttributeContext - /// - /// - /// - public partial class AttributeContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$AttributeContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AttributeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AttributeContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BranchElement - /// - /// - /// - public partial class BranchElement : Javax.Swing.Text.AbstractDocument.AbstractElement - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$BranchElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BranchElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BranchElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Content - /// - /// - /// - public partial class Content : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$Content"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Content class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Content() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Content class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Content(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DefaultDocumentEvent - /// - /// - /// - public partial class DefaultDocumentEvent : Javax.Swing.Undo.CompoundEdit - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$DefaultDocumentEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultDocumentEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultDocumentEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementEdit - /// - /// - /// - public partial class ElementEdit : Javax.Swing.Undo.AbstractUndoableEdit - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$ElementEdit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementEdit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementEdit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region LeafElement - /// - /// - /// - public partial class LeafElement : Javax.Swing.Text.AbstractDocument.AbstractElement - { - const string _bridgeClassName = "javax.swing.text.AbstractDocument$LeafElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LeafElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LeafElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AbstractWriter - /// - /// - /// - public partial class AbstractWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AbstractWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region AsyncBoxView - /// - /// - /// - public partial class AsyncBoxView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.AsyncBoxView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AsyncBoxView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AsyncBoxView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region ChildLocator - /// - /// - /// - public partial class ChildLocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AsyncBoxView$ChildLocator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChildLocator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChildLocator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChildState - /// - /// - /// - public partial class ChildState : Java.Lang.Runnable - { - const string _bridgeClassName = "javax.swing.text.AsyncBoxView$ChildState"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChildState() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChildState(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region AttributeSet - /// - /// - /// - public partial class AttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CharacterAttribute - /// - /// - /// - public partial class CharacterAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AttributeSet$CharacterAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharacterAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharacterAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharacterAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharacterAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ColorAttribute - /// - /// - /// - public partial class ColorAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AttributeSet$ColorAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ColorAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ColorAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ColorAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FontAttribute - /// - /// - /// - public partial class FontAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AttributeSet$FontAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FontAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FontAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FontAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FontAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ParagraphAttribute - /// - /// - /// - public partial class ParagraphAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.AttributeSet$ParagraphAttribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ParagraphAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ParagraphAttribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ParagraphAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ParagraphAttribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region BadLocationException - /// - /// - /// - public partial class BadLocationException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.swing.text.BadLocationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region BoxView - /// - /// - /// - public partial class BoxView : Javax.Swing.Text.CompositeView - { - const string _bridgeClassName = "javax.swing.text.BoxView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BoxView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BoxView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Caret - /// - /// - /// - public partial class Caret : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Caret"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Caret class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Caret() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Caret class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Caret(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ChangedCharSetException - /// - /// - /// - public partial class ChangedCharSetException : Java.Io.IOException - { - const string _bridgeClassName = "javax.swing.text.ChangedCharSetException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ComponentView - /// - /// - /// - public partial class ComponentView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.ComponentView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ComponentView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ComponentView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CompositeView - /// - /// - /// - public partial class CompositeView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.CompositeView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompositeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompositeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompositeView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DateFormatter - /// - /// - /// - public partial class DateFormatter : Javax.Swing.Text.InternationalFormatter - { - const string _bridgeClassName = "javax.swing.text.DateFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DateFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DateFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultCaret - /// - /// - /// - public partial class DefaultCaret : Java.Awt.Rectangle - { - const string _bridgeClassName = "javax.swing.text.DefaultCaret"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultCaret() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultCaret(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultEditorKit - /// - /// - /// - public partial class DefaultEditorKit : Javax.Swing.Text.EditorKit - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultEditorKit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultEditorKit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BeepAction - /// - /// - /// - public partial class BeepAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$BeepAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BeepAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BeepAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CopyAction - /// - /// - /// - public partial class CopyAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$CopyAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CopyAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CopyAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region CutAction - /// - /// - /// - public partial class CutAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$CutAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CutAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CutAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region DefaultKeyTypedAction - /// - /// - /// - public partial class DefaultKeyTypedAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$DefaultKeyTypedAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultKeyTypedAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultKeyTypedAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region InsertBreakAction - /// - /// - /// - public partial class InsertBreakAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$InsertBreakAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InsertBreakAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InsertBreakAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region InsertContentAction - /// - /// - /// - public partial class InsertContentAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$InsertContentAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InsertContentAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InsertContentAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region InsertTabAction - /// - /// - /// - public partial class InsertTabAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$InsertTabAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InsertTabAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InsertTabAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region PasteAction - /// - /// - /// - public partial class PasteAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$PasteAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PasteAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PasteAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DefaultFormatter - /// - /// - /// - public partial class DefaultFormatter : Javax.Swing.JFormattedTextField.AbstractFormatter - { - const string _bridgeClassName = "javax.swing.text.DefaultFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultFormatterFactory - /// - /// - /// - public partial class DefaultFormatterFactory : Javax.Swing.JFormattedTextField.AbstractFormatterFactory - { - const string _bridgeClassName = "javax.swing.text.DefaultFormatterFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultFormatterFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultFormatterFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultHighlighter - /// - /// - /// - public partial class DefaultHighlighter : Javax.Swing.Text.LayeredHighlighter - { - const string _bridgeClassName = "javax.swing.text.DefaultHighlighter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultHighlighter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultHighlighter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DefaultHighlightPainter - /// - /// - /// - public partial class DefaultHighlightPainter : Javax.Swing.Text.LayeredHighlighter.LayerPainter - { - const string _bridgeClassName = "javax.swing.text.DefaultHighlighter$DefaultHighlightPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultHighlightPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultHighlightPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DefaultStyledDocument - /// - /// - /// - public partial class DefaultStyledDocument : Javax.Swing.Text.AbstractDocument - { - const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultStyledDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultStyledDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AttributeUndoableEdit - /// - /// - /// - public partial class AttributeUndoableEdit : Javax.Swing.Undo.AbstractUndoableEdit - { - const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument$AttributeUndoableEdit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeUndoableEdit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeUndoableEdit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ElementBuffer - /// - /// - /// - public partial class ElementBuffer : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument$ElementBuffer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementBuffer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementBuffer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementSpec - /// - /// - /// - public partial class ElementSpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument$ElementSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Document - /// - /// - /// - public partial class Document : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Document"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Document() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Document(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentFilter - /// - /// - /// - public partial class DocumentFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.DocumentFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DocumentFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DocumentFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FilterBypass - /// - /// - /// - public partial class FilterBypass : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.DocumentFilter$FilterBypass"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterBypass() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterBypass(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region EditorKit - /// - /// - /// - public partial class EditorKit : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.EditorKit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EditorKit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EditorKit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EditorKit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EditorKit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Element - /// - /// - /// - public partial class Element : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Element"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Element() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Element(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementIterator - /// - /// - /// - public partial class ElementIterator : Java.Lang.Cloneable - { - const string _bridgeClassName = "javax.swing.text.ElementIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ElementIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ElementIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FieldView - /// - /// - /// - public partial class FieldView : Javax.Swing.Text.PlainView - { - const string _bridgeClassName = "javax.swing.text.FieldView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FieldView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FieldView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FlowView - /// - /// - /// - public partial class FlowView : Javax.Swing.Text.BoxView - { - const string _bridgeClassName = "javax.swing.text.FlowView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FlowView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlowView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FlowView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FlowView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FlowStrategy - /// - /// - /// - public partial class FlowStrategy : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.FlowView$FlowStrategy"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FlowStrategy() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FlowStrategy(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region GapContent - /// - /// - /// - public partial class GapContent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.GapContent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GapContent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GapContent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GlyphView - /// - /// - /// - public partial class GlyphView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.GlyphView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public GlyphView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public GlyphView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region GlyphPainter - /// - /// - /// - public partial class GlyphPainter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.GlyphView$GlyphPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GlyphPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GlyphPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GlyphPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GlyphPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Highlighter - /// - /// - /// - public partial class Highlighter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Highlighter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Highlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Highlighter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Highlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Highlighter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Highlight - /// - /// - /// - public partial class Highlight : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Highlighter$Highlight"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Highlight class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Highlight() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Highlight class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Highlight(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region HighlightPainter - /// - /// - /// - public partial class HighlightPainter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Highlighter$HighlightPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HighlightPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HighlightPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HighlightPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HighlightPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region IconView - /// - /// - /// - public partial class IconView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.IconView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IconView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IconView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InternationalFormatter - /// - /// - /// - public partial class InternationalFormatter : Javax.Swing.Text.DefaultFormatter - { - const string _bridgeClassName = "javax.swing.text.InternationalFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InternationalFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InternationalFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JTextComponent - /// - /// - /// - public partial class JTextComponent : Javax.Swing.JComponent - { - const string _bridgeClassName = "javax.swing.text.JTextComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JTextComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JTextComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JTextComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JTextComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AccessibleJTextComponent - /// - /// - /// - public partial class AccessibleJTextComponent : Javax.Swing.JComponent.AccessibleJComponent - { - const string _bridgeClassName = "javax.swing.text.JTextComponent$AccessibleJTextComponent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AccessibleJTextComponent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AccessibleJTextComponent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DropLocation - /// - /// - /// - public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation - { - const string _bridgeClassName = "javax.swing.text.JTextComponent$DropLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DropLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DropLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region KeyBinding - /// - /// - /// - public partial class KeyBinding : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.JTextComponent$KeyBinding"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public KeyBinding() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public KeyBinding(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Keymap - /// - /// - /// - public partial class Keymap : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Keymap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Keymap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Keymap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Keymap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Keymap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LabelView - /// - /// - /// - public partial class LabelView : Javax.Swing.Text.GlyphView - { - const string _bridgeClassName = "javax.swing.text.LabelView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LabelView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LabelView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LayeredHighlighter - /// - /// - /// - public partial class LayeredHighlighter : Javax.Swing.Text.Highlighter - { - const string _bridgeClassName = "javax.swing.text.LayeredHighlighter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LayeredHighlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayeredHighlighter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LayeredHighlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayeredHighlighter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region LayerPainter - /// - /// - /// - public partial class LayerPainter : Javax.Swing.Text.Highlighter.HighlightPainter - { - const string _bridgeClassName = "javax.swing.text.LayeredHighlighter$LayerPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LayerPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayerPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LayerPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LayerPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region LayoutQueue - /// - /// - /// - public partial class LayoutQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.LayoutQueue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LayoutQueue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LayoutQueue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MaskFormatter - /// - /// - /// - public partial class MaskFormatter : Javax.Swing.Text.DefaultFormatter - { - const string _bridgeClassName = "javax.swing.text.MaskFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MaskFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MaskFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MutableAttributeSet - /// - /// - /// - public partial class MutableAttributeSet : Javax.Swing.Text.AttributeSet - { - const string _bridgeClassName = "javax.swing.text.MutableAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MutableAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MutableAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NavigationFilter - /// - /// - /// - public partial class NavigationFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.NavigationFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NavigationFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NavigationFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FilterBypass - /// - /// - /// - public partial class FilterBypass : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.NavigationFilter$FilterBypass"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterBypass() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FilterBypass(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region NumberFormatter - /// - /// - /// - public partial class NumberFormatter : Javax.Swing.Text.InternationalFormatter - { - const string _bridgeClassName = "javax.swing.text.NumberFormatter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NumberFormatter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NumberFormatter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParagraphView - /// - /// - /// - public partial class ParagraphView : Javax.Swing.Text.FlowView - { - const string _bridgeClassName = "javax.swing.text.ParagraphView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParagraphView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParagraphView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PasswordView - /// - /// - /// - public partial class PasswordView : Javax.Swing.Text.FieldView - { - const string _bridgeClassName = "javax.swing.text.PasswordView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PasswordView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PasswordView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PlainDocument - /// - /// - /// - public partial class PlainDocument : Javax.Swing.Text.AbstractDocument - { - const string _bridgeClassName = "javax.swing.text.PlainDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PlainDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PlainDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PlainView - /// - /// - /// - public partial class PlainView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.PlainView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PlainView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PlainView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Position - /// - /// - /// - public partial class Position : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Position"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Position class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Position() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Position class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Position(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Bias - /// - /// - /// - public partial class Bias : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Position$Bias"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Bias() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Bias(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Segment - /// - /// - /// - public partial class Segment : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Segment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Segment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Segment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleAttributeSet - /// - /// - /// - public partial class SimpleAttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.SimpleAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StringContent - /// - /// - /// - public partial class StringContent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.StringContent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StringContent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StringContent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Style - /// - /// - /// - public partial class Style : Javax.Swing.Text.MutableAttributeSet - { - const string _bridgeClassName = "javax.swing.text.Style"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Style class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Style() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Style class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Style(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StyleConstants - /// - /// - /// - public partial class StyleConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.StyleConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StyleConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StyleConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CharacterConstants - /// - /// - /// - public partial class CharacterConstants : Javax.Swing.Text.StyleConstants - { - const string _bridgeClassName = "javax.swing.text.StyleConstants$CharacterConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CharacterConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CharacterConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ColorConstants - /// - /// - /// - public partial class ColorConstants : Javax.Swing.Text.StyleConstants - { - const string _bridgeClassName = "javax.swing.text.StyleConstants$ColorConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ColorConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ColorConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FontConstants - /// - /// - /// - public partial class FontConstants : Javax.Swing.Text.StyleConstants - { - const string _bridgeClassName = "javax.swing.text.StyleConstants$FontConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FontConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FontConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ParagraphConstants - /// - /// - /// - public partial class ParagraphConstants : Javax.Swing.Text.StyleConstants - { - const string _bridgeClassName = "javax.swing.text.StyleConstants$ParagraphConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParagraphConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParagraphConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region StyleContext - /// - /// - /// - public partial class StyleContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.StyleContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StyleContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StyleContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region NamedStyle - /// - /// - /// - public partial class NamedStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.StyleContext$NamedStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamedStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NamedStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SmallAttributeSet - /// - /// - /// - public partial class SmallAttributeSet : Javax.Swing.Text.AttributeSet - { - const string _bridgeClassName = "javax.swing.text.StyleContext$SmallAttributeSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SmallAttributeSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SmallAttributeSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region StyledDocument - /// - /// - /// - public partial class StyledDocument : Javax.Swing.Text.Document - { - const string _bridgeClassName = "javax.swing.text.StyledDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StyledDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyledDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StyledDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyledDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StyledEditorKit - /// - /// - /// - public partial class StyledEditorKit : Javax.Swing.Text.DefaultEditorKit - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StyledEditorKit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StyledEditorKit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region AlignmentAction - /// - /// - /// - public partial class AlignmentAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$AlignmentAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AlignmentAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AlignmentAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region BoldAction - /// - /// - /// - public partial class BoldAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$BoldAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BoldAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BoldAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FontFamilyAction - /// - /// - /// - public partial class FontFamilyAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$FontFamilyAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FontFamilyAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FontFamilyAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region FontSizeAction - /// - /// - /// - public partial class FontSizeAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$FontSizeAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FontSizeAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FontSizeAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ForegroundAction - /// - /// - /// - public partial class ForegroundAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$ForegroundAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForegroundAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForegroundAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ItalicAction - /// - /// - /// - public partial class ItalicAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$ItalicAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ItalicAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ItalicAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region StyledTextAction - /// - /// - /// - public partial class StyledTextAction : Javax.Swing.Text.TextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$StyledTextAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StyledTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyledTextAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StyledTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyledTextAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region UnderlineAction - /// - /// - /// - public partial class UnderlineAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.StyledEditorKit$UnderlineAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnderlineAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnderlineAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region TabableView - /// - /// - /// - public partial class TabableView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.TabableView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TabableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabableView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TabableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabableView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabExpander - /// - /// - /// - public partial class TabExpander : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.TabExpander"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TabExpander class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabExpander() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TabExpander class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TabExpander(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TableView - /// - /// - /// - public partial class TableView : Javax.Swing.Text.BoxView - { - const string _bridgeClassName = "javax.swing.text.TableView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TableView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region TableRow - /// - /// - /// - public partial class TableRow : Javax.Swing.Text.BoxView - { - const string _bridgeClassName = "javax.swing.text.TableView$TableRow"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TableRow() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TableRow(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region TabSet - /// - /// - /// - public partial class TabSet : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.TabSet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabSet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabSet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TabStop - /// - /// - /// - public partial class TabStop : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.TabStop"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TabStop() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TabStop(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TextAction - /// - /// - /// - public partial class TextAction : Javax.Swing.AbstractAction - { - const string _bridgeClassName = "javax.swing.text.TextAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TextAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TextAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Utilities - /// - /// - /// - public partial class Utilities : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.Utilities"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Utilities() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Utilities(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region View - /// - /// - /// - public partial class View : Javax.Swing.SwingConstants - { - const string _bridgeClassName = "javax.swing.text.View"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("View class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public View() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("View class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public View(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ViewFactory - /// - /// - /// - public partial class ViewFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.ViewFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ViewFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ViewFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ViewFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ViewFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region WrappedPlainView - /// - /// - /// - public partial class WrappedPlainView : Javax.Swing.Text.BoxView - { - const string _bridgeClassName = "javax.swing.text.WrappedPlainView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public WrappedPlainView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public WrappedPlainView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ZoneView - /// - /// - /// - public partial class ZoneView : Javax.Swing.Text.BoxView - { - const string _bridgeClassName = "javax.swing.text.ZoneView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ZoneView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ZoneView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Text/AsyncBoxView.cs b/src/net/JNet/Generated/Javax/Swing/Text/AsyncBoxView.cs index 18cd012d5f..4fb35ad1dc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/AsyncBoxView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/AsyncBoxView.cs @@ -25,7 +25,142 @@ namespace Javax.Swing.Text { - #region AsyncBoxView + #region AsyncBoxView declaration + /// + /// + /// + public partial class AsyncBoxView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.AsyncBoxView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AsyncBoxView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AsyncBoxView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ChildLocator declaration + /// + /// + /// + public partial class ChildLocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AsyncBoxView$ChildLocator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChildLocator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChildLocator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChildState declaration + /// + /// + /// + public partial class ChildState : Java.Lang.Runnable + { + const string _bridgeClassName = "javax.swing.text.AsyncBoxView$ChildState"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChildState() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChildState(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AsyncBoxView implementation public partial class AsyncBoxView { #region Constructors @@ -100,7 +235,7 @@ public float TopInset #endregion #region Nested classes - #region ChildLocator + #region ChildLocator implementation public partial class ChildLocator { #region Constructors @@ -176,7 +311,7 @@ public void PaintChildren(Java.Awt.Graphics arg0) } #endregion - #region ChildState + #region ChildState implementation public partial class ChildState { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/AttributeSet.cs b/src/net/JNet/Generated/Javax/Swing/Text/AttributeSet.cs index df73b9e826..0b2dee11f8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/AttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/AttributeSet.cs @@ -25,6 +25,241 @@ namespace Javax.Swing.Text { + #region AttributeSet declaration + /// + /// + /// + public partial class AttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CharacterAttribute declaration + /// + /// + /// + public partial class CharacterAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AttributeSet$CharacterAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharacterAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharacterAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharacterAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharacterAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ColorAttribute declaration + /// + /// + /// + public partial class ColorAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AttributeSet$ColorAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ColorAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ColorAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ColorAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FontAttribute declaration + /// + /// + /// + public partial class FontAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AttributeSet$FontAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FontAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FontAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FontAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FontAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ParagraphAttribute declaration + /// + /// + /// + public partial class ParagraphAttribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.AttributeSet$ParagraphAttribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ParagraphAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ParagraphAttribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ParagraphAttribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ParagraphAttribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -91,7 +326,7 @@ public partial interface IAttributeSet } #endregion - #region AttributeSet + #region AttributeSet implementation public partial class AttributeSet : Javax.Swing.Text.IAttributeSet { #region Constructors @@ -202,7 +437,7 @@ public Javax.Swing.Text.AttributeSet CopyAttributes() #endregion #region Nested classes - #region CharacterAttribute + #region CharacterAttribute implementation public partial class CharacterAttribute { #region Constructors @@ -233,7 +468,7 @@ public partial class CharacterAttribute } #endregion - #region ColorAttribute + #region ColorAttribute implementation public partial class ColorAttribute { #region Constructors @@ -264,7 +499,7 @@ public partial class ColorAttribute } #endregion - #region FontAttribute + #region FontAttribute implementation public partial class FontAttribute { #region Constructors @@ -295,7 +530,7 @@ public partial class FontAttribute } #endregion - #region ParagraphAttribute + #region ParagraphAttribute implementation public partial class ParagraphAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/BadLocationException.cs b/src/net/JNet/Generated/Javax/Swing/Text/BadLocationException.cs index b67c87da14..fb860cdc56 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/BadLocationException.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/BadLocationException.cs @@ -25,7 +25,24 @@ namespace Javax.Swing.Text { - #region BadLocationException + #region BadLocationException declaration + /// + /// + /// + public partial class BadLocationException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.swing.text.BadLocationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region BadLocationException implementation public partial class BadLocationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/BoxView.cs b/src/net/JNet/Generated/Javax/Swing/Text/BoxView.cs index eb600f9553..ed99aadbc6 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/BoxView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/BoxView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region BoxView + #region BoxView declaration + /// + /// + /// + public partial class BoxView : Javax.Swing.Text.CompositeView + { + const string _bridgeClassName = "javax.swing.text.BoxView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BoxView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BoxView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BoxView implementation public partial class BoxView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Caret.cs b/src/net/JNet/Generated/Javax/Swing/Text/Caret.cs index 34915fdbfc..3567f8b389 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Caret.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Caret.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region Caret declaration + /// + /// + /// + public partial class Caret : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Caret"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Caret class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Caret() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Caret class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Caret(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICaret /// /// .NET interface for TO BE DEFINED FROM USER @@ -109,7 +156,7 @@ public partial interface ICaret } #endregion - #region Caret + #region Caret implementation public partial class Caret : Javax.Swing.Text.ICaret { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/ChangedCharSetException.cs b/src/net/JNet/Generated/Javax/Swing/Text/ChangedCharSetException.cs index af835de5d0..5f231a677b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/ChangedCharSetException.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/ChangedCharSetException.cs @@ -25,7 +25,24 @@ namespace Javax.Swing.Text { - #region ChangedCharSetException + #region ChangedCharSetException declaration + /// + /// + /// + public partial class ChangedCharSetException : Java.Io.IOException + { + const string _bridgeClassName = "javax.swing.text.ChangedCharSetException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ChangedCharSetException implementation public partial class ChangedCharSetException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/ComponentView.cs b/src/net/JNet/Generated/Javax/Swing/Text/ComponentView.cs index f129a0a8bc..7b95152c20 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/ComponentView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/ComponentView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region ComponentView + #region ComponentView declaration + /// + /// + /// + public partial class ComponentView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.ComponentView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ComponentView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ComponentView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ComponentView implementation public partial class ComponentView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/CompositeView.cs b/src/net/JNet/Generated/Javax/Swing/Text/CompositeView.cs index eca450f3f0..c06ef3c2af 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/CompositeView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/CompositeView.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Text { - #region CompositeView + #region CompositeView declaration + /// + /// + /// + public partial class CompositeView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.CompositeView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompositeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompositeView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompositeView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompositeView implementation public partial class CompositeView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DateFormatter.cs b/src/net/JNet/Generated/Javax/Swing/Text/DateFormatter.cs index 773c8a2eb7..91516d3166 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DateFormatter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DateFormatter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region DateFormatter + #region DateFormatter declaration + /// + /// + /// + public partial class DateFormatter : Javax.Swing.Text.InternationalFormatter + { + const string _bridgeClassName = "javax.swing.text.DateFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DateFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DateFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DateFormatter implementation public partial class DateFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DefaultCaret.cs b/src/net/JNet/Generated/Javax/Swing/Text/DefaultCaret.cs index 62be95601f..9acdbf215c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DefaultCaret.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DefaultCaret.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region DefaultCaret + #region DefaultCaret declaration + /// + /// + /// + public partial class DefaultCaret : Java.Awt.Rectangle + { + const string _bridgeClassName = "javax.swing.text.DefaultCaret"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultCaret() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultCaret(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultCaret implementation public partial class DefaultCaret { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DefaultEditorKit.cs b/src/net/JNet/Generated/Javax/Swing/Text/DefaultEditorKit.cs index c296b144d9..cb4fbf3fee 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DefaultEditorKit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DefaultEditorKit.cs @@ -25,7 +25,412 @@ namespace Javax.Swing.Text { - #region DefaultEditorKit + #region DefaultEditorKit declaration + /// + /// + /// + public partial class DefaultEditorKit : Javax.Swing.Text.EditorKit + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultEditorKit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultEditorKit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BeepAction declaration + /// + /// + /// + public partial class BeepAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$BeepAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BeepAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BeepAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CopyAction declaration + /// + /// + /// + public partial class CopyAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$CopyAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CopyAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CopyAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region CutAction declaration + /// + /// + /// + public partial class CutAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$CutAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CutAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CutAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region DefaultKeyTypedAction declaration + /// + /// + /// + public partial class DefaultKeyTypedAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$DefaultKeyTypedAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultKeyTypedAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultKeyTypedAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region InsertBreakAction declaration + /// + /// + /// + public partial class InsertBreakAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$InsertBreakAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InsertBreakAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InsertBreakAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region InsertContentAction declaration + /// + /// + /// + public partial class InsertContentAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$InsertContentAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InsertContentAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InsertContentAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region InsertTabAction declaration + /// + /// + /// + public partial class InsertTabAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$InsertTabAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InsertTabAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InsertTabAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region PasteAction declaration + /// + /// + /// + public partial class PasteAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.DefaultEditorKit$PasteAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PasteAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PasteAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DefaultEditorKit implementation public partial class DefaultEditorKit { #region Constructors @@ -343,7 +748,7 @@ public partial class DefaultEditorKit #endregion #region Nested classes - #region BeepAction + #region BeepAction implementation public partial class BeepAction { #region Constructors @@ -374,7 +779,7 @@ public partial class BeepAction } #endregion - #region CopyAction + #region CopyAction implementation public partial class CopyAction { #region Constructors @@ -405,7 +810,7 @@ public partial class CopyAction } #endregion - #region CutAction + #region CutAction implementation public partial class CutAction { #region Constructors @@ -436,7 +841,7 @@ public partial class CutAction } #endregion - #region DefaultKeyTypedAction + #region DefaultKeyTypedAction implementation public partial class DefaultKeyTypedAction { #region Constructors @@ -467,7 +872,7 @@ public partial class DefaultKeyTypedAction } #endregion - #region InsertBreakAction + #region InsertBreakAction implementation public partial class InsertBreakAction { #region Constructors @@ -498,7 +903,7 @@ public partial class InsertBreakAction } #endregion - #region InsertContentAction + #region InsertContentAction implementation public partial class InsertContentAction { #region Constructors @@ -529,7 +934,7 @@ public partial class InsertContentAction } #endregion - #region InsertTabAction + #region InsertTabAction implementation public partial class InsertTabAction { #region Constructors @@ -560,7 +965,7 @@ public partial class InsertTabAction } #endregion - #region PasteAction + #region PasteAction implementation public partial class PasteAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatter.cs b/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatter.cs index eb0244146e..3e96e961fc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region DefaultFormatter + #region DefaultFormatter declaration + /// + /// + /// + public partial class DefaultFormatter : Javax.Swing.JFormattedTextField.AbstractFormatter + { + const string _bridgeClassName = "javax.swing.text.DefaultFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultFormatter implementation public partial class DefaultFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatterFactory.cs b/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatterFactory.cs index bedf29e088..36840350d3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatterFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DefaultFormatterFactory.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region DefaultFormatterFactory + #region DefaultFormatterFactory declaration + /// + /// + /// + public partial class DefaultFormatterFactory : Javax.Swing.JFormattedTextField.AbstractFormatterFactory + { + const string _bridgeClassName = "javax.swing.text.DefaultFormatterFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultFormatterFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultFormatterFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultFormatterFactory implementation public partial class DefaultFormatterFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DefaultHighlighter.cs b/src/net/JNet/Generated/Javax/Swing/Text/DefaultHighlighter.cs index 3252b5f826..4b6c268c93 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DefaultHighlighter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DefaultHighlighter.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Text { - #region DefaultHighlighter + #region DefaultHighlighter declaration + /// + /// + /// + public partial class DefaultHighlighter : Javax.Swing.Text.LayeredHighlighter + { + const string _bridgeClassName = "javax.swing.text.DefaultHighlighter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultHighlighter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultHighlighter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DefaultHighlightPainter declaration + /// + /// + /// + public partial class DefaultHighlightPainter : Javax.Swing.Text.LayeredHighlighter.LayerPainter + { + const string _bridgeClassName = "javax.swing.text.DefaultHighlighter$DefaultHighlightPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultHighlightPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultHighlightPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DefaultHighlighter implementation public partial class DefaultHighlighter { #region Constructors @@ -62,7 +152,7 @@ public bool DrawsLayeredHighlights #endregion #region Nested classes - #region DefaultHighlightPainter + #region DefaultHighlightPainter implementation public partial class DefaultHighlightPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DefaultStyledDocument.cs b/src/net/JNet/Generated/Javax/Swing/Text/DefaultStyledDocument.cs index 95f9816f59..8d6b4f4115 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DefaultStyledDocument.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DefaultStyledDocument.cs @@ -25,7 +25,187 @@ namespace Javax.Swing.Text { - #region DefaultStyledDocument + #region DefaultStyledDocument declaration + /// + /// + /// + public partial class DefaultStyledDocument : Javax.Swing.Text.AbstractDocument + { + const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultStyledDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultStyledDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AttributeUndoableEdit declaration + /// + /// + /// + public partial class AttributeUndoableEdit : Javax.Swing.Undo.AbstractUndoableEdit + { + const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument$AttributeUndoableEdit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeUndoableEdit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeUndoableEdit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ElementBuffer declaration + /// + /// + /// + public partial class ElementBuffer : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument$ElementBuffer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementBuffer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementBuffer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementSpec declaration + /// + /// + /// + public partial class ElementSpec : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.DefaultStyledDocument$ElementSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DefaultStyledDocument implementation public partial class DefaultStyledDocument { #region Constructors @@ -194,7 +374,7 @@ public void SetParagraphAttributes(int arg0, int arg1, Javax.Swing.Text.Attribut #endregion #region Nested classes - #region AttributeUndoableEdit + #region AttributeUndoableEdit implementation public partial class AttributeUndoableEdit { #region Constructors @@ -235,7 +415,7 @@ public AttributeUndoableEdit(Javax.Swing.Text.Element arg0, Javax.Swing.Text.Att } #endregion - #region ElementBuffer + #region ElementBuffer implementation public partial class ElementBuffer { #region Constructors @@ -323,7 +503,7 @@ public void Remove(int arg0, int arg1, Javax.Swing.Text.AbstractDocument.Default } #endregion - #region ElementSpec + #region ElementSpec implementation public partial class ElementSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Document.cs b/src/net/JNet/Generated/Javax/Swing/Text/Document.cs index 2b8f434ad7..c97ef0a04c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Document.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Document.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region Document declaration + /// + /// + /// + public partial class Document : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Document"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Document() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Document(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocument /// /// .NET interface for TO BE DEFINED FROM USER @@ -138,7 +185,7 @@ public partial interface IDocument } #endregion - #region Document + #region Document implementation public partial class Document : Javax.Swing.Text.IDocument { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/DocumentFilter.cs b/src/net/JNet/Generated/Javax/Swing/Text/DocumentFilter.cs index 86a598fbfd..85e76c2059 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/DocumentFilter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/DocumentFilter.cs @@ -25,7 +25,99 @@ namespace Javax.Swing.Text { - #region DocumentFilter + #region DocumentFilter declaration + /// + /// + /// + public partial class DocumentFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.DocumentFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DocumentFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DocumentFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FilterBypass declaration + /// + /// + /// + public partial class FilterBypass : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.DocumentFilter$FilterBypass"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterBypass() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterBypass(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DocumentFilter implementation public partial class DocumentFilter { #region Constructors @@ -85,7 +177,7 @@ public void Replace(Javax.Swing.Text.DocumentFilter.FilterBypass arg0, int arg1, #endregion #region Nested classes - #region FilterBypass + #region FilterBypass implementation public partial class FilterBypass { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/EditorKit.cs b/src/net/JNet/Generated/Javax/Swing/Text/EditorKit.cs index 41b45b5d2c..fb2ab1d5d4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/EditorKit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/EditorKit.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Text { - #region EditorKit + #region EditorKit declaration + /// + /// + /// + public partial class EditorKit : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.EditorKit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EditorKit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EditorKit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EditorKit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EditorKit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EditorKit implementation public partial class EditorKit { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Element.cs b/src/net/JNet/Generated/Javax/Swing/Text/Element.cs index 5e3c8000b1..6fae142e3f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Element.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Element.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region Element declaration + /// + /// + /// + public partial class Element : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Element"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Element() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Element(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +135,7 @@ public partial interface IElement } #endregion - #region Element + #region Element implementation public partial class Element : Javax.Swing.Text.IElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/ElementIterator.cs b/src/net/JNet/Generated/Javax/Swing/Text/ElementIterator.cs index d8b2b6ab64..9cd0c9355c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/ElementIterator.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/ElementIterator.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region ElementIterator + #region ElementIterator declaration + /// + /// + /// + public partial class ElementIterator : Java.Lang.Cloneable + { + const string _bridgeClassName = "javax.swing.text.ElementIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ElementIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ElementIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ElementIterator implementation public partial class ElementIterator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/FieldView.cs b/src/net/JNet/Generated/Javax/Swing/Text/FieldView.cs index ce814b4e2e..3e1b831e02 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/FieldView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/FieldView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region FieldView + #region FieldView declaration + /// + /// + /// + public partial class FieldView : Javax.Swing.Text.PlainView + { + const string _bridgeClassName = "javax.swing.text.FieldView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FieldView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FieldView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FieldView implementation public partial class FieldView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/FlowView.cs b/src/net/JNet/Generated/Javax/Swing/Text/FlowView.cs index 957e8e9b25..626b7504a9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/FlowView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/FlowView.cs @@ -25,7 +25,99 @@ namespace Javax.Swing.Text { - #region FlowView + #region FlowView declaration + /// + /// + /// + public partial class FlowView : Javax.Swing.Text.BoxView + { + const string _bridgeClassName = "javax.swing.text.FlowView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FlowView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlowView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FlowView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FlowView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FlowStrategy declaration + /// + /// + /// + public partial class FlowStrategy : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.FlowView$FlowStrategy"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FlowStrategy() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FlowStrategy(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region FlowView implementation public partial class FlowView { #region Constructors @@ -83,7 +175,7 @@ public int GetFlowStart(int arg0) #endregion #region Nested classes - #region FlowStrategy + #region FlowStrategy implementation public partial class FlowStrategy { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/GapContent.cs b/src/net/JNet/Generated/Javax/Swing/Text/GapContent.cs index adeb3350d6..517eae744f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/GapContent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/GapContent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region GapContent + #region GapContent declaration + /// + /// + /// + public partial class GapContent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.GapContent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GapContent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GapContent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GapContent implementation public partial class GapContent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/GlyphView.cs b/src/net/JNet/Generated/Javax/Swing/Text/GlyphView.cs index 7a72f88129..edbb43af45 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/GlyphView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/GlyphView.cs @@ -25,7 +25,99 @@ namespace Javax.Swing.Text { - #region GlyphView + #region GlyphView declaration + /// + /// + /// + public partial class GlyphView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.GlyphView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public GlyphView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public GlyphView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region GlyphPainter declaration + /// + /// + /// + public partial class GlyphPainter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.GlyphView$GlyphPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GlyphPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GlyphPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GlyphPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GlyphPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region GlyphView implementation public partial class GlyphView { #region Constructors @@ -170,7 +262,7 @@ public void SetGlyphPainter(Javax.Swing.Text.GlyphView.GlyphPainter arg0) #endregion #region Nested classes - #region GlyphPainter + #region GlyphPainter implementation public partial class GlyphPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Highlighter.cs b/src/net/JNet/Generated/Javax/Swing/Text/Highlighter.cs index a6ed9ecb24..a06771f6c3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Highlighter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Highlighter.cs @@ -25,6 +25,147 @@ namespace Javax.Swing.Text { + #region Highlighter declaration + /// + /// + /// + public partial class Highlighter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Highlighter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Highlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Highlighter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Highlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Highlighter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Highlight declaration + /// + /// + /// + public partial class Highlight : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Highlighter$Highlight"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Highlight class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Highlight() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Highlight class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Highlight(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region HighlightPainter declaration + /// + /// + /// + public partial class HighlightPainter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Highlighter$HighlightPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HighlightPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HighlightPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HighlightPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HighlightPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IHighlighter /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +229,7 @@ public partial interface IHighlighter } #endregion - #region Highlighter + #region Highlighter implementation public partial class Highlighter : Javax.Swing.Text.IHighlighter { #region Constructors @@ -181,7 +322,7 @@ public void RemoveHighlight(object arg0) #endregion #region Nested classes - #region Highlight + #region Highlight implementation public partial class Highlight { #region Constructors @@ -233,7 +374,7 @@ public int StartOffset } #endregion - #region HighlightPainter + #region HighlightPainter implementation public partial class HighlightPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/AllPackageClasses.cs deleted file mode 100644 index 5358903d72..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/AllPackageClasses.cs +++ /dev/null @@ -1,1926 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Text.Html -{ - #region BlockView - /// - /// - /// - public partial class BlockView : Javax.Swing.Text.BoxView - { - const string _bridgeClassName = "javax.swing.text.html.BlockView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BlockView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BlockView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSS - /// - /// - /// - public partial class CSS : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.html.CSS"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CSS() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CSS(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Attribute - /// - /// - /// - public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.CSS$Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FormSubmitEvent - /// - /// - /// - public partial class FormSubmitEvent : Javax.Swing.Text.Html.HTMLFrameHyperlinkEvent - { - const string _bridgeClassName = "javax.swing.text.html.FormSubmitEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FormSubmitEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FormSubmitEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region MethodType - /// - /// - /// - public partial class MethodType : Java.Lang.Enum - { - const string _bridgeClassName = "javax.swing.text.html.FormSubmitEvent$MethodType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MethodType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MethodType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FormView - /// - /// - /// - public partial class FormView : Javax.Swing.Text.ComponentView - { - const string _bridgeClassName = "javax.swing.text.html.FormView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FormView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FormView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTML - /// - /// - /// - public partial class HTML : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTML"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTML() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTML(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Attribute - /// - /// - /// - public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTML$Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Tag - /// - /// - /// - public partial class Tag : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTML$Tag"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Tag() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Tag(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region UnknownTag - /// - /// - /// - public partial class UnknownTag : Javax.Swing.Text.Html.HTML.Tag - { - const string _bridgeClassName = "javax.swing.text.html.HTML$UnknownTag"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UnknownTag() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UnknownTag(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HTMLDocument - /// - /// - /// - public partial class HTMLDocument : Javax.Swing.Text.DefaultStyledDocument - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTMLDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTMLDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BlockElement - /// - /// - /// - public partial class BlockElement : Javax.Swing.Text.AbstractDocument.BranchElement - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$BlockElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BlockElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BlockElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLReader - /// - /// - /// - public partial class HTMLReader : Javax.Swing.Text.Html.HTMLEditorKit.ParserCallback - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTMLReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTMLReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region FormAction - /// - /// - /// - public partial class FormAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.SpecialAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$FormAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FormAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FormAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharacterAction - /// - /// - /// - public partial class CharacterAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$CharacterAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CharacterAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CharacterAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PreAction - /// - /// - /// - public partial class PreAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.BlockAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$PreAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public PreAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public PreAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HiddenAction - /// - /// - /// - public partial class HiddenAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$HiddenAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HiddenAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HiddenAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region IsindexAction - /// - /// - /// - public partial class IsindexAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$IsindexAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public IsindexAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public IsindexAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SpecialAction - /// - /// - /// - public partial class SpecialAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$SpecialAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SpecialAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SpecialAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParagraphAction - /// - /// - /// - public partial class ParagraphAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.BlockAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$ParagraphAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParagraphAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParagraphAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region BlockAction - /// - /// - /// - public partial class BlockAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$BlockAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BlockAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BlockAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TagAction - /// - /// - /// - public partial class TagAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$TagAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TagAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TagAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Iterator - /// - /// - /// - public partial class Iterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$Iterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Iterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Iterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Iterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Iterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region RunElement - /// - /// - /// - public partial class RunElement : Javax.Swing.Text.AbstractDocument.LeafElement - { - const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$RunElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RunElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RunElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HTMLEditorKit - /// - /// - /// - public partial class HTMLEditorKit : Javax.Swing.Text.StyledEditorKit - { - const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTMLEditorKit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTMLEditorKit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region HTMLFactory - /// - /// - /// - public partial class HTMLFactory : Javax.Swing.Text.ViewFactory - { - const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$HTMLFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTMLFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTMLFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region HTMLTextAction - /// - /// - /// - public partial class HTMLTextAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$HTMLTextAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTextAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTextAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region InsertHTMLTextAction - /// - /// - /// - public partial class InsertHTMLTextAction : Javax.Swing.Text.Html.HTMLEditorKit.HTMLTextAction - { - const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$InsertHTMLTextAction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InsertHTMLTextAction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InsertHTMLTextAction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Parser - /// - /// - /// - public partial class Parser : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$Parser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Parser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Parser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Parser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ParserCallback - /// - /// - /// - public partial class ParserCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$ParserCallback"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParserCallback() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParserCallback(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region HTMLFrameHyperlinkEvent - /// - /// - /// - public partial class HTMLFrameHyperlinkEvent : Javax.Swing.Event.HyperlinkEvent - { - const string _bridgeClassName = "javax.swing.text.html.HTMLFrameHyperlinkEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTMLFrameHyperlinkEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTMLFrameHyperlinkEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLWriter - /// - /// - /// - public partial class HTMLWriter : Javax.Swing.Text.AbstractWriter - { - const string _bridgeClassName = "javax.swing.text.html.HTMLWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HTMLWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HTMLWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ImageView - /// - /// - /// - public partial class ImageView : Javax.Swing.Text.View - { - const string _bridgeClassName = "javax.swing.text.html.ImageView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ImageView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ImageView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InlineView - /// - /// - /// - public partial class InlineView : Javax.Swing.Text.LabelView - { - const string _bridgeClassName = "javax.swing.text.html.InlineView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InlineView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InlineView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ListView - /// - /// - /// - public partial class ListView : Javax.Swing.Text.Html.BlockView - { - const string _bridgeClassName = "javax.swing.text.html.ListView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MinimalHTMLWriter - /// - /// - /// - public partial class MinimalHTMLWriter : Javax.Swing.Text.AbstractWriter - { - const string _bridgeClassName = "javax.swing.text.html.MinimalHTMLWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MinimalHTMLWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MinimalHTMLWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ObjectView - /// - /// - /// - public partial class ObjectView : Javax.Swing.Text.ComponentView - { - const string _bridgeClassName = "javax.swing.text.html.ObjectView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ObjectView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ObjectView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Option - /// - /// - /// - public partial class Option : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.html.Option"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Option() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Option(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParagraphView - /// - /// - /// - public partial class ParagraphView : Javax.Swing.Text.ParagraphView - { - const string _bridgeClassName = "javax.swing.text.html.ParagraphView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParagraphView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParagraphView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StyleSheet - /// - /// - /// - public partial class StyleSheet : Javax.Swing.Text.StyleContext - { - const string _bridgeClassName = "javax.swing.text.html.StyleSheet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StyleSheet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StyleSheet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region BoxPainter - /// - /// - /// - public partial class BoxPainter : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.html.StyleSheet$BoxPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public BoxPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public BoxPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region ListPainter - /// - /// - /// - public partial class ListPainter : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.html.StyleSheet$ListPainter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ListPainter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ListPainter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/BlockView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/BlockView.cs index 4e102bbbaf..3fa64ffe51 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/BlockView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/BlockView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region BlockView + #region BlockView declaration + /// + /// + /// + public partial class BlockView : Javax.Swing.Text.BoxView + { + const string _bridgeClassName = "javax.swing.text.html.BlockView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BlockView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BlockView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BlockView implementation public partial class BlockView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/CSS.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/CSS.cs index 2739916b71..96891a16d4 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/CSS.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/CSS.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Text.Html { - #region CSS + #region CSS declaration + /// + /// + /// + public partial class CSS : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.html.CSS"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CSS() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CSS(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Attribute declaration + /// + /// + /// + public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.CSS$Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CSS implementation public partial class CSS { #region Constructors @@ -65,7 +155,7 @@ public static Javax.Swing.Text.Html.CSS.Attribute GetAttribute(Java.Lang.String #endregion #region Nested classes - #region Attribute + #region Attribute implementation public partial class Attribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/FormSubmitEvent.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/FormSubmitEvent.cs index 4f9e312984..10105f607d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/FormSubmitEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/FormSubmitEvent.cs @@ -25,7 +25,97 @@ namespace Javax.Swing.Text.Html { - #region FormSubmitEvent + #region FormSubmitEvent declaration + /// + /// + /// + public partial class FormSubmitEvent : Javax.Swing.Text.Html.HTMLFrameHyperlinkEvent + { + const string _bridgeClassName = "javax.swing.text.html.FormSubmitEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FormSubmitEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FormSubmitEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region MethodType declaration + /// + /// + /// + public partial class MethodType : Java.Lang.Enum + { + const string _bridgeClassName = "javax.swing.text.html.FormSubmitEvent$MethodType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MethodType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MethodType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region FormSubmitEvent implementation public partial class FormSubmitEvent { #region Constructors @@ -63,7 +153,7 @@ public Javax.Swing.Text.Html.FormSubmitEvent.MethodType Method #endregion #region Nested classes - #region MethodType + #region MethodType implementation public partial class MethodType { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/FormView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/FormView.cs index 95f36566de..51c61ca02c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/FormView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/FormView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region FormView + #region FormView declaration + /// + /// + /// + public partial class FormView : Javax.Swing.Text.ComponentView + { + const string _bridgeClassName = "javax.swing.text.html.FormView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FormView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FormView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FormView implementation public partial class FormView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTML.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTML.cs index 13955b47e2..6d5c8ec51b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTML.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTML.cs @@ -25,7 +25,187 @@ namespace Javax.Swing.Text.Html { - #region HTML + #region HTML declaration + /// + /// + /// + public partial class HTML : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTML"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTML() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTML(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Attribute declaration + /// + /// + /// + public partial class Attribute : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTML$Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Tag declaration + /// + /// + /// + public partial class Tag : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTML$Tag"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Tag() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Tag(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region UnknownTag declaration + /// + /// + /// + public partial class UnknownTag : Javax.Swing.Text.Html.HTML.Tag + { + const string _bridgeClassName = "javax.swing.text.html.HTML$UnknownTag"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnknownTag() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnknownTag(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HTML implementation public partial class HTML { #region Constructors @@ -98,7 +278,7 @@ public static Javax.Swing.Text.Html.HTML.Tag GetTag(Java.Lang.String arg0) #endregion #region Nested classes - #region Attribute + #region Attribute implementation public partial class Attribute { #region Constructors @@ -609,7 +789,7 @@ public partial class Attribute } #endregion - #region Tag + #region Tag implementation public partial class Tag { #region Constructors @@ -1120,7 +1300,7 @@ public bool IsPreformatted() } #endregion - #region UnknownTag + #region UnknownTag implementation public partial class UnknownTag { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLDocument.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLDocument.cs index 6767aabe19..e3544ff614 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLDocument.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLDocument.cs @@ -25,7 +25,639 @@ namespace Javax.Swing.Text.Html { - #region HTMLDocument + #region HTMLDocument declaration + /// + /// + /// + public partial class HTMLDocument : Javax.Swing.Text.DefaultStyledDocument + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTMLDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTMLDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BlockElement declaration + /// + /// + /// + public partial class BlockElement : Javax.Swing.Text.AbstractDocument.BranchElement + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$BlockElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BlockElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BlockElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HTMLReader declaration + /// + /// + /// + public partial class HTMLReader : Javax.Swing.Text.Html.HTMLEditorKit.ParserCallback + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTMLReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTMLReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FormAction declaration + /// + /// + /// + public partial class FormAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.SpecialAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$FormAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FormAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FormAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CharacterAction declaration + /// + /// + /// + public partial class CharacterAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$CharacterAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CharacterAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CharacterAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PreAction declaration + /// + /// + /// + public partial class PreAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.BlockAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$PreAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PreAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PreAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HiddenAction declaration + /// + /// + /// + public partial class HiddenAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$HiddenAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HiddenAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HiddenAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IsindexAction declaration + /// + /// + /// + public partial class IsindexAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$IsindexAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IsindexAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IsindexAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SpecialAction declaration + /// + /// + /// + public partial class SpecialAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$SpecialAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SpecialAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SpecialAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParagraphAction declaration + /// + /// + /// + public partial class ParagraphAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.BlockAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$ParagraphAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParagraphAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParagraphAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region BlockAction declaration + /// + /// + /// + public partial class BlockAction : Javax.Swing.Text.Html.HTMLDocument.HTMLReader.TagAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$BlockAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BlockAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BlockAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TagAction declaration + /// + /// + /// + public partial class TagAction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$HTMLReader$TagAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TagAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TagAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Iterator declaration + /// + /// + /// + public partial class Iterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$Iterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Iterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Iterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Iterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Iterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region RunElement declaration + /// + /// + /// + public partial class RunElement : Javax.Swing.Text.AbstractDocument.LeafElement + { + const string _bridgeClassName = "javax.swing.text.html.HTMLDocument$RunElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RunElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RunElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HTMLDocument implementation public partial class HTMLDocument { #region Constructors @@ -231,7 +863,7 @@ public void SetOuterHTML(Javax.Swing.Text.Element arg0, Java.Lang.String arg1) #endregion #region Nested classes - #region BlockElement + #region BlockElement implementation public partial class BlockElement { #region Constructors @@ -272,7 +904,7 @@ public BlockElement(Javax.Swing.Text.Html.HTMLDocument arg0, Javax.Swing.Text.El } #endregion - #region HTMLReader + #region HTMLReader implementation public partial class HTMLReader { #region Constructors @@ -317,7 +949,7 @@ public HTMLReader(Javax.Swing.Text.Html.HTMLDocument arg0, int arg1) #endregion #region Nested classes - #region FormAction + #region FormAction implementation public partial class FormAction { #region Constructors @@ -356,7 +988,7 @@ public FormAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region CharacterAction + #region CharacterAction implementation public partial class CharacterAction { #region Constructors @@ -395,7 +1027,7 @@ public CharacterAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region PreAction + #region PreAction implementation public partial class PreAction { #region Constructors @@ -434,7 +1066,7 @@ public PreAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region HiddenAction + #region HiddenAction implementation public partial class HiddenAction { #region Constructors @@ -473,7 +1105,7 @@ public HiddenAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region IsindexAction + #region IsindexAction implementation public partial class IsindexAction { #region Constructors @@ -512,7 +1144,7 @@ public IsindexAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region SpecialAction + #region SpecialAction implementation public partial class SpecialAction { #region Constructors @@ -551,7 +1183,7 @@ public SpecialAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region ParagraphAction + #region ParagraphAction implementation public partial class ParagraphAction { #region Constructors @@ -590,7 +1222,7 @@ public ParagraphAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region BlockAction + #region BlockAction implementation public partial class BlockAction { #region Constructors @@ -629,7 +1261,7 @@ public BlockAction(Javax.Swing.Text.Html.HTMLDocument.HTMLReader arg0) } #endregion - #region TagAction + #region TagAction implementation public partial class TagAction { #region Constructors @@ -692,7 +1324,7 @@ public void Start(Javax.Swing.Text.Html.HTML.Tag arg0, Javax.Swing.Text.MutableA } #endregion - #region Iterator + #region Iterator implementation public partial class Iterator { #region Constructors @@ -766,7 +1398,7 @@ public void Next() } #endregion - #region RunElement + #region RunElement implementation public partial class RunElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLEditorKit.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLEditorKit.cs index 2a09df7e20..44e68e36b6 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLEditorKit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLEditorKit.cs @@ -25,7 +25,281 @@ namespace Javax.Swing.Text.Html { - #region HTMLEditorKit + #region HTMLEditorKit declaration + /// + /// + /// + public partial class HTMLEditorKit : Javax.Swing.Text.StyledEditorKit + { + const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTMLEditorKit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTMLEditorKit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region HTMLFactory declaration + /// + /// + /// + public partial class HTMLFactory : Javax.Swing.Text.ViewFactory + { + const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$HTMLFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTMLFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTMLFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region HTMLTextAction declaration + /// + /// + /// + public partial class HTMLTextAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$HTMLTextAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTextAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTextAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region InsertHTMLTextAction declaration + /// + /// + /// + public partial class InsertHTMLTextAction : Javax.Swing.Text.Html.HTMLEditorKit.HTMLTextAction + { + const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$InsertHTMLTextAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InsertHTMLTextAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InsertHTMLTextAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Parser declaration + /// + /// + /// + public partial class Parser : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$Parser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Parser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Parser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Parser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ParserCallback declaration + /// + /// + /// + public partial class ParserCallback : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.HTMLEditorKit$ParserCallback"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParserCallback() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParserCallback(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region HTMLEditorKit implementation public partial class HTMLEditorKit { #region Constructors @@ -190,7 +464,7 @@ public void SetAutoFormSubmission(bool arg0) #endregion #region Nested classes - #region HTMLFactory + #region HTMLFactory implementation public partial class HTMLFactory { #region Constructors @@ -230,7 +504,7 @@ public Javax.Swing.Text.View Create(Javax.Swing.Text.Element arg0) } #endregion - #region HTMLTextAction + #region HTMLTextAction implementation public partial class HTMLTextAction { #region Constructors @@ -269,7 +543,7 @@ public HTMLTextAction(Java.Lang.String arg0) } #endregion - #region InsertHTMLTextAction + #region InsertHTMLTextAction implementation public partial class InsertHTMLTextAction { #region Constructors @@ -324,7 +598,7 @@ public InsertHTMLTextAction(Java.Lang.String arg0, Java.Lang.String arg1, Javax. } #endregion - #region Parser + #region Parser implementation public partial class Parser { #region Constructors @@ -366,7 +640,7 @@ public void Parse(Java.Io.Reader arg0, Javax.Swing.Text.Html.HTMLEditorKit.Parse } #endregion - #region ParserCallback + #region ParserCallback implementation public partial class ParserCallback { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLFrameHyperlinkEvent.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLFrameHyperlinkEvent.cs index c4fb851b60..358fd1b69c 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLFrameHyperlinkEvent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLFrameHyperlinkEvent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region HTMLFrameHyperlinkEvent + #region HTMLFrameHyperlinkEvent declaration + /// + /// + /// + public partial class HTMLFrameHyperlinkEvent : Javax.Swing.Event.HyperlinkEvent + { + const string _bridgeClassName = "javax.swing.text.html.HTMLFrameHyperlinkEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTMLFrameHyperlinkEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTMLFrameHyperlinkEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HTMLFrameHyperlinkEvent implementation public partial class HTMLFrameHyperlinkEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLWriter.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLWriter.cs index b2e320292a..da22defdc1 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLWriter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/HTMLWriter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region HTMLWriter + #region HTMLWriter declaration + /// + /// + /// + public partial class HTMLWriter : Javax.Swing.Text.AbstractWriter + { + const string _bridgeClassName = "javax.swing.text.html.HTMLWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HTMLWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HTMLWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HTMLWriter implementation public partial class HTMLWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/ImageView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/ImageView.cs index 063163ea08..1ed2d6c0f5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/ImageView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/ImageView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region ImageView + #region ImageView declaration + /// + /// + /// + public partial class ImageView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.html.ImageView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ImageView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ImageView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ImageView implementation public partial class ImageView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/InlineView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/InlineView.cs index 821ea55573..1d8c033487 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/InlineView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/InlineView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region InlineView + #region InlineView declaration + /// + /// + /// + public partial class InlineView : Javax.Swing.Text.LabelView + { + const string _bridgeClassName = "javax.swing.text.html.InlineView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InlineView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InlineView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InlineView implementation public partial class InlineView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/ListView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/ListView.cs index 4bc67e7881..61c859c17e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/ListView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/ListView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region ListView + #region ListView declaration + /// + /// + /// + public partial class ListView : Javax.Swing.Text.Html.BlockView + { + const string _bridgeClassName = "javax.swing.text.html.ListView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ListView implementation public partial class ListView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/MinimalHTMLWriter.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/MinimalHTMLWriter.cs index 8940060cec..c83d497be7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/MinimalHTMLWriter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/MinimalHTMLWriter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region MinimalHTMLWriter + #region MinimalHTMLWriter declaration + /// + /// + /// + public partial class MinimalHTMLWriter : Javax.Swing.Text.AbstractWriter + { + const string _bridgeClassName = "javax.swing.text.html.MinimalHTMLWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MinimalHTMLWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MinimalHTMLWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MinimalHTMLWriter implementation public partial class MinimalHTMLWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/ObjectView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/ObjectView.cs index ae056de36b..07a117c20f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/ObjectView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/ObjectView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region ObjectView + #region ObjectView declaration + /// + /// + /// + public partial class ObjectView : Javax.Swing.Text.ComponentView + { + const string _bridgeClassName = "javax.swing.text.html.ObjectView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ObjectView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ObjectView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ObjectView implementation public partial class ObjectView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Option.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Option.cs index c2ce5af435..00594e6a7f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Option.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Option.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region Option + #region Option declaration + /// + /// + /// + public partial class Option : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.html.Option"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Option() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Option(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Option implementation public partial class Option { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/ParagraphView.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/ParagraphView.cs index 36c4a2bba5..e4bb2521d7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/ParagraphView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/ParagraphView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html { - #region ParagraphView + #region ParagraphView declaration + /// + /// + /// + public partial class ParagraphView : Javax.Swing.Text.ParagraphView + { + const string _bridgeClassName = "javax.swing.text.html.ParagraphView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParagraphView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParagraphView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParagraphView implementation public partial class ParagraphView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AllPackageClasses.cs deleted file mode 100644 index 1c4a36bb52..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AllPackageClasses.cs +++ /dev/null @@ -1,482 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Text.Html.Parser -{ - #region AttributeList - /// - /// - /// - public partial class AttributeList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.parser.AttributeList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributeList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributeList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ContentModel - /// - /// - /// - public partial class ContentModel : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.text.html.parser.ContentModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ContentModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ContentModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentParser - /// - /// - /// - public partial class DocumentParser : Javax.Swing.Text.Html.Parser.Parser - { - const string _bridgeClassName = "javax.swing.text.html.parser.DocumentParser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DocumentParser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DocumentParser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DTD - /// - /// - /// - public partial class DTD : Javax.Swing.Text.Html.Parser.DTDConstants - { - const string _bridgeClassName = "javax.swing.text.html.parser.DTD"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DTD() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DTD(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DTDConstants - /// - /// - /// - public partial class DTDConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.parser.DTDConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DTDConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DTDConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DTDConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DTDConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Element - /// - /// - /// - public partial class Element : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.parser.Element"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Element() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Element(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Entity - /// - /// - /// - public partial class Entity : Javax.Swing.Text.Html.Parser.DTDConstants - { - const string _bridgeClassName = "javax.swing.text.html.parser.Entity"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Entity() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Entity(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Parser - /// - /// - /// - public partial class Parser : Javax.Swing.Text.Html.Parser.DTDConstants - { - const string _bridgeClassName = "javax.swing.text.html.parser.Parser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Parser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Parser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParserDelegator - /// - /// - /// - public partial class ParserDelegator : Javax.Swing.Text.Html.HTMLEditorKit.Parser - { - const string _bridgeClassName = "javax.swing.text.html.parser.ParserDelegator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParserDelegator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ParserDelegator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TagElement - /// - /// - /// - public partial class TagElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.text.html.parser.TagElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TagElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TagElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AttributeList.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AttributeList.cs index 45e321aa7c..df32eb069f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AttributeList.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/AttributeList.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region AttributeList + #region AttributeList declaration + /// + /// + /// + public partial class AttributeList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.parser.AttributeList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributeList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributeList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributeList implementation public partial class AttributeList { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ContentModel.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ContentModel.cs index c48faf4a05..b0a6e922bc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ContentModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ContentModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region ContentModel + #region ContentModel declaration + /// + /// + /// + public partial class ContentModel : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.html.parser.ContentModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ContentModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ContentModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ContentModel implementation public partial class ContentModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTD.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTD.cs index 73c0eb90ad..17e1c6a412 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTD.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTD.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region DTD + #region DTD declaration + /// + /// + /// + public partial class DTD : Javax.Swing.Text.Html.Parser.DTDConstants + { + const string _bridgeClassName = "javax.swing.text.html.parser.DTD"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DTD() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DTD(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DTD implementation public partial class DTD { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTDConstants.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTDConstants.cs index 8cb009710f..9579fc4b96 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTDConstants.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DTDConstants.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text.Html.Parser { + #region DTDConstants declaration + /// + /// + /// + public partial class DTDConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.parser.DTDConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DTDConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DTDConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DTDConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DTDConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDTDConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IDTDConstants } #endregion - #region DTDConstants + #region DTDConstants implementation public partial class DTDConstants : Javax.Swing.Text.Html.Parser.IDTDConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DocumentParser.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DocumentParser.cs index 985d450ee3..23089324eb 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DocumentParser.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/DocumentParser.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region DocumentParser + #region DocumentParser declaration + /// + /// + /// + public partial class DocumentParser : Javax.Swing.Text.Html.Parser.Parser + { + const string _bridgeClassName = "javax.swing.text.html.parser.DocumentParser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DocumentParser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DocumentParser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DocumentParser implementation public partial class DocumentParser { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Element.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Element.cs index 2ca710eb1d..4cabbfaa28 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Element.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Element.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region Element + #region Element declaration + /// + /// + /// + public partial class Element : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.parser.Element"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Element() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Element(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Element implementation public partial class Element { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Entity.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Entity.cs index 5d1dff651e..bf5900d13d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Entity.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Entity.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region Entity + #region Entity declaration + /// + /// + /// + public partial class Entity : Javax.Swing.Text.Html.Parser.DTDConstants + { + const string _bridgeClassName = "javax.swing.text.html.parser.Entity"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Entity() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Entity(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Entity implementation public partial class Entity { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Parser.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Parser.cs index 6359c0848d..a49de83d5e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Parser.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/Parser.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region Parser + #region Parser declaration + /// + /// + /// + public partial class Parser : Javax.Swing.Text.Html.Parser.DTDConstants + { + const string _bridgeClassName = "javax.swing.text.html.parser.Parser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Parser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Parser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Parser implementation public partial class Parser { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ParserDelegator.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ParserDelegator.cs index 31bc23a189..eb9e4294ca 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ParserDelegator.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/ParserDelegator.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region ParserDelegator + #region ParserDelegator declaration + /// + /// + /// + public partial class ParserDelegator : Javax.Swing.Text.Html.HTMLEditorKit.Parser + { + const string _bridgeClassName = "javax.swing.text.html.parser.ParserDelegator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParserDelegator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParserDelegator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParserDelegator implementation public partial class ParserDelegator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/TagElement.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/TagElement.cs index caa5421e4b..98b5dd6053 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/TagElement.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/Parser/TagElement.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Html.Parser { - #region TagElement + #region TagElement declaration + /// + /// + /// + public partial class TagElement : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.html.parser.TagElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TagElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TagElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TagElement implementation public partial class TagElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Html/StyleSheet.cs b/src/net/JNet/Generated/Javax/Swing/Text/Html/StyleSheet.cs index 33e68bbd78..c2460f7ab2 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Html/StyleSheet.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Html/StyleSheet.cs @@ -25,7 +25,142 @@ namespace Javax.Swing.Text.Html { - #region StyleSheet + #region StyleSheet declaration + /// + /// + /// + public partial class StyleSheet : Javax.Swing.Text.StyleContext + { + const string _bridgeClassName = "javax.swing.text.html.StyleSheet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StyleSheet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StyleSheet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region BoxPainter declaration + /// + /// + /// + public partial class BoxPainter : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.html.StyleSheet$BoxPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BoxPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BoxPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ListPainter declaration + /// + /// + /// + public partial class ListPainter : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.html.StyleSheet$ListPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ListPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ListPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region StyleSheet implementation public partial class StyleSheet { #region Constructors @@ -242,7 +377,7 @@ public void SetBaseFontSize(Java.Lang.String arg0) #endregion #region Nested classes - #region BoxPainter + #region BoxPainter implementation public partial class BoxPainter { #region Constructors @@ -296,7 +431,7 @@ public void Paint(Java.Awt.Graphics arg0, float arg1, float arg2, float arg3, fl } #endregion - #region ListPainter + #region ListPainter implementation public partial class ListPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/IconView.cs b/src/net/JNet/Generated/Javax/Swing/Text/IconView.cs index e2b1682d21..fcd8630e61 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/IconView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/IconView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region IconView + #region IconView declaration + /// + /// + /// + public partial class IconView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.IconView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public IconView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public IconView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region IconView implementation public partial class IconView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/InternationalFormatter.cs b/src/net/JNet/Generated/Javax/Swing/Text/InternationalFormatter.cs index 10b095a818..e44f3fc079 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/InternationalFormatter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/InternationalFormatter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region InternationalFormatter + #region InternationalFormatter declaration + /// + /// + /// + public partial class InternationalFormatter : Javax.Swing.Text.DefaultFormatter + { + const string _bridgeClassName = "javax.swing.text.InternationalFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InternationalFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InternationalFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InternationalFormatter implementation public partial class InternationalFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/JTextComponent.cs b/src/net/JNet/Generated/Javax/Swing/Text/JTextComponent.cs index 837deb3210..d680a1abd5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/JTextComponent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/JTextComponent.cs @@ -25,7 +25,189 @@ namespace Javax.Swing.Text { - #region JTextComponent + #region JTextComponent declaration + /// + /// + /// + public partial class JTextComponent : Javax.Swing.JComponent + { + const string _bridgeClassName = "javax.swing.text.JTextComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JTextComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JTextComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JTextComponent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JTextComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AccessibleJTextComponent declaration + /// + /// + /// + public partial class AccessibleJTextComponent : Javax.Swing.JComponent.AccessibleJComponent + { + const string _bridgeClassName = "javax.swing.text.JTextComponent$AccessibleJTextComponent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AccessibleJTextComponent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AccessibleJTextComponent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DropLocation declaration + /// + /// + /// + public partial class DropLocation : Javax.Swing.TransferHandler.DropLocation + { + const string _bridgeClassName = "javax.swing.text.JTextComponent$DropLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region KeyBinding declaration + /// + /// + /// + public partial class KeyBinding : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.JTextComponent$KeyBinding"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public KeyBinding() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public KeyBinding(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region JTextComponent implementation public partial class JTextComponent { #region Constructors @@ -484,7 +666,7 @@ public void Write(Java.Io.Writer arg0) #endregion #region Nested classes - #region AccessibleJTextComponent + #region AccessibleJTextComponent implementation public partial class AccessibleJTextComponent { #region Constructors @@ -818,7 +1000,7 @@ public void SetTextContents(Java.Lang.String arg0) } #endregion - #region DropLocation + #region DropLocation implementation public partial class DropLocation { #region Constructors @@ -863,7 +1045,7 @@ public int Index } #endregion - #region KeyBinding + #region KeyBinding implementation public partial class KeyBinding { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Keymap.cs b/src/net/JNet/Generated/Javax/Swing/Text/Keymap.cs index c8171e3db5..796df439b3 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Keymap.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Keymap.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region Keymap declaration + /// + /// + /// + public partial class Keymap : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Keymap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Keymap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Keymap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Keymap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Keymap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeymap /// /// .NET interface for TO BE DEFINED FROM USER @@ -102,7 +149,7 @@ public partial interface IKeymap } #endregion - #region Keymap + #region Keymap implementation public partial class Keymap : Javax.Swing.Text.IKeymap { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/LabelView.cs b/src/net/JNet/Generated/Javax/Swing/Text/LabelView.cs index 4383c32f30..9073bbd266 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/LabelView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/LabelView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region LabelView + #region LabelView declaration + /// + /// + /// + public partial class LabelView : Javax.Swing.Text.GlyphView + { + const string _bridgeClassName = "javax.swing.text.LabelView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LabelView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LabelView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LabelView implementation public partial class LabelView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/LayeredHighlighter.cs b/src/net/JNet/Generated/Javax/Swing/Text/LayeredHighlighter.cs index c2a4378166..bf6eff86ce 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/LayeredHighlighter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/LayeredHighlighter.cs @@ -25,7 +25,101 @@ namespace Javax.Swing.Text { - #region LayeredHighlighter + #region LayeredHighlighter declaration + /// + /// + /// + public partial class LayeredHighlighter : Javax.Swing.Text.Highlighter + { + const string _bridgeClassName = "javax.swing.text.LayeredHighlighter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LayeredHighlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayeredHighlighter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LayeredHighlighter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayeredHighlighter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region LayerPainter declaration + /// + /// + /// + public partial class LayerPainter : Javax.Swing.Text.Highlighter.HighlightPainter + { + const string _bridgeClassName = "javax.swing.text.LayeredHighlighter$LayerPainter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LayerPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayerPainter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LayerPainter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LayerPainter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region LayeredHighlighter implementation public partial class LayeredHighlighter { #region Constructors @@ -62,7 +156,7 @@ public void PaintLayeredHighlights(Java.Awt.Graphics arg0, int arg1, int arg2, J #endregion #region Nested classes - #region LayerPainter + #region LayerPainter implementation public partial class LayerPainter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/LayoutQueue.cs b/src/net/JNet/Generated/Javax/Swing/Text/LayoutQueue.cs index b06e958577..75e0a2dbde 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/LayoutQueue.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/LayoutQueue.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region LayoutQueue + #region LayoutQueue declaration + /// + /// + /// + public partial class LayoutQueue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.LayoutQueue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LayoutQueue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LayoutQueue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LayoutQueue implementation public partial class LayoutQueue { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/MaskFormatter.cs b/src/net/JNet/Generated/Javax/Swing/Text/MaskFormatter.cs index df27403554..92f806bf0e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/MaskFormatter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/MaskFormatter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region MaskFormatter + #region MaskFormatter declaration + /// + /// + /// + public partial class MaskFormatter : Javax.Swing.Text.DefaultFormatter + { + const string _bridgeClassName = "javax.swing.text.MaskFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MaskFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MaskFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MaskFormatter implementation public partial class MaskFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/MutableAttributeSet.cs b/src/net/JNet/Generated/Javax/Swing/Text/MutableAttributeSet.cs index 0bdbc4637c..3d1b2c261d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/MutableAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/MutableAttributeSet.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region MutableAttributeSet declaration + /// + /// + /// + public partial class MutableAttributeSet : Javax.Swing.Text.AttributeSet + { + const string _bridgeClassName = "javax.swing.text.MutableAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MutableAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MutableAttributeSet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMutableAttributeSet /// /// .NET interface for TO BE DEFINED FROM USER @@ -74,7 +121,7 @@ public partial interface IMutableAttributeSet : Javax.Swing.Text.IAttributeSet } #endregion - #region MutableAttributeSet + #region MutableAttributeSet implementation public partial class MutableAttributeSet : Javax.Swing.Text.IMutableAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/NavigationFilter.cs b/src/net/JNet/Generated/Javax/Swing/Text/NavigationFilter.cs index c2d2131f3a..429ada42f7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/NavigationFilter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/NavigationFilter.cs @@ -25,7 +25,99 @@ namespace Javax.Swing.Text { - #region NavigationFilter + #region NavigationFilter declaration + /// + /// + /// + public partial class NavigationFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.NavigationFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NavigationFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NavigationFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region FilterBypass declaration + /// + /// + /// + public partial class FilterBypass : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.NavigationFilter$FilterBypass"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterBypass() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FilterBypass class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FilterBypass(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region NavigationFilter implementation public partial class NavigationFilter { #region Constructors @@ -83,7 +175,7 @@ public void SetDot(Javax.Swing.Text.NavigationFilter.FilterBypass arg0, int arg1 #endregion #region Nested classes - #region FilterBypass + #region FilterBypass implementation public partial class FilterBypass { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/NumberFormatter.cs b/src/net/JNet/Generated/Javax/Swing/Text/NumberFormatter.cs index c012a86aa9..38fb226df9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/NumberFormatter.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/NumberFormatter.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region NumberFormatter + #region NumberFormatter declaration + /// + /// + /// + public partial class NumberFormatter : Javax.Swing.Text.InternationalFormatter + { + const string _bridgeClassName = "javax.swing.text.NumberFormatter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NumberFormatter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NumberFormatter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NumberFormatter implementation public partial class NumberFormatter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/ParagraphView.cs b/src/net/JNet/Generated/Javax/Swing/Text/ParagraphView.cs index d969b5d0db..c37414ccca 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/ParagraphView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/ParagraphView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region ParagraphView + #region ParagraphView declaration + /// + /// + /// + public partial class ParagraphView : Javax.Swing.Text.FlowView + { + const string _bridgeClassName = "javax.swing.text.ParagraphView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParagraphView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParagraphView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ParagraphView implementation public partial class ParagraphView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/PasswordView.cs b/src/net/JNet/Generated/Javax/Swing/Text/PasswordView.cs index 7f9a6b7581..f1a1920c0b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/PasswordView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/PasswordView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region PasswordView + #region PasswordView declaration + /// + /// + /// + public partial class PasswordView : Javax.Swing.Text.FieldView + { + const string _bridgeClassName = "javax.swing.text.PasswordView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PasswordView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PasswordView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PasswordView implementation public partial class PasswordView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/PlainDocument.cs b/src/net/JNet/Generated/Javax/Swing/Text/PlainDocument.cs index 04a3c7f23c..e756e3c4aa 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/PlainDocument.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/PlainDocument.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region PlainDocument + #region PlainDocument declaration + /// + /// + /// + public partial class PlainDocument : Javax.Swing.Text.AbstractDocument + { + const string _bridgeClassName = "javax.swing.text.PlainDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PlainDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PlainDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PlainDocument implementation public partial class PlainDocument { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/PlainView.cs b/src/net/JNet/Generated/Javax/Swing/Text/PlainView.cs index 13822e70a6..d3046b5a47 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/PlainView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/PlainView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region PlainView + #region PlainView declaration + /// + /// + /// + public partial class PlainView : Javax.Swing.Text.View + { + const string _bridgeClassName = "javax.swing.text.PlainView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public PlainView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public PlainView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region PlainView implementation public partial class PlainView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Position.cs b/src/net/JNet/Generated/Javax/Swing/Text/Position.cs index 72e5331e0f..48d2b47fde 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Position.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Position.cs @@ -25,6 +25,98 @@ namespace Javax.Swing.Text { + #region Position declaration + /// + /// + /// + public partial class Position : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Position"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Position class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Position() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Position class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Position(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Bias declaration + /// + /// + /// + public partial class Bias : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Position$Bias"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Bias() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Bias(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IPosition /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +139,7 @@ public partial interface IPosition } #endregion - #region Position + #region Position implementation public partial class Position : Javax.Swing.Text.IPosition { #region Constructors @@ -78,7 +170,7 @@ public int Offset #endregion #region Nested classes - #region Bias + #region Bias implementation public partial class Bias { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Rtf/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Text/Rtf/AllPackageClasses.cs deleted file mode 100644 index 4dbc074bc2..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Text/Rtf/AllPackageClasses.cs +++ /dev/null @@ -1,75 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Text.Rtf -{ - #region RTFEditorKit - /// - /// - /// - public partial class RTFEditorKit : Javax.Swing.Text.StyledEditorKit - { - const string _bridgeClassName = "javax.swing.text.rtf.RTFEditorKit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public RTFEditorKit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public RTFEditorKit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Rtf/RTFEditorKit.cs b/src/net/JNet/Generated/Javax/Swing/Text/Rtf/RTFEditorKit.cs index 9b37922172..fbcc7d1658 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Rtf/RTFEditorKit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Rtf/RTFEditorKit.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text.Rtf { - #region RTFEditorKit + #region RTFEditorKit declaration + /// + /// + /// + public partial class RTFEditorKit : Javax.Swing.Text.StyledEditorKit + { + const string _bridgeClassName = "javax.swing.text.rtf.RTFEditorKit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public RTFEditorKit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public RTFEditorKit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region RTFEditorKit implementation public partial class RTFEditorKit { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Segment.cs b/src/net/JNet/Generated/Javax/Swing/Text/Segment.cs index 789451c07d..d80db21f14 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Segment.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Segment.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region Segment + #region Segment declaration + /// + /// + /// + public partial class Segment : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Segment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Segment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Segment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Segment implementation public partial class Segment { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/SimpleAttributeSet.cs b/src/net/JNet/Generated/Javax/Swing/Text/SimpleAttributeSet.cs index 19fa9ca02a..986b8b39ab 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/SimpleAttributeSet.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/SimpleAttributeSet.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region SimpleAttributeSet + #region SimpleAttributeSet declaration + /// + /// + /// + public partial class SimpleAttributeSet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.SimpleAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleAttributeSet implementation public partial class SimpleAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/StringContent.cs b/src/net/JNet/Generated/Javax/Swing/Text/StringContent.cs index 90a066aed7..d68c99c31b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/StringContent.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/StringContent.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region StringContent + #region StringContent declaration + /// + /// + /// + public partial class StringContent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.StringContent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StringContent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StringContent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StringContent implementation public partial class StringContent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Style.cs b/src/net/JNet/Generated/Javax/Swing/Text/Style.cs index a529525683..3a38874173 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Style.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Style.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region Style declaration + /// + /// + /// + public partial class Style : Javax.Swing.Text.MutableAttributeSet + { + const string _bridgeClassName = "javax.swing.text.Style"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Style class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Style() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Style class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Style(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStyle /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface IStyle : Javax.Swing.Text.IMutableAttributeSet } #endregion - #region Style + #region Style implementation public partial class Style : Javax.Swing.Text.IStyle { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/StyleConstants.cs b/src/net/JNet/Generated/Javax/Swing/Text/StyleConstants.cs index a72aec51e3..8f2553e9d0 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/StyleConstants.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/StyleConstants.cs @@ -25,7 +25,232 @@ namespace Javax.Swing.Text { - #region StyleConstants + #region StyleConstants declaration + /// + /// + /// + public partial class StyleConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.StyleConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StyleConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StyleConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CharacterConstants declaration + /// + /// + /// + public partial class CharacterConstants : Javax.Swing.Text.StyleConstants + { + const string _bridgeClassName = "javax.swing.text.StyleConstants$CharacterConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CharacterConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CharacterConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ColorConstants declaration + /// + /// + /// + public partial class ColorConstants : Javax.Swing.Text.StyleConstants + { + const string _bridgeClassName = "javax.swing.text.StyleConstants$ColorConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ColorConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ColorConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FontConstants declaration + /// + /// + /// + public partial class FontConstants : Javax.Swing.Text.StyleConstants + { + const string _bridgeClassName = "javax.swing.text.StyleConstants$FontConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FontConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FontConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ParagraphConstants declaration + /// + /// + /// + public partial class ParagraphConstants : Javax.Swing.Text.StyleConstants + { + const string _bridgeClassName = "javax.swing.text.StyleConstants$ParagraphConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParagraphConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ParagraphConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region StyleConstants implementation public partial class StyleConstants { #region Constructors @@ -631,7 +856,7 @@ public static void SetUnderline(Javax.Swing.Text.MutableAttributeSet arg0, bool #endregion #region Nested classes - #region CharacterConstants + #region CharacterConstants implementation public partial class CharacterConstants { #region Constructors @@ -662,7 +887,7 @@ public partial class CharacterConstants } #endregion - #region ColorConstants + #region ColorConstants implementation public partial class ColorConstants { #region Constructors @@ -693,7 +918,7 @@ public partial class ColorConstants } #endregion - #region FontConstants + #region FontConstants implementation public partial class FontConstants { #region Constructors @@ -724,7 +949,7 @@ public partial class FontConstants } #endregion - #region ParagraphConstants + #region ParagraphConstants implementation public partial class ParagraphConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/StyleContext.cs b/src/net/JNet/Generated/Javax/Swing/Text/StyleContext.cs index 6903fdc9c6..d4c84d9620 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/StyleContext.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/StyleContext.cs @@ -25,7 +25,142 @@ namespace Javax.Swing.Text { - #region StyleContext + #region StyleContext declaration + /// + /// + /// + public partial class StyleContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.StyleContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StyleContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StyleContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region NamedStyle declaration + /// + /// + /// + public partial class NamedStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.StyleContext$NamedStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamedStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NamedStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SmallAttributeSet declaration + /// + /// + /// + public partial class SmallAttributeSet : Javax.Swing.Text.AttributeSet + { + const string _bridgeClassName = "javax.swing.text.StyleContext$SmallAttributeSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SmallAttributeSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SmallAttributeSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region StyleContext implementation public partial class StyleContext { #region Constructors @@ -304,7 +439,7 @@ public void WriteAttributes(Java.Io.ObjectOutputStream arg0, Javax.Swing.Text.At #endregion #region Nested classes - #region NamedStyle + #region NamedStyle implementation public partial class NamedStyle { #region Constructors @@ -526,7 +661,7 @@ public void RemoveChangeListener(Javax.Swing.Event.ChangeListener arg0) } #endregion - #region SmallAttributeSet + #region SmallAttributeSet implementation public partial class SmallAttributeSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/StyledDocument.cs b/src/net/JNet/Generated/Javax/Swing/Text/StyledDocument.cs index 38847900b5..820d2d5b10 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/StyledDocument.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/StyledDocument.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region StyledDocument declaration + /// + /// + /// + public partial class StyledDocument : Javax.Swing.Text.Document + { + const string _bridgeClassName = "javax.swing.text.StyledDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StyledDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyledDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StyledDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyledDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStyledDocument /// /// .NET interface for TO BE DEFINED FROM USER @@ -119,7 +166,7 @@ public partial interface IStyledDocument : Javax.Swing.Text.IDocument } #endregion - #region StyledDocument + #region StyledDocument implementation public partial class StyledDocument : Javax.Swing.Text.IStyledDocument { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/StyledEditorKit.cs b/src/net/JNet/Generated/Javax/Swing/Text/StyledEditorKit.cs index cf2806ad31..ec81ede035 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/StyledEditorKit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/StyledEditorKit.cs @@ -25,7 +25,414 @@ namespace Javax.Swing.Text { - #region StyledEditorKit + #region StyledEditorKit declaration + /// + /// + /// + public partial class StyledEditorKit : Javax.Swing.Text.DefaultEditorKit + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StyledEditorKit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StyledEditorKit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region AlignmentAction declaration + /// + /// + /// + public partial class AlignmentAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$AlignmentAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AlignmentAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AlignmentAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region BoldAction declaration + /// + /// + /// + public partial class BoldAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$BoldAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public BoldAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public BoldAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FontFamilyAction declaration + /// + /// + /// + public partial class FontFamilyAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$FontFamilyAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FontFamilyAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FontFamilyAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region FontSizeAction declaration + /// + /// + /// + public partial class FontSizeAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$FontSizeAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FontSizeAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FontSizeAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ForegroundAction declaration + /// + /// + /// + public partial class ForegroundAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$ForegroundAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForegroundAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForegroundAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ItalicAction declaration + /// + /// + /// + public partial class ItalicAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$ItalicAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ItalicAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ItalicAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region StyledTextAction declaration + /// + /// + /// + public partial class StyledTextAction : Javax.Swing.Text.TextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$StyledTextAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StyledTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyledTextAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StyledTextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyledTextAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region UnderlineAction declaration + /// + /// + /// + public partial class UnderlineAction : Javax.Swing.Text.StyledEditorKit.StyledTextAction + { + const string _bridgeClassName = "javax.swing.text.StyledEditorKit$UnderlineAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UnderlineAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UnderlineAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region StyledEditorKit implementation public partial class StyledEditorKit { #region Constructors @@ -63,7 +470,7 @@ public Javax.Swing.Text.MutableAttributeSet InputAttributes #endregion #region Nested classes - #region AlignmentAction + #region AlignmentAction implementation public partial class AlignmentAction { #region Constructors @@ -103,7 +510,7 @@ public AlignmentAction(Java.Lang.String arg0, int arg1) } #endregion - #region BoldAction + #region BoldAction implementation public partial class BoldAction { #region Constructors @@ -134,7 +541,7 @@ public partial class BoldAction } #endregion - #region FontFamilyAction + #region FontFamilyAction implementation public partial class FontFamilyAction { #region Constructors @@ -174,7 +581,7 @@ public FontFamilyAction(Java.Lang.String arg0, Java.Lang.String arg1) } #endregion - #region FontSizeAction + #region FontSizeAction implementation public partial class FontSizeAction { #region Constructors @@ -214,7 +621,7 @@ public FontSizeAction(Java.Lang.String arg0, int arg1) } #endregion - #region ForegroundAction + #region ForegroundAction implementation public partial class ForegroundAction { #region Constructors @@ -254,7 +661,7 @@ public ForegroundAction(Java.Lang.String arg0, Java.Awt.Color arg1) } #endregion - #region ItalicAction + #region ItalicAction implementation public partial class ItalicAction { #region Constructors @@ -285,7 +692,7 @@ public partial class ItalicAction } #endregion - #region StyledTextAction + #region StyledTextAction implementation public partial class StyledTextAction { #region Constructors @@ -324,7 +731,7 @@ public StyledTextAction(Java.Lang.String arg0) } #endregion - #region UnderlineAction + #region UnderlineAction implementation public partial class UnderlineAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/TabExpander.cs b/src/net/JNet/Generated/Javax/Swing/Text/TabExpander.cs index 9b3a07e9c4..1561bae07e 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/TabExpander.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/TabExpander.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region TabExpander declaration + /// + /// + /// + public partial class TabExpander : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.TabExpander"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TabExpander class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabExpander() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TabExpander class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabExpander(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITabExpander /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface ITabExpander } #endregion - #region TabExpander + #region TabExpander implementation public partial class TabExpander : Javax.Swing.Text.ITabExpander { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/TabSet.cs b/src/net/JNet/Generated/Javax/Swing/Text/TabSet.cs index 076caf04ba..6787df6fdd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/TabSet.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/TabSet.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region TabSet + #region TabSet declaration + /// + /// + /// + public partial class TabSet : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.TabSet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabSet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabSet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabSet implementation public partial class TabSet { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/TabStop.cs b/src/net/JNet/Generated/Javax/Swing/Text/TabStop.cs index d7b8515171..e9121f5e6d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/TabStop.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/TabStop.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region TabStop + #region TabStop declaration + /// + /// + /// + public partial class TabStop : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.text.TabStop"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TabStop() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TabStop(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TabStop implementation public partial class TabStop { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/TabableView.cs b/src/net/JNet/Generated/Javax/Swing/Text/TabableView.cs index 602ec8f247..8e83f9519f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/TabableView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/TabableView.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region TabableView declaration + /// + /// + /// + public partial class TabableView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.TabableView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TabableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabableView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TabableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TabableView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITabableView /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface ITabableView } #endregion - #region TabableView + #region TabableView implementation public partial class TabableView : Javax.Swing.Text.ITabableView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/TableView.cs b/src/net/JNet/Generated/Javax/Swing/Text/TableView.cs index d5545e0f80..26905d3723 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/TableView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/TableView.cs @@ -25,7 +25,99 @@ namespace Javax.Swing.Text { - #region TableView + #region TableView declaration + /// + /// + /// + public partial class TableView : Javax.Swing.Text.BoxView + { + const string _bridgeClassName = "javax.swing.text.TableView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TableView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TableView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region TableRow declaration + /// + /// + /// + public partial class TableRow : Javax.Swing.Text.BoxView + { + const string _bridgeClassName = "javax.swing.text.TableView$TableRow"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TableRow() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TableRow(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region TableView implementation public partial class TableView { #region Constructors @@ -57,7 +149,7 @@ public TableView(Javax.Swing.Text.Element arg0) #endregion #region Nested classes - #region TableRow + #region TableRow implementation public partial class TableRow { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/TextAction.cs b/src/net/JNet/Generated/Javax/Swing/Text/TextAction.cs index 0ed47f976d..2f0e959607 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/TextAction.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/TextAction.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Text { - #region TextAction + #region TextAction declaration + /// + /// + /// + public partial class TextAction : Javax.Swing.AbstractAction + { + const string _bridgeClassName = "javax.swing.text.TextAction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TextAction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TextAction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TextAction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TextAction implementation public partial class TextAction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/Utilities.cs b/src/net/JNet/Generated/Javax/Swing/Text/Utilities.cs index 592bcfbf6b..bb99c689ba 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/Utilities.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/Utilities.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region Utilities + #region Utilities declaration + /// + /// + /// + public partial class Utilities : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.Utilities"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Utilities() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Utilities(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Utilities implementation public partial class Utilities { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/View.cs b/src/net/JNet/Generated/Javax/Swing/Text/View.cs index 257dce8da1..4d59988f56 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/View.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/View.cs @@ -25,7 +25,54 @@ namespace Javax.Swing.Text { - #region View + #region View declaration + /// + /// + /// + public partial class View : Javax.Swing.SwingConstants + { + const string _bridgeClassName = "javax.swing.text.View"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("View class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public View() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("View class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public View(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region View implementation public partial class View { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/ViewFactory.cs b/src/net/JNet/Generated/Javax/Swing/Text/ViewFactory.cs index e0f096e284..234b6d8a38 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/ViewFactory.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/ViewFactory.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Text { + #region ViewFactory declaration + /// + /// + /// + public partial class ViewFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.text.ViewFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ViewFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ViewFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ViewFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ViewFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IViewFactory /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IViewFactory } #endregion - #region ViewFactory + #region ViewFactory implementation public partial class ViewFactory : Javax.Swing.Text.IViewFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/WrappedPlainView.cs b/src/net/JNet/Generated/Javax/Swing/Text/WrappedPlainView.cs index 0d1c44efe9..33cd4022b7 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/WrappedPlainView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/WrappedPlainView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region WrappedPlainView + #region WrappedPlainView declaration + /// + /// + /// + public partial class WrappedPlainView : Javax.Swing.Text.BoxView + { + const string _bridgeClassName = "javax.swing.text.WrappedPlainView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public WrappedPlainView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public WrappedPlainView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region WrappedPlainView implementation public partial class WrappedPlainView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Text/ZoneView.cs b/src/net/JNet/Generated/Javax/Swing/Text/ZoneView.cs index db824cad70..a7f88af40b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Text/ZoneView.cs +++ b/src/net/JNet/Generated/Javax/Swing/Text/ZoneView.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Text { - #region ZoneView + #region ZoneView declaration + /// + /// + /// + public partial class ZoneView : Javax.Swing.Text.BoxView + { + const string _bridgeClassName = "javax.swing.text.ZoneView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ZoneView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ZoneView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ZoneView implementation public partial class ZoneView { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Timer.cs b/src/net/JNet/Generated/Javax/Swing/Timer.cs index f97cf98fb3..73eabd2f79 100644 --- a/src/net/JNet/Generated/Javax/Swing/Timer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Timer.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region Timer + #region Timer declaration + /// + /// + /// + public partial class Timer : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.Timer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Timer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Timer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Timer implementation public partial class Timer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/TransferHandler.cs b/src/net/JNet/Generated/Javax/Swing/TransferHandler.cs index f88600017a..8b797aa3b0 100644 --- a/src/net/JNet/Generated/Javax/Swing/TransferHandler.cs +++ b/src/net/JNet/Generated/Javax/Swing/TransferHandler.cs @@ -25,7 +25,142 @@ namespace Javax.Swing { - #region TransferHandler + #region TransferHandler declaration + /// + /// + /// + public partial class TransferHandler : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.TransferHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TransferHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TransferHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DropLocation declaration + /// + /// + /// + public partial class DropLocation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.TransferHandler$DropLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DropLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DropLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region TransferSupport declaration + /// + /// + /// + public partial class TransferSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.TransferHandler$TransferSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TransferSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TransferSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region TransferHandler implementation public partial class TransferHandler { #region Constructors @@ -199,7 +334,7 @@ public void ExportToClipboard(Javax.Swing.JComponent arg0, Java.Awt.Datatransfer #endregion #region Nested classes - #region DropLocation + #region DropLocation implementation public partial class DropLocation { #region Constructors @@ -237,7 +372,7 @@ public Java.Awt.Point DropPoint } #endregion - #region TransferSupport + #region TransferSupport implementation public partial class TransferSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/AbstractLayoutCache.cs b/src/net/JNet/Generated/Javax/Swing/Tree/AbstractLayoutCache.cs index 7a527a69ba..d9b01e02c8 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/AbstractLayoutCache.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/AbstractLayoutCache.cs @@ -25,7 +25,101 @@ namespace Javax.Swing.Tree { - #region AbstractLayoutCache + #region AbstractLayoutCache declaration + /// + /// + /// + public partial class AbstractLayoutCache : Javax.Swing.Tree.RowMapper + { + const string _bridgeClassName = "javax.swing.tree.AbstractLayoutCache"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractLayoutCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractLayoutCache() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractLayoutCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractLayoutCache(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region NodeDimensions declaration + /// + /// + /// + public partial class NodeDimensions : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.AbstractLayoutCache$NodeDimensions"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NodeDimensions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeDimensions() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NodeDimensions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeDimensions(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region AbstractLayoutCache implementation public partial class AbstractLayoutCache { #region Constructors @@ -263,7 +357,7 @@ public void SetRootVisible(bool arg0) #endregion #region Nested classes - #region NodeDimensions + #region NodeDimensions implementation public partial class NodeDimensions { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Tree/AllPackageClasses.cs deleted file mode 100644 index 605bf72e6c..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Tree/AllPackageClasses.cs +++ /dev/null @@ -1,920 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Tree -{ - #region AbstractLayoutCache - /// - /// - /// - public partial class AbstractLayoutCache : Javax.Swing.Tree.RowMapper - { - const string _bridgeClassName = "javax.swing.tree.AbstractLayoutCache"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractLayoutCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractLayoutCache() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractLayoutCache class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractLayoutCache(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region NodeDimensions - /// - /// - /// - public partial class NodeDimensions : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.AbstractLayoutCache$NodeDimensions"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NodeDimensions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeDimensions() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NodeDimensions class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeDimensions(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DefaultMutableTreeNode - /// - /// - /// - public partial class DefaultMutableTreeNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.DefaultMutableTreeNode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultMutableTreeNode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultMutableTreeNode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultTreeCellEditor - /// - /// - /// - public partial class DefaultTreeCellEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTreeCellEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTreeCellEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DefaultTextField - /// - /// - /// - public partial class DefaultTextField : Javax.Swing.JTextField - { - const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellEditor$DefaultTextField"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTextField() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTextField(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EditorContainer - /// - /// - /// - public partial class EditorContainer : Java.Awt.Container - { - const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellEditor$EditorContainer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EditorContainer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EditorContainer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DefaultTreeCellRenderer - /// - /// - /// - public partial class DefaultTreeCellRenderer : Javax.Swing.JLabel - { - const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTreeCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTreeCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultTreeModel - /// - /// - /// - public partial class DefaultTreeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.DefaultTreeModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTreeModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTreeModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultTreeSelectionModel - /// - /// - /// - public partial class DefaultTreeSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.DefaultTreeSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultTreeSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultTreeSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExpandVetoException - /// - /// - /// - public partial class ExpandVetoException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.swing.tree.ExpandVetoException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region FixedHeightLayoutCache - /// - /// - /// - public partial class FixedHeightLayoutCache : Javax.Swing.Tree.AbstractLayoutCache - { - const string _bridgeClassName = "javax.swing.tree.FixedHeightLayoutCache"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public FixedHeightLayoutCache() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public FixedHeightLayoutCache(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MutableTreeNode - /// - /// - /// - public partial class MutableTreeNode : Javax.Swing.Tree.TreeNode - { - const string _bridgeClassName = "javax.swing.tree.MutableTreeNode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MutableTreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableTreeNode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MutableTreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutableTreeNode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RowMapper - /// - /// - /// - public partial class RowMapper : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.RowMapper"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RowMapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowMapper() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RowMapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RowMapper(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeCellEditor - /// - /// - /// - public partial class TreeCellEditor : Javax.Swing.CellEditor - { - const string _bridgeClassName = "javax.swing.tree.TreeCellEditor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeCellEditor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeCellEditor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeCellRenderer - /// - /// - /// - public partial class TreeCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.TreeCellRenderer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeCellRenderer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeCellRenderer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeModel - /// - /// - /// - public partial class TreeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.TreeModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeNode - /// - /// - /// - public partial class TreeNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.TreeNode"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeNode() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeNode(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreePath - /// - /// - /// - public partial class TreePath : Java.Io.Serializable - { - const string _bridgeClassName = "javax.swing.tree.TreePath"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public TreePath() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public TreePath(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeSelectionModel - /// - /// - /// - public partial class TreeSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.tree.TreeSelectionModel"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeSelectionModel() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeSelectionModel(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region VariableHeightLayoutCache - /// - /// - /// - public partial class VariableHeightLayoutCache : Javax.Swing.Tree.AbstractLayoutCache - { - const string _bridgeClassName = "javax.swing.tree.VariableHeightLayoutCache"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public VariableHeightLayoutCache() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public VariableHeightLayoutCache(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultMutableTreeNode.cs b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultMutableTreeNode.cs index 99d7d70082..9817a1baef 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultMutableTreeNode.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultMutableTreeNode.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region DefaultMutableTreeNode + #region DefaultMutableTreeNode declaration + /// + /// + /// + public partial class DefaultMutableTreeNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.DefaultMutableTreeNode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultMutableTreeNode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultMutableTreeNode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultMutableTreeNode implementation public partial class DefaultMutableTreeNode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellEditor.cs b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellEditor.cs index 8a72d32593..7edebcbdcf 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellEditor.cs @@ -25,7 +25,142 @@ namespace Javax.Swing.Tree { - #region DefaultTreeCellEditor + #region DefaultTreeCellEditor declaration + /// + /// + /// + public partial class DefaultTreeCellEditor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTreeCellEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTreeCellEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DefaultTextField declaration + /// + /// + /// + public partial class DefaultTextField : Javax.Swing.JTextField + { + const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellEditor$DefaultTextField"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTextField() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTextField(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EditorContainer declaration + /// + /// + /// + public partial class EditorContainer : Java.Awt.Container + { + const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellEditor$EditorContainer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EditorContainer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EditorContainer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DefaultTreeCellEditor implementation public partial class DefaultTreeCellEditor { #region Constructors @@ -187,7 +322,7 @@ public void ValueChanged(Javax.Swing.Event.TreeSelectionEvent arg0) #endregion #region Nested classes - #region DefaultTextField + #region DefaultTextField implementation public partial class DefaultTextField { #region Constructors @@ -227,7 +362,7 @@ public DefaultTextField(Javax.Swing.Tree.DefaultTreeCellEditor arg0, Javax.Swing } #endregion - #region EditorContainer + #region EditorContainer implementation public partial class EditorContainer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellRenderer.cs b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellRenderer.cs index ec3c19a0ef..970978a3f5 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeCellRenderer.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region DefaultTreeCellRenderer + #region DefaultTreeCellRenderer declaration + /// + /// + /// + public partial class DefaultTreeCellRenderer : Javax.Swing.JLabel + { + const string _bridgeClassName = "javax.swing.tree.DefaultTreeCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTreeCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTreeCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultTreeCellRenderer implementation public partial class DefaultTreeCellRenderer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeModel.cs b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeModel.cs index d21b44f7b8..32f898cd12 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region DefaultTreeModel + #region DefaultTreeModel declaration + /// + /// + /// + public partial class DefaultTreeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.DefaultTreeModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTreeModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTreeModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultTreeModel implementation public partial class DefaultTreeModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeSelectionModel.cs index 7784ff937c..892bff16fa 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/DefaultTreeSelectionModel.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region DefaultTreeSelectionModel + #region DefaultTreeSelectionModel declaration + /// + /// + /// + public partial class DefaultTreeSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.DefaultTreeSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultTreeSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultTreeSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultTreeSelectionModel implementation public partial class DefaultTreeSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/ExpandVetoException.cs b/src/net/JNet/Generated/Javax/Swing/Tree/ExpandVetoException.cs index 8a9fdc3697..db3cfb48a9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/ExpandVetoException.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/ExpandVetoException.cs @@ -25,7 +25,24 @@ namespace Javax.Swing.Tree { - #region ExpandVetoException + #region ExpandVetoException declaration + /// + /// + /// + public partial class ExpandVetoException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.swing.tree.ExpandVetoException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ExpandVetoException implementation public partial class ExpandVetoException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/FixedHeightLayoutCache.cs b/src/net/JNet/Generated/Javax/Swing/Tree/FixedHeightLayoutCache.cs index b490612fd5..2b63617c78 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/FixedHeightLayoutCache.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/FixedHeightLayoutCache.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region FixedHeightLayoutCache + #region FixedHeightLayoutCache declaration + /// + /// + /// + public partial class FixedHeightLayoutCache : Javax.Swing.Tree.AbstractLayoutCache + { + const string _bridgeClassName = "javax.swing.tree.FixedHeightLayoutCache"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public FixedHeightLayoutCache() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public FixedHeightLayoutCache(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region FixedHeightLayoutCache implementation public partial class FixedHeightLayoutCache { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/MutableTreeNode.cs b/src/net/JNet/Generated/Javax/Swing/Tree/MutableTreeNode.cs index 199e10c440..14a924f78d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/MutableTreeNode.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/MutableTreeNode.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region MutableTreeNode declaration + /// + /// + /// + public partial class MutableTreeNode : Javax.Swing.Tree.TreeNode + { + const string _bridgeClassName = "javax.swing.tree.MutableTreeNode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MutableTreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableTreeNode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MutableTreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutableTreeNode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMutableTreeNode /// /// .NET interface for TO BE DEFINED FROM USER @@ -73,7 +120,7 @@ public partial interface IMutableTreeNode : Javax.Swing.Tree.ITreeNode } #endregion - #region MutableTreeNode + #region MutableTreeNode implementation public partial class MutableTreeNode : Javax.Swing.Tree.IMutableTreeNode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/RowMapper.cs b/src/net/JNet/Generated/Javax/Swing/Tree/RowMapper.cs index 2ae88c89a8..dba0202925 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/RowMapper.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/RowMapper.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region RowMapper declaration + /// + /// + /// + public partial class RowMapper : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.RowMapper"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RowMapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowMapper() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RowMapper class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RowMapper(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRowMapper /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IRowMapper } #endregion - #region RowMapper + #region RowMapper implementation public partial class RowMapper : Javax.Swing.Tree.IRowMapper { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellEditor.cs b/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellEditor.cs index 62543167a4..da80629600 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellEditor.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellEditor.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region TreeCellEditor declaration + /// + /// + /// + public partial class TreeCellEditor : Javax.Swing.CellEditor + { + const string _bridgeClassName = "javax.swing.tree.TreeCellEditor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeCellEditor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeCellEditor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeCellEditor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITreeCellEditor /// /// .NET interface for TO BE DEFINED FROM USER @@ -54,7 +101,7 @@ public partial interface ITreeCellEditor : Javax.Swing.ICellEditor } #endregion - #region TreeCellEditor + #region TreeCellEditor implementation public partial class TreeCellEditor : Javax.Swing.Tree.ITreeCellEditor { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellRenderer.cs b/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellRenderer.cs index 3e0db2ba05..609bd4349b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellRenderer.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/TreeCellRenderer.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region TreeCellRenderer declaration + /// + /// + /// + public partial class TreeCellRenderer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.TreeCellRenderer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeCellRenderer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeCellRenderer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeCellRenderer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITreeCellRenderer /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ITreeCellRenderer } #endregion - #region TreeCellRenderer + #region TreeCellRenderer implementation public partial class TreeCellRenderer : Javax.Swing.Tree.ITreeCellRenderer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/TreeModel.cs b/src/net/JNet/Generated/Javax/Swing/Tree/TreeModel.cs index 8925b4a949..c8ca13155b 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/TreeModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/TreeModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region TreeModel declaration + /// + /// + /// + public partial class TreeModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.TreeModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITreeModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -89,7 +136,7 @@ public partial interface ITreeModel } #endregion - #region TreeModel + #region TreeModel implementation public partial class TreeModel : Javax.Swing.Tree.ITreeModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/TreeNode.cs b/src/net/JNet/Generated/Javax/Swing/Tree/TreeNode.cs index 8c222ba5bc..528f700456 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/TreeNode.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/TreeNode.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region TreeNode declaration + /// + /// + /// + public partial class TreeNode : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.TreeNode"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeNode() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeNode class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeNode(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITreeNode /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface ITreeNode } #endregion - #region TreeNode + #region TreeNode implementation public partial class TreeNode : Javax.Swing.Tree.ITreeNode { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/TreePath.cs b/src/net/JNet/Generated/Javax/Swing/Tree/TreePath.cs index c5c1c2840d..f59b4b8334 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/TreePath.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/TreePath.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region TreePath + #region TreePath declaration + /// + /// + /// + public partial class TreePath : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.tree.TreePath"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public TreePath() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public TreePath(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TreePath implementation public partial class TreePath { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/TreeSelectionModel.cs b/src/net/JNet/Generated/Javax/Swing/Tree/TreeSelectionModel.cs index efb82ab6bd..0195fe5886 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/TreeSelectionModel.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/TreeSelectionModel.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Tree { + #region TreeSelectionModel declaration + /// + /// + /// + public partial class TreeSelectionModel : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.tree.TreeSelectionModel"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeSelectionModel() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeSelectionModel class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeSelectionModel(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITreeSelectionModel /// /// .NET interface for TO BE DEFINED FROM USER @@ -148,7 +195,7 @@ public partial interface ITreeSelectionModel } #endregion - #region TreeSelectionModel + #region TreeSelectionModel implementation public partial class TreeSelectionModel : Javax.Swing.Tree.ITreeSelectionModel { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Tree/VariableHeightLayoutCache.cs b/src/net/JNet/Generated/Javax/Swing/Tree/VariableHeightLayoutCache.cs index 1e7443fedc..c761f81b84 100644 --- a/src/net/JNet/Generated/Javax/Swing/Tree/VariableHeightLayoutCache.cs +++ b/src/net/JNet/Generated/Javax/Swing/Tree/VariableHeightLayoutCache.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Tree { - #region VariableHeightLayoutCache + #region VariableHeightLayoutCache declaration + /// + /// + /// + public partial class VariableHeightLayoutCache : Javax.Swing.Tree.AbstractLayoutCache + { + const string _bridgeClassName = "javax.swing.tree.VariableHeightLayoutCache"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public VariableHeightLayoutCache() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public VariableHeightLayoutCache(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region VariableHeightLayoutCache implementation public partial class VariableHeightLayoutCache { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/UIClientPropertyKey.cs b/src/net/JNet/Generated/Javax/Swing/UIClientPropertyKey.cs index 6f637b42fd..808d9f8f5a 100644 --- a/src/net/JNet/Generated/Javax/Swing/UIClientPropertyKey.cs +++ b/src/net/JNet/Generated/Javax/Swing/UIClientPropertyKey.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region UIClientPropertyKey declaration + /// + /// + /// + public partial class UIClientPropertyKey : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.UIClientPropertyKey"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UIClientPropertyKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UIClientPropertyKey() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UIClientPropertyKey class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UIClientPropertyKey(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUIClientPropertyKey /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IUIClientPropertyKey } #endregion - #region UIClientPropertyKey + #region UIClientPropertyKey implementation public partial class UIClientPropertyKey : Javax.Swing.IUIClientPropertyKey { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/UIDefaults.cs b/src/net/JNet/Generated/Javax/Swing/UIDefaults.cs index f12d451b73..fbe8a7b52f 100644 --- a/src/net/JNet/Generated/Javax/Swing/UIDefaults.cs +++ b/src/net/JNet/Generated/Javax/Swing/UIDefaults.cs @@ -25,7 +25,236 @@ namespace Javax.Swing { - #region UIDefaults + #region UIDefaults declaration + /// + /// + /// + public partial class UIDefaults : Java.Util.Hashtable + { + const string _bridgeClassName = "javax.swing.UIDefaults"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIDefaults() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIDefaults(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region ActiveValue declaration + /// + /// + /// + public partial class ActiveValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.UIDefaults$ActiveValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ActiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActiveValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ActiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ActiveValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region LazyInputMap declaration + /// + /// + /// + public partial class LazyInputMap : Javax.Swing.UIDefaults.LazyValue + { + const string _bridgeClassName = "javax.swing.UIDefaults$LazyInputMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LazyInputMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LazyInputMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region LazyValue declaration + /// + /// + /// + public partial class LazyValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.UIDefaults$LazyValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LazyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LazyValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LazyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LazyValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region ProxyLazyValue declaration + /// + /// + /// + public partial class ProxyLazyValue : Javax.Swing.UIDefaults.LazyValue + { + const string _bridgeClassName = "javax.swing.UIDefaults$ProxyLazyValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ProxyLazyValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ProxyLazyValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region UIDefaults implementation public partial class UIDefaults { #region Constructors @@ -323,7 +552,7 @@ public void PutDefaults(object[] arg0) #endregion #region Nested classes - #region ActiveValue + #region ActiveValue implementation public partial class ActiveValue { #region Constructors @@ -363,7 +592,7 @@ public object CreateValue(Javax.Swing.UIDefaults arg0) } #endregion - #region LazyInputMap + #region LazyInputMap implementation public partial class LazyInputMap { #region Constructors @@ -403,7 +632,7 @@ public object CreateValue(Javax.Swing.UIDefaults arg0) } #endregion - #region LazyValue + #region LazyValue implementation public partial class LazyValue { #region Constructors @@ -443,7 +672,7 @@ public object CreateValue(Javax.Swing.UIDefaults arg0) } #endregion - #region ProxyLazyValue + #region ProxyLazyValue implementation public partial class ProxyLazyValue { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/UIManager.cs b/src/net/JNet/Generated/Javax/Swing/UIManager.cs index cde3b06828..0620b6162f 100644 --- a/src/net/JNet/Generated/Javax/Swing/UIManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/UIManager.cs @@ -25,7 +25,97 @@ namespace Javax.Swing { - #region UIManager + #region UIManager declaration + /// + /// + /// + public partial class UIManager : Java.Io.Serializable + { + const string _bridgeClassName = "javax.swing.UIManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UIManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UIManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region LookAndFeelInfo declaration + /// + /// + /// + public partial class LookAndFeelInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.UIManager$LookAndFeelInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LookAndFeelInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LookAndFeelInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region UIManager implementation public partial class UIManager { #region Constructors @@ -395,7 +485,7 @@ public static void SetLookAndFeel(Javax.Swing.LookAndFeel arg0) #endregion #region Nested classes - #region LookAndFeelInfo + #region LookAndFeelInfo implementation public partial class LookAndFeelInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/AbstractUndoableEdit.cs b/src/net/JNet/Generated/Javax/Swing/Undo/AbstractUndoableEdit.cs index 8345672300..4c83b5ad21 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/AbstractUndoableEdit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/AbstractUndoableEdit.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Undo { - #region AbstractUndoableEdit + #region AbstractUndoableEdit declaration + /// + /// + /// + public partial class AbstractUndoableEdit : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.undo.AbstractUndoableEdit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AbstractUndoableEdit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AbstractUndoableEdit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AbstractUndoableEdit implementation public partial class AbstractUndoableEdit { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Swing/Undo/AllPackageClasses.cs deleted file mode 100644 index 58e8250693..0000000000 --- a/src/net/JNet/Generated/Javax/Swing/Undo/AllPackageClasses.cs +++ /dev/null @@ -1,383 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Swing.Undo -{ - #region AbstractUndoableEdit - /// - /// - /// - public partial class AbstractUndoableEdit : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.undo.AbstractUndoableEdit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AbstractUndoableEdit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AbstractUndoableEdit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CannotRedoException - /// - /// - /// - public partial class CannotRedoException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.swing.undo.CannotRedoException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CannotUndoException - /// - /// - /// - public partial class CannotUndoException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.swing.undo.CannotUndoException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CompoundEdit - /// - /// - /// - public partial class CompoundEdit : Javax.Swing.Undo.AbstractUndoableEdit - { - const string _bridgeClassName = "javax.swing.undo.CompoundEdit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CompoundEdit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CompoundEdit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StateEdit - /// - /// - /// - public partial class StateEdit : Javax.Swing.Undo.AbstractUndoableEdit - { - const string _bridgeClassName = "javax.swing.undo.StateEdit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StateEdit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StateEdit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StateEditable - /// - /// - /// - public partial class StateEditable : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.undo.StateEditable"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StateEditable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StateEditable() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StateEditable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StateEditable(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UndoableEdit - /// - /// - /// - public partial class UndoableEdit : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.undo.UndoableEdit"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UndoableEdit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UndoableEdit() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UndoableEdit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UndoableEdit(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UndoableEditSupport - /// - /// - /// - public partial class UndoableEditSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.swing.undo.UndoableEditSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UndoableEditSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UndoableEditSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UndoManager - /// - /// - /// - public partial class UndoManager : Javax.Swing.Undo.CompoundEdit - { - const string _bridgeClassName = "javax.swing.undo.UndoManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public UndoManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public UndoManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/CannotRedoException.cs b/src/net/JNet/Generated/Javax/Swing/Undo/CannotRedoException.cs index 34ef588d70..15e76d03bd 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/CannotRedoException.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/CannotRedoException.cs @@ -25,7 +25,24 @@ namespace Javax.Swing.Undo { - #region CannotRedoException + #region CannotRedoException declaration + /// + /// + /// + public partial class CannotRedoException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.swing.undo.CannotRedoException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CannotRedoException implementation public partial class CannotRedoException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/CannotUndoException.cs b/src/net/JNet/Generated/Javax/Swing/Undo/CannotUndoException.cs index 3819d33b42..653902729a 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/CannotUndoException.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/CannotUndoException.cs @@ -25,7 +25,24 @@ namespace Javax.Swing.Undo { - #region CannotUndoException + #region CannotUndoException declaration + /// + /// + /// + public partial class CannotUndoException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.swing.undo.CannotUndoException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CannotUndoException implementation public partial class CannotUndoException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/CompoundEdit.cs b/src/net/JNet/Generated/Javax/Swing/Undo/CompoundEdit.cs index 3d2de2485a..2bffc3b3bc 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/CompoundEdit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/CompoundEdit.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Undo { - #region CompoundEdit + #region CompoundEdit declaration + /// + /// + /// + public partial class CompoundEdit : Javax.Swing.Undo.AbstractUndoableEdit + { + const string _bridgeClassName = "javax.swing.undo.CompoundEdit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CompoundEdit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CompoundEdit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CompoundEdit implementation public partial class CompoundEdit { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/StateEdit.cs b/src/net/JNet/Generated/Javax/Swing/Undo/StateEdit.cs index 8ad7ed84b7..d3d979f643 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/StateEdit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/StateEdit.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Undo { - #region StateEdit + #region StateEdit declaration + /// + /// + /// + public partial class StateEdit : Javax.Swing.Undo.AbstractUndoableEdit + { + const string _bridgeClassName = "javax.swing.undo.StateEdit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StateEdit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StateEdit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StateEdit implementation public partial class StateEdit { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/StateEditable.cs b/src/net/JNet/Generated/Javax/Swing/Undo/StateEditable.cs index 2bcb954b3d..66ed3524de 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/StateEditable.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/StateEditable.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Undo { + #region StateEditable declaration + /// + /// + /// + public partial class StateEditable : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.undo.StateEditable"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StateEditable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StateEditable() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StateEditable class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StateEditable(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStateEditable /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IStateEditable } #endregion - #region StateEditable + #region StateEditable implementation public partial class StateEditable : Javax.Swing.Undo.IStateEditable { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/UndoManager.cs b/src/net/JNet/Generated/Javax/Swing/Undo/UndoManager.cs index 4c10e4a49b..3c8763f3d9 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/UndoManager.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/UndoManager.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Undo { - #region UndoManager + #region UndoManager declaration + /// + /// + /// + public partial class UndoManager : Javax.Swing.Undo.CompoundEdit + { + const string _bridgeClassName = "javax.swing.undo.UndoManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UndoManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UndoManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UndoManager implementation public partial class UndoManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEdit.cs b/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEdit.cs index ff7ad9222e..271d0fb30f 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEdit.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEdit.cs @@ -25,6 +25,53 @@ namespace Javax.Swing.Undo { + #region UndoableEdit declaration + /// + /// + /// + public partial class UndoableEdit : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.undo.UndoableEdit"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UndoableEdit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UndoableEdit() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UndoableEdit class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UndoableEdit(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUndoableEdit /// /// .NET interface for TO BE DEFINED FROM USER @@ -96,7 +143,7 @@ public partial interface IUndoableEdit } #endregion - #region UndoableEdit + #region UndoableEdit implementation public partial class UndoableEdit : Javax.Swing.Undo.IUndoableEdit { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEditSupport.cs b/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEditSupport.cs index 00839ddbd7..f6b3d4b41d 100644 --- a/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEditSupport.cs +++ b/src/net/JNet/Generated/Javax/Swing/Undo/UndoableEditSupport.cs @@ -25,7 +25,52 @@ namespace Javax.Swing.Undo { - #region UndoableEditSupport + #region UndoableEditSupport declaration + /// + /// + /// + public partial class UndoableEditSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.undo.UndoableEditSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public UndoableEditSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public UndoableEditSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region UndoableEditSupport implementation public partial class UndoableEditSupport { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/UnsupportedLookAndFeelException.cs b/src/net/JNet/Generated/Javax/Swing/UnsupportedLookAndFeelException.cs index d974ddb999..40ac693ac0 100644 --- a/src/net/JNet/Generated/Javax/Swing/UnsupportedLookAndFeelException.cs +++ b/src/net/JNet/Generated/Javax/Swing/UnsupportedLookAndFeelException.cs @@ -25,7 +25,24 @@ namespace Javax.Swing { - #region UnsupportedLookAndFeelException + #region UnsupportedLookAndFeelException declaration + /// + /// + /// + public partial class UnsupportedLookAndFeelException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.swing.UnsupportedLookAndFeelException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region UnsupportedLookAndFeelException implementation public partial class UnsupportedLookAndFeelException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/ViewportLayout.cs b/src/net/JNet/Generated/Javax/Swing/ViewportLayout.cs index 327432b543..48bf611bbc 100644 --- a/src/net/JNet/Generated/Javax/Swing/ViewportLayout.cs +++ b/src/net/JNet/Generated/Javax/Swing/ViewportLayout.cs @@ -25,7 +25,52 @@ namespace Javax.Swing { - #region ViewportLayout + #region ViewportLayout declaration + /// + /// + /// + public partial class ViewportLayout : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.ViewportLayout"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ViewportLayout() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ViewportLayout(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ViewportLayout implementation public partial class ViewportLayout { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Swing/WindowConstants.cs b/src/net/JNet/Generated/Javax/Swing/WindowConstants.cs index 3693407a8f..0b41a460bc 100644 --- a/src/net/JNet/Generated/Javax/Swing/WindowConstants.cs +++ b/src/net/JNet/Generated/Javax/Swing/WindowConstants.cs @@ -25,6 +25,53 @@ namespace Javax.Swing { + #region WindowConstants declaration + /// + /// + /// + public partial class WindowConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.swing.WindowConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("WindowConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WindowConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("WindowConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public WindowConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IWindowConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IWindowConstants } #endregion - #region WindowConstants + #region WindowConstants implementation public partial class WindowConstants : Javax.Swing.IWindowConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Tools/AllPackageClasses.cs deleted file mode 100644 index 827f0863f9..0000000000 --- a/src/net/JNet/Generated/Javax/Tools/AllPackageClasses.cs +++ /dev/null @@ -1,1323 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Tools -{ - #region Diagnostic - /// - /// - /// - public partial class Diagnostic : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.Diagnostic"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Diagnostic() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Diagnostic(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Kind - /// - /// - /// - public partial class Kind : Java.Lang.Enum - { - const string _bridgeClassName = "javax.tools.Diagnostic$Kind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Kind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Kind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region Diagnostic - /// - /// - /// - /// - public partial class Diagnostic : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.tools.Diagnostic"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Diagnostic() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Diagnostic(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DiagnosticCollector - /// - /// - /// - public partial class DiagnosticCollector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.DiagnosticCollector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DiagnosticCollector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DiagnosticCollector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DiagnosticCollector - /// - /// - /// - /// - public partial class DiagnosticCollector : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.tools.DiagnosticCollector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DiagnosticCollector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DiagnosticCollector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentationTool - /// - /// - /// - public partial class DocumentationTool : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.DocumentationTool"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentationTool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentationTool() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentationTool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentationTool(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region DocumentationTask - /// - /// - /// - public partial class DocumentationTask : Java.Util.Concurrent.Callable - { - const string _bridgeClassName = "javax.tools.DocumentationTool$DocumentationTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentationTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentationTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Location - /// - /// - /// - public partial class Location : Java.Lang.Enum - { - const string _bridgeClassName = "javax.tools.DocumentationTool$Location"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Location() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Location(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region FileObject - /// - /// - /// - public partial class FileObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.FileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("FileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("FileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public FileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForwardingFileObject - /// - /// - /// - public partial class ForwardingFileObject : Javax.Tools.FileObject - { - const string _bridgeClassName = "javax.tools.ForwardingFileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForwardingFileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForwardingFileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForwardingFileObject - /// - /// - /// - /// - public partial class ForwardingFileObject : Javax.Tools.FileObject where F : Javax.Tools.IFileObject, new() - { - const string _bridgeClassName = "javax.tools.ForwardingFileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForwardingFileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForwardingFileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForwardingJavaFileManager - /// - /// - /// - public partial class ForwardingJavaFileManager : Javax.Tools.JavaFileManager - { - const string _bridgeClassName = "javax.tools.ForwardingJavaFileManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForwardingJavaFileManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForwardingJavaFileManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForwardingJavaFileManager - /// - /// - /// - /// - public partial class ForwardingJavaFileManager : Javax.Tools.JavaFileManager where M : Javax.Tools.IJavaFileManager, new() - { - const string _bridgeClassName = "javax.tools.ForwardingJavaFileManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForwardingJavaFileManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForwardingJavaFileManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForwardingJavaFileObject - /// - /// - /// - public partial class ForwardingJavaFileObject : Javax.Tools.ForwardingFileObject - { - const string _bridgeClassName = "javax.tools.ForwardingJavaFileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForwardingJavaFileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForwardingJavaFileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ForwardingJavaFileObject - /// - /// - /// - /// - public partial class ForwardingJavaFileObject : Javax.Tools.ForwardingFileObject where F : Javax.Tools.IJavaFileObject, new() - { - const string _bridgeClassName = "javax.tools.ForwardingJavaFileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ForwardingJavaFileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ForwardingJavaFileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region JavaCompiler - /// - /// - /// - public partial class JavaCompiler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.JavaCompiler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JavaCompiler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaCompiler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JavaCompiler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaCompiler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region CompilationTask - /// - /// - /// - public partial class CompilationTask : Java.Util.Concurrent.Callable - { - const string _bridgeClassName = "javax.tools.JavaCompiler$CompilationTask"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CompilationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompilationTask() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CompilationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CompilationTask(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JavaFileManager - /// - /// - /// - public partial class JavaFileManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.JavaFileManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaFileManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaFileManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Location - /// - /// - /// - public partial class Location : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.JavaFileManager$Location"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Location() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Location(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region JavaFileObject - /// - /// - /// - public partial class JavaFileObject : Javax.Tools.FileObject - { - const string _bridgeClassName = "javax.tools.JavaFileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("JavaFileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaFileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("JavaFileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public JavaFileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Kind - /// - /// - /// - public partial class Kind : Java.Lang.Enum - { - const string _bridgeClassName = "javax.tools.JavaFileObject$Kind"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Kind() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Kind(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region OptionChecker - /// - /// - /// - public partial class OptionChecker : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.OptionChecker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("OptionChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OptionChecker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("OptionChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public OptionChecker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SimpleJavaFileObject - /// - /// - /// - public partial class SimpleJavaFileObject : Javax.Tools.JavaFileObject - { - const string _bridgeClassName = "javax.tools.SimpleJavaFileObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SimpleJavaFileObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SimpleJavaFileObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StandardJavaFileManager - /// - /// - /// - public partial class StandardJavaFileManager : Javax.Tools.JavaFileManager - { - const string _bridgeClassName = "javax.tools.StandardJavaFileManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StandardJavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StandardJavaFileManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StandardJavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StandardJavaFileManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region PathFactory - /// - /// - /// - public partial class PathFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.StandardJavaFileManager$PathFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PathFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PathFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region StandardLocation - /// - /// - /// - public partial class StandardLocation : Java.Lang.Enum - { - const string _bridgeClassName = "javax.tools.StandardLocation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StandardLocation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StandardLocation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Tool - /// - /// - /// - public partial class Tool : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.Tool"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Tool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Tool() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Tool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Tool(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ToolProvider - /// - /// - /// - public partial class ToolProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.tools.ToolProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ToolProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ToolProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Tools/Diagnostic.cs b/src/net/JNet/Generated/Javax/Tools/Diagnostic.cs index 0fb1b80aac..122926dd78 100644 --- a/src/net/JNet/Generated/Javax/Tools/Diagnostic.cs +++ b/src/net/JNet/Generated/Javax/Tools/Diagnostic.cs @@ -25,7 +25,147 @@ namespace Javax.Tools { - #region Diagnostic + #region Diagnostic declaration + /// + /// + /// + public partial class Diagnostic : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.Diagnostic"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Diagnostic() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Diagnostic(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Kind declaration + /// + /// + /// + public partial class Kind : Java.Lang.Enum + { + const string _bridgeClassName = "javax.tools.Diagnostic$Kind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Kind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Kind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region Diagnostic declaration + /// + /// + /// + /// + public partial class Diagnostic : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.tools.Diagnostic"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Diagnostic() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Diagnostic class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Diagnostic(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Diagnostic implementation public partial class Diagnostic { #region Constructors @@ -120,7 +260,7 @@ public Java.Lang.String GetMessage(Java.Util.Locale arg0) #endregion #region Nested classes - #region Kind + #region Kind implementation public partial class Kind { #region Constructors @@ -261,7 +401,7 @@ public partial interface IDiagnostic } #endregion - #region Diagnostic + #region Diagnostic implementation public partial class Diagnostic : Javax.Tools.IDiagnostic { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/DiagnosticCollector.cs b/src/net/JNet/Generated/Javax/Tools/DiagnosticCollector.cs index f3624a73c6..b413e1bfdc 100644 --- a/src/net/JNet/Generated/Javax/Tools/DiagnosticCollector.cs +++ b/src/net/JNet/Generated/Javax/Tools/DiagnosticCollector.cs @@ -25,7 +25,98 @@ namespace Javax.Tools { - #region DiagnosticCollector + #region DiagnosticCollector declaration + /// + /// + /// + public partial class DiagnosticCollector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.DiagnosticCollector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DiagnosticCollector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DiagnosticCollector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DiagnosticCollector declaration + /// + /// + /// + /// + public partial class DiagnosticCollector : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.tools.DiagnosticCollector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DiagnosticCollector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DiagnosticCollector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DiagnosticCollector implementation public partial class DiagnosticCollector { #region Constructors @@ -71,7 +162,7 @@ public void Report(Javax.Tools.Diagnostic arg0) } #endregion - #region DiagnosticCollector + #region DiagnosticCollector implementation public partial class DiagnosticCollector { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/DocumentationTool.cs b/src/net/JNet/Generated/Javax/Tools/DocumentationTool.cs index 8ed994718b..a0ce5907a1 100644 --- a/src/net/JNet/Generated/Javax/Tools/DocumentationTool.cs +++ b/src/net/JNet/Generated/Javax/Tools/DocumentationTool.cs @@ -25,6 +25,145 @@ namespace Javax.Tools { + #region DocumentationTool declaration + /// + /// + /// + public partial class DocumentationTool : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.DocumentationTool"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentationTool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentationTool() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentationTool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentationTool(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region DocumentationTask declaration + /// + /// + /// + public partial class DocumentationTask : Java.Util.Concurrent.Callable + { + const string _bridgeClassName = "javax.tools.DocumentationTool$DocumentationTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentationTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentationTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Location declaration + /// + /// + /// + public partial class Location : Java.Lang.Enum + { + const string _bridgeClassName = "javax.tools.DocumentationTool$Location"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Location() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Location(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IDocumentationTool /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +182,7 @@ public partial interface IDocumentationTool } #endregion - #region DocumentationTool + #region DocumentationTool implementation public partial class DocumentationTool : Javax.Tools.IDocumentationTool { #region Constructors @@ -75,7 +214,7 @@ public partial class DocumentationTool : Javax.Tools.IDocumentationTool #endregion #region Nested classes - #region DocumentationTask + #region DocumentationTask implementation public partial class DocumentationTask { #region Constructors @@ -131,7 +270,7 @@ public object Call() } #endregion - #region Location + #region Location implementation public partial class Location { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/FileObject.cs b/src/net/JNet/Generated/Javax/Tools/FileObject.cs index fef7e79775..ee13b75799 100644 --- a/src/net/JNet/Generated/Javax/Tools/FileObject.cs +++ b/src/net/JNet/Generated/Javax/Tools/FileObject.cs @@ -25,6 +25,53 @@ namespace Javax.Tools { + #region FileObject declaration + /// + /// + /// + public partial class FileObject : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.FileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("FileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("FileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public FileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IFileObject /// /// .NET interface for TO BE DEFINED FROM USER @@ -93,7 +140,7 @@ public partial interface IFileObject } #endregion - #region FileObject + #region FileObject implementation public partial class FileObject : Javax.Tools.IFileObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/ForwardingFileObject.cs b/src/net/JNet/Generated/Javax/Tools/ForwardingFileObject.cs index fa7d938221..c45d160ebd 100644 --- a/src/net/JNet/Generated/Javax/Tools/ForwardingFileObject.cs +++ b/src/net/JNet/Generated/Javax/Tools/ForwardingFileObject.cs @@ -25,7 +25,98 @@ namespace Javax.Tools { - #region ForwardingFileObject + #region ForwardingFileObject declaration + /// + /// + /// + public partial class ForwardingFileObject : Javax.Tools.FileObject + { + const string _bridgeClassName = "javax.tools.ForwardingFileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForwardingFileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForwardingFileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForwardingFileObject declaration + /// + /// + /// + /// + public partial class ForwardingFileObject : Javax.Tools.FileObject where F : Javax.Tools.IFileObject, new() + { + const string _bridgeClassName = "javax.tools.ForwardingFileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForwardingFileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForwardingFileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForwardingFileObject implementation public partial class ForwardingFileObject { #region Constructors @@ -133,7 +224,7 @@ public Java.Net.URI ToUri() } #endregion - #region ForwardingFileObject + #region ForwardingFileObject implementation public partial class ForwardingFileObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileManager.cs b/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileManager.cs index f6f32b7813..91528d1226 100644 --- a/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileManager.cs +++ b/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileManager.cs @@ -25,7 +25,98 @@ namespace Javax.Tools { - #region ForwardingJavaFileManager + #region ForwardingJavaFileManager declaration + /// + /// + /// + public partial class ForwardingJavaFileManager : Javax.Tools.JavaFileManager + { + const string _bridgeClassName = "javax.tools.ForwardingJavaFileManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForwardingJavaFileManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForwardingJavaFileManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForwardingJavaFileManager declaration + /// + /// + /// + /// + public partial class ForwardingJavaFileManager : Javax.Tools.JavaFileManager where M : Javax.Tools.IJavaFileManager, new() + { + const string _bridgeClassName = "javax.tools.ForwardingJavaFileManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForwardingJavaFileManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForwardingJavaFileManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForwardingJavaFileManager implementation public partial class ForwardingJavaFileManager { #region Constructors @@ -256,7 +347,7 @@ public void Flush() } #endregion - #region ForwardingJavaFileManager + #region ForwardingJavaFileManager implementation public partial class ForwardingJavaFileManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileObject.cs b/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileObject.cs index b898175cfa..91502f61e5 100644 --- a/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileObject.cs +++ b/src/net/JNet/Generated/Javax/Tools/ForwardingJavaFileObject.cs @@ -25,7 +25,98 @@ namespace Javax.Tools { - #region ForwardingJavaFileObject + #region ForwardingJavaFileObject declaration + /// + /// + /// + public partial class ForwardingJavaFileObject : Javax.Tools.ForwardingFileObject + { + const string _bridgeClassName = "javax.tools.ForwardingJavaFileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForwardingJavaFileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForwardingJavaFileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForwardingJavaFileObject declaration + /// + /// + /// + /// + public partial class ForwardingJavaFileObject : Javax.Tools.ForwardingFileObject where F : Javax.Tools.IJavaFileObject, new() + { + const string _bridgeClassName = "javax.tools.ForwardingJavaFileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ForwardingJavaFileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ForwardingJavaFileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ForwardingJavaFileObject implementation public partial class ForwardingJavaFileObject { #region Constructors @@ -91,7 +182,7 @@ public bool IsNameCompatible(Java.Lang.String arg0, Javax.Tools.JavaFileObject.K } #endregion - #region ForwardingJavaFileObject + #region ForwardingJavaFileObject implementation public partial class ForwardingJavaFileObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/JavaCompiler.cs b/src/net/JNet/Generated/Javax/Tools/JavaCompiler.cs index 4f397e8828..b690d1a724 100644 --- a/src/net/JNet/Generated/Javax/Tools/JavaCompiler.cs +++ b/src/net/JNet/Generated/Javax/Tools/JavaCompiler.cs @@ -25,6 +25,100 @@ namespace Javax.Tools { + #region JavaCompiler declaration + /// + /// + /// + public partial class JavaCompiler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.JavaCompiler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JavaCompiler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaCompiler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JavaCompiler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaCompiler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region CompilationTask declaration + /// + /// + /// + public partial class CompilationTask : Java.Util.Concurrent.Callable + { + const string _bridgeClassName = "javax.tools.JavaCompiler$CompilationTask"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CompilationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompilationTask() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CompilationTask class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CompilationTask(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IJavaCompiler /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +137,7 @@ public partial interface IJavaCompiler } #endregion - #region JavaCompiler + #region JavaCompiler implementation public partial class JavaCompiler : Javax.Tools.IJavaCompiler { #region Constructors @@ -75,7 +169,7 @@ public partial class JavaCompiler : Javax.Tools.IJavaCompiler #endregion #region Nested classes - #region CompilationTask + #region CompilationTask implementation public partial class CompilationTask { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/JavaFileManager.cs b/src/net/JNet/Generated/Javax/Tools/JavaFileManager.cs index c0e182e460..4f7ce979b4 100644 --- a/src/net/JNet/Generated/Javax/Tools/JavaFileManager.cs +++ b/src/net/JNet/Generated/Javax/Tools/JavaFileManager.cs @@ -25,6 +25,100 @@ namespace Javax.Tools { + #region JavaFileManager declaration + /// + /// + /// + public partial class JavaFileManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.JavaFileManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaFileManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaFileManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Location declaration + /// + /// + /// + public partial class Location : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.JavaFileManager$Location"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Location() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Location(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IJavaFileManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -181,7 +275,7 @@ public partial interface IJavaFileManager } #endregion - #region JavaFileManager + #region JavaFileManager implementation public partial class JavaFileManager : Javax.Tools.IJavaFileManager { #region Constructors @@ -409,7 +503,7 @@ public Javax.Tools.JavaFileManager.Location GetLocationForModule(Javax.Tools.Jav #endregion #region Nested classes - #region Location + #region Location implementation public partial class Location { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/JavaFileObject.cs b/src/net/JNet/Generated/Javax/Tools/JavaFileObject.cs index 49cde9809e..e24214ee45 100644 --- a/src/net/JNet/Generated/Javax/Tools/JavaFileObject.cs +++ b/src/net/JNet/Generated/Javax/Tools/JavaFileObject.cs @@ -25,6 +25,98 @@ namespace Javax.Tools { + #region JavaFileObject declaration + /// + /// + /// + public partial class JavaFileObject : Javax.Tools.FileObject + { + const string _bridgeClassName = "javax.tools.JavaFileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("JavaFileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaFileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("JavaFileObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public JavaFileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Kind declaration + /// + /// + /// + public partial class Kind : Java.Lang.Enum + { + const string _bridgeClassName = "javax.tools.JavaFileObject$Kind"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Kind() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Kind(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IJavaFileObject /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +154,7 @@ public partial interface IJavaFileObject : Javax.Tools.IFileObject } #endregion - #region JavaFileObject + #region JavaFileObject implementation public partial class JavaFileObject : Javax.Tools.IJavaFileObject { #region Constructors @@ -117,7 +209,7 @@ public bool IsNameCompatible(Java.Lang.String arg0, Javax.Tools.JavaFileObject.K #endregion #region Nested classes - #region Kind + #region Kind implementation public partial class Kind { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/OptionChecker.cs b/src/net/JNet/Generated/Javax/Tools/OptionChecker.cs index 081c54624b..e5c68ec103 100644 --- a/src/net/JNet/Generated/Javax/Tools/OptionChecker.cs +++ b/src/net/JNet/Generated/Javax/Tools/OptionChecker.cs @@ -25,6 +25,53 @@ namespace Javax.Tools { + #region OptionChecker declaration + /// + /// + /// + public partial class OptionChecker : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.OptionChecker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("OptionChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OptionChecker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("OptionChecker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public OptionChecker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IOptionChecker /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IOptionChecker } #endregion - #region OptionChecker + #region OptionChecker implementation public partial class OptionChecker : Javax.Tools.IOptionChecker { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/SimpleJavaFileObject.cs b/src/net/JNet/Generated/Javax/Tools/SimpleJavaFileObject.cs index cb688186f9..567695612d 100644 --- a/src/net/JNet/Generated/Javax/Tools/SimpleJavaFileObject.cs +++ b/src/net/JNet/Generated/Javax/Tools/SimpleJavaFileObject.cs @@ -25,7 +25,52 @@ namespace Javax.Tools { - #region SimpleJavaFileObject + #region SimpleJavaFileObject declaration + /// + /// + /// + public partial class SimpleJavaFileObject : Javax.Tools.JavaFileObject + { + const string _bridgeClassName = "javax.tools.SimpleJavaFileObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SimpleJavaFileObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SimpleJavaFileObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SimpleJavaFileObject implementation public partial class SimpleJavaFileObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/StandardJavaFileManager.cs b/src/net/JNet/Generated/Javax/Tools/StandardJavaFileManager.cs index bf00db0bb5..aafbacb79a 100644 --- a/src/net/JNet/Generated/Javax/Tools/StandardJavaFileManager.cs +++ b/src/net/JNet/Generated/Javax/Tools/StandardJavaFileManager.cs @@ -25,6 +25,100 @@ namespace Javax.Tools { + #region StandardJavaFileManager declaration + /// + /// + /// + public partial class StandardJavaFileManager : Javax.Tools.JavaFileManager + { + const string _bridgeClassName = "javax.tools.StandardJavaFileManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StandardJavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StandardJavaFileManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StandardJavaFileManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StandardJavaFileManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region PathFactory declaration + /// + /// + /// + public partial class PathFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.StandardJavaFileManager$PathFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PathFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PathFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IStandardJavaFileManager /// /// .NET interface for TO BE DEFINED FROM USER @@ -144,7 +238,7 @@ public partial interface IStandardJavaFileManager : Javax.Tools.IJavaFileManager } #endregion - #region StandardJavaFileManager + #region StandardJavaFileManager implementation public partial class StandardJavaFileManager : Javax.Tools.IStandardJavaFileManager { #region Constructors @@ -311,7 +405,7 @@ public void SetPathFactory(Javax.Tools.StandardJavaFileManager.PathFactory arg0) #endregion #region Nested classes - #region PathFactory + #region PathFactory implementation public partial class PathFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/StandardLocation.cs b/src/net/JNet/Generated/Javax/Tools/StandardLocation.cs index 56f0e6feca..18f0df8039 100644 --- a/src/net/JNet/Generated/Javax/Tools/StandardLocation.cs +++ b/src/net/JNet/Generated/Javax/Tools/StandardLocation.cs @@ -25,7 +25,52 @@ namespace Javax.Tools { - #region StandardLocation + #region StandardLocation declaration + /// + /// + /// + public partial class StandardLocation : Java.Lang.Enum + { + const string _bridgeClassName = "javax.tools.StandardLocation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StandardLocation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StandardLocation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StandardLocation implementation public partial class StandardLocation { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/Tool.cs b/src/net/JNet/Generated/Javax/Tools/Tool.cs index 957ffaa0cf..3fe59f97a4 100644 --- a/src/net/JNet/Generated/Javax/Tools/Tool.cs +++ b/src/net/JNet/Generated/Javax/Tools/Tool.cs @@ -25,6 +25,53 @@ namespace Javax.Tools { + #region Tool declaration + /// + /// + /// + public partial class Tool : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.Tool"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Tool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Tool() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Tool class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Tool(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITool /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface ITool } #endregion - #region Tool + #region Tool implementation public partial class Tool : Javax.Tools.ITool { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Tools/ToolProvider.cs b/src/net/JNet/Generated/Javax/Tools/ToolProvider.cs index f89d5652d6..0fcd60eb6d 100644 --- a/src/net/JNet/Generated/Javax/Tools/ToolProvider.cs +++ b/src/net/JNet/Generated/Javax/Tools/ToolProvider.cs @@ -25,7 +25,52 @@ namespace Javax.Tools { - #region ToolProvider + #region ToolProvider declaration + /// + /// + /// + public partial class ToolProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.tools.ToolProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ToolProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ToolProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ToolProvider implementation public partial class ToolProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Transaction/Xa/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Transaction/Xa/AllPackageClasses.cs deleted file mode 100644 index c15ab8dd7e..0000000000 --- a/src/net/JNet/Generated/Javax/Transaction/Xa/AllPackageClasses.cs +++ /dev/null @@ -1,141 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Transaction.Xa -{ - #region XAException - /// - /// - /// - public partial class XAException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.transaction.xa.XAException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XAResource - /// - /// - /// - public partial class XAResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.transaction.xa.XAResource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XAResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XAResource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XAResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XAResource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Xid - /// - /// - /// - public partial class Xid : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.transaction.xa.Xid"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Xid class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Xid() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Xid class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Xid(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Transaction/Xa/XAException.cs b/src/net/JNet/Generated/Javax/Transaction/Xa/XAException.cs index 9a9995b511..11209bf2b1 100644 --- a/src/net/JNet/Generated/Javax/Transaction/Xa/XAException.cs +++ b/src/net/JNet/Generated/Javax/Transaction/Xa/XAException.cs @@ -25,7 +25,24 @@ namespace Javax.Transaction.Xa { - #region XAException + #region XAException declaration + /// + /// + /// + public partial class XAException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.transaction.xa.XAException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XAException implementation public partial class XAException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Transaction/Xa/XAResource.cs b/src/net/JNet/Generated/Javax/Transaction/Xa/XAResource.cs index e004e537da..00bff73163 100644 --- a/src/net/JNet/Generated/Javax/Transaction/Xa/XAResource.cs +++ b/src/net/JNet/Generated/Javax/Transaction/Xa/XAResource.cs @@ -25,6 +25,53 @@ namespace Javax.Transaction.Xa { + #region XAResource declaration + /// + /// + /// + public partial class XAResource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.transaction.xa.XAResource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XAResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XAResource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XAResource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XAResource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXAResource /// /// .NET interface for TO BE DEFINED FROM USER @@ -108,7 +155,7 @@ public partial interface IXAResource } #endregion - #region XAResource + #region XAResource implementation public partial class XAResource : Javax.Transaction.Xa.IXAResource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Transaction/Xa/Xid.cs b/src/net/JNet/Generated/Javax/Transaction/Xa/Xid.cs index bf4fedeb34..f81e82df55 100644 --- a/src/net/JNet/Generated/Javax/Transaction/Xa/Xid.cs +++ b/src/net/JNet/Generated/Javax/Transaction/Xa/Xid.cs @@ -25,6 +25,53 @@ namespace Javax.Transaction.Xa { + #region Xid declaration + /// + /// + /// + public partial class Xid : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.transaction.xa.Xid"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Xid class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Xid() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Xid class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Xid(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXid /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IXid } #endregion - #region Xid + #region Xid implementation public partial class Xid : Javax.Transaction.Xa.IXid { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/AllPackageClasses.cs deleted file mode 100644 index 743b17af12..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/AllPackageClasses.cs +++ /dev/null @@ -1,75 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml -{ - #region XMLConstants - /// - /// - /// - public partial class XMLConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.XMLConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XMLConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XMLConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Catalog/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Catalog/AllPackageClasses.cs deleted file mode 100644 index 47a6673312..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Catalog/AllPackageClasses.cs +++ /dev/null @@ -1,321 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Catalog -{ - #region Catalog - /// - /// - /// - public partial class Catalog : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.catalog.Catalog"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Catalog class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Catalog() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Catalog class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Catalog(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CatalogException - /// - /// - /// - public partial class CatalogException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.xml.catalog.CatalogException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region CatalogFeatures - /// - /// - /// - public partial class CatalogFeatures : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.catalog.CatalogFeatures"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CatalogFeatures() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CatalogFeatures(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Builder - /// - /// - /// - public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.catalog.CatalogFeatures$Builder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Builder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Builder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - #region Feature - /// - /// - /// - public partial class Feature : Java.Lang.Enum - { - const string _bridgeClassName = "javax.xml.catalog.CatalogFeatures$Feature"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Feature() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Feature(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region CatalogManager - /// - /// - /// - public partial class CatalogManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.catalog.CatalogManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public CatalogManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public CatalogManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CatalogResolver - /// - /// - /// - public partial class CatalogResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.catalog.CatalogResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CatalogResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CatalogResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CatalogResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CatalogResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Catalog/Catalog.cs b/src/net/JNet/Generated/Javax/Xml/Catalog/Catalog.cs index befaca1e93..c5d12cf863 100644 --- a/src/net/JNet/Generated/Javax/Xml/Catalog/Catalog.cs +++ b/src/net/JNet/Generated/Javax/Xml/Catalog/Catalog.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Catalog { + #region Catalog declaration + /// + /// + /// + public partial class Catalog : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.catalog.Catalog"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Catalog class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Catalog() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Catalog class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Catalog(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICatalog /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface ICatalog } #endregion - #region Catalog + #region Catalog implementation public partial class Catalog : Javax.Xml.Catalog.ICatalog { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogException.cs b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogException.cs index 44056a3896..2b6a1e949b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Catalog { - #region CatalogException + #region CatalogException declaration + /// + /// + /// + public partial class CatalogException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.xml.catalog.CatalogException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region CatalogException implementation public partial class CatalogException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogFeatures.cs b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogFeatures.cs index cfa03519aa..0eb14b7dc0 100644 --- a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogFeatures.cs +++ b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogFeatures.cs @@ -25,7 +25,142 @@ namespace Javax.Xml.Catalog { - #region CatalogFeatures + #region CatalogFeatures declaration + /// + /// + /// + public partial class CatalogFeatures : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.catalog.CatalogFeatures"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CatalogFeatures() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CatalogFeatures(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Builder declaration + /// + /// + /// + public partial class Builder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.catalog.CatalogFeatures$Builder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Builder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Builder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + #region Feature declaration + /// + /// + /// + public partial class Feature : Java.Lang.Enum + { + const string _bridgeClassName = "javax.xml.catalog.CatalogFeatures$Feature"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Feature() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Feature(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region CatalogFeatures implementation public partial class CatalogFeatures { #region Constructors @@ -74,7 +209,7 @@ public Java.Lang.String Get(Javax.Xml.Catalog.CatalogFeatures.Feature arg0) #endregion #region Nested classes - #region Builder + #region Builder implementation public partial class Builder { #region Constructors @@ -123,7 +258,7 @@ public Javax.Xml.Catalog.CatalogFeatures.Builder With(Javax.Xml.Catalog.CatalogF } #endregion - #region Feature + #region Feature implementation public partial class Feature { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogManager.cs b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogManager.cs index 692e9ad0da..32b9d52043 100644 --- a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogManager.cs +++ b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogManager.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Catalog { - #region CatalogManager + #region CatalogManager declaration + /// + /// + /// + public partial class CatalogManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.catalog.CatalogManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public CatalogManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public CatalogManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region CatalogManager implementation public partial class CatalogManager { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogResolver.cs b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogResolver.cs index 1144bba7e0..9e9b80f9b1 100644 --- a/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogResolver.cs +++ b/src/net/JNet/Generated/Javax/Xml/Catalog/CatalogResolver.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Catalog { + #region CatalogResolver declaration + /// + /// + /// + public partial class CatalogResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.catalog.CatalogResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CatalogResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CatalogResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CatalogResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CatalogResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICatalogResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -77,7 +124,7 @@ public partial interface ICatalogResolver } #endregion - #region CatalogResolver + #region CatalogResolver implementation public partial class CatalogResolver : Javax.Xml.Catalog.ICatalogResolver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/AlgorithmMethod.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/AlgorithmMethod.cs index e877e65576..4ddd7eee2c 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/AlgorithmMethod.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/AlgorithmMethod.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region AlgorithmMethod declaration + /// + /// + /// + public partial class AlgorithmMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.AlgorithmMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AlgorithmMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AlgorithmMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AlgorithmMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAlgorithmMethod /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IAlgorithmMethod } #endregion - #region AlgorithmMethod + #region AlgorithmMethod implementation public partial class AlgorithmMethod : Javax.Xml.Crypto.IAlgorithmMethod { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/AllPackageClasses.cs deleted file mode 100644 index 4362ef1413..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/AllPackageClasses.cs +++ /dev/null @@ -1,659 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Crypto -{ - #region AlgorithmMethod - /// - /// - /// - public partial class AlgorithmMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.AlgorithmMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AlgorithmMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AlgorithmMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AlgorithmMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Data - /// - /// - /// - public partial class Data : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.Data"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Data() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Data(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeySelector - /// - /// - /// - public partial class KeySelector : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.KeySelector"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySelector() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySelector(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Purpose - /// - /// - /// - public partial class Purpose : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.KeySelector$Purpose"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Purpose() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Purpose(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region KeySelectorException - /// - /// - /// - public partial class KeySelectorException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.crypto.KeySelectorException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region KeySelectorResult - /// - /// - /// - public partial class KeySelectorResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.KeySelectorResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeySelectorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySelectorResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeySelectorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeySelectorResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MarshalException - /// - /// - /// - public partial class MarshalException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.crypto.MarshalException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region NodeSetData - /// - /// - /// - public partial class NodeSetData : Java.Lang.Iterable - { - const string _bridgeClassName = "javax.xml.crypto.NodeSetData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeSetData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeSetData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NodeSetData - /// - /// - /// - /// - public partial class NodeSetData : Java.Lang.Iterable - { - const string _bridgeClassName = "javax.xml.crypto.NodeSetData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeSetData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeSetData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NoSuchMechanismException - /// - /// - /// - public partial class NoSuchMechanismException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "javax.xml.crypto.NoSuchMechanismException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region OctetStreamData - /// - /// - /// - public partial class OctetStreamData : Javax.Xml.Crypto.Data - { - const string _bridgeClassName = "javax.xml.crypto.OctetStreamData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OctetStreamData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OctetStreamData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URIDereferencer - /// - /// - /// - public partial class URIDereferencer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.URIDereferencer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URIDereferencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIDereferencer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URIDereferencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIDereferencer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URIReference - /// - /// - /// - public partial class URIReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.URIReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region URIReferenceException - /// - /// - /// - public partial class URIReferenceException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.crypto.URIReferenceException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XMLCryptoContext - /// - /// - /// - public partial class XMLCryptoContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.XMLCryptoContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLCryptoContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLCryptoContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLCryptoContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLCryptoContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLStructure - /// - /// - /// - public partial class XMLStructure : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.XMLStructure"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLStructure class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStructure() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLStructure class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStructure(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Data.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Data.cs index dd568ec1a9..082f5e005c 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Data.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Data.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region Data declaration + /// + /// + /// + public partial class Data : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.Data"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Data() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Data(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IData /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IData } #endregion - #region Data + #region Data implementation public partial class Data : Javax.Xml.Crypto.IData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/AllPackageClasses.cs deleted file mode 100644 index 21ba1c81ec..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/AllPackageClasses.cs +++ /dev/null @@ -1,167 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Crypto.Dom -{ - #region DOMCryptoContext - /// - /// - /// - public partial class DOMCryptoContext : Javax.Xml.Crypto.XMLCryptoContext - { - const string _bridgeClassName = "javax.xml.crypto.dom.DOMCryptoContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMCryptoContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMCryptoContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMStructure - /// - /// - /// - public partial class DOMStructure : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dom.DOMStructure"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMStructure() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMStructure(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMURIReference - /// - /// - /// - public partial class DOMURIReference : Javax.Xml.Crypto.URIReference - { - const string _bridgeClassName = "javax.xml.crypto.dom.DOMURIReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMURIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMURIReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMURIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMURIReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMCryptoContext.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMCryptoContext.cs index 28b88a5f24..61134c45cb 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMCryptoContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMCryptoContext.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dom { - #region DOMCryptoContext + #region DOMCryptoContext declaration + /// + /// + /// + public partial class DOMCryptoContext : Javax.Xml.Crypto.XMLCryptoContext + { + const string _bridgeClassName = "javax.xml.crypto.dom.DOMCryptoContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMCryptoContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMCryptoContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMCryptoContext implementation public partial class DOMCryptoContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMStructure.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMStructure.cs index 44cc0f495c..42ad79f35b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMStructure.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMStructure.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dom { - #region DOMStructure + #region DOMStructure declaration + /// + /// + /// + public partial class DOMStructure : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dom.DOMStructure"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMStructure() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMStructure(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMStructure implementation public partial class DOMStructure { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMURIReference.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMURIReference.cs index 49dd071e6b..a7f82bc263 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMURIReference.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dom/DOMURIReference.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dom { + #region DOMURIReference declaration + /// + /// + /// + public partial class DOMURIReference : Javax.Xml.Crypto.URIReference + { + const string _bridgeClassName = "javax.xml.crypto.dom.DOMURIReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMURIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMURIReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMURIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMURIReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMURIReference /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDOMURIReference : Javax.Xml.Crypto.IURIReference } #endregion - #region DOMURIReference + #region DOMURIReference implementation public partial class DOMURIReference : Javax.Xml.Crypto.Dom.IDOMURIReference { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/AllPackageClasses.cs deleted file mode 100644 index 0d83000a6d..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/AllPackageClasses.cs +++ /dev/null @@ -1,816 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Crypto.Dsig -{ - #region CanonicalizationMethod - /// - /// - /// - public partial class CanonicalizationMethod : Javax.Xml.Crypto.Dsig.Transform - { - const string _bridgeClassName = "javax.xml.crypto.dsig.CanonicalizationMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CanonicalizationMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CanonicalizationMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CanonicalizationMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CanonicalizationMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DigestMethod - /// - /// - /// - public partial class DigestMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.DigestMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DigestMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DigestMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DigestMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DigestMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Manifest - /// - /// - /// - public partial class Manifest : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.Manifest"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Manifest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Manifest() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Manifest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Manifest(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Reference - /// - /// - /// - public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.Reference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Reference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignatureMethod - /// - /// - /// - public partial class SignatureMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.SignatureMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignatureMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignatureMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignatureProperties - /// - /// - /// - public partial class SignatureProperties : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.SignatureProperties"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignatureProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureProperties() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignatureProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureProperties(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignatureProperty - /// - /// - /// - public partial class SignatureProperty : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.SignatureProperty"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignatureProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureProperty() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignatureProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureProperty(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignedInfo - /// - /// - /// - public partial class SignedInfo : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.SignedInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignedInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignedInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignedInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignedInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Transform - /// - /// - /// - public partial class Transform : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.Transform"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Transform class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transform() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Transform class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transform(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransformException - /// - /// - /// - public partial class TransformException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.crypto.dsig.TransformException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region TransformService - /// - /// - /// - public partial class TransformService : Javax.Xml.Crypto.Dsig.Transform - { - const string _bridgeClassName = "javax.xml.crypto.dsig.TransformService"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransformService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformService() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransformService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformService(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLObject - /// - /// - /// - public partial class XMLObject : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLObject"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLObject() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLObject(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLSignature - /// - /// - /// - public partial class XMLSignature : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignature"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLSignature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLSignature() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLSignature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLSignature(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region SignatureValue - /// - /// - /// - public partial class SignatureValue : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignature$SignatureValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignatureValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignatureValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region XMLSignatureException - /// - /// - /// - public partial class XMLSignatureException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignatureException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XMLSignatureFactory - /// - /// - /// - public partial class XMLSignatureFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignatureFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLSignatureFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLSignatureFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLSignatureFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLSignatureFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLSignContext - /// - /// - /// - public partial class XMLSignContext : Javax.Xml.Crypto.XMLCryptoContext - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLSignContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLSignContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLSignContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLSignContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLValidateContext - /// - /// - /// - public partial class XMLValidateContext : Javax.Xml.Crypto.XMLCryptoContext - { - const string _bridgeClassName = "javax.xml.crypto.dsig.XMLValidateContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLValidateContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLValidateContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLValidateContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLValidateContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/CanonicalizationMethod.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/CanonicalizationMethod.cs index 382d0c4c27..8c99476885 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/CanonicalizationMethod.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/CanonicalizationMethod.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region CanonicalizationMethod declaration + /// + /// + /// + public partial class CanonicalizationMethod : Javax.Xml.Crypto.Dsig.Transform + { + const string _bridgeClassName = "javax.xml.crypto.dsig.CanonicalizationMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CanonicalizationMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CanonicalizationMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CanonicalizationMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CanonicalizationMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICanonicalizationMethod /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ICanonicalizationMethod : Javax.Xml.Crypto.Dsig.ITransf } #endregion - #region CanonicalizationMethod + #region CanonicalizationMethod implementation public partial class CanonicalizationMethod : Javax.Xml.Crypto.Dsig.ICanonicalizationMethod { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/DigestMethod.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/DigestMethod.cs index 7092f3ee78..4aca5b7f9b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/DigestMethod.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/DigestMethod.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region DigestMethod declaration + /// + /// + /// + public partial class DigestMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.DigestMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DigestMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DigestMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DigestMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DigestMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDigestMethod /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDigestMethod } #endregion - #region DigestMethod + #region DigestMethod implementation public partial class DigestMethod : Javax.Xml.Crypto.Dsig.IDigestMethod { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/AllPackageClasses.cs deleted file mode 100644 index d58f8956c0..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/AllPackageClasses.cs +++ /dev/null @@ -1,120 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Crypto.Dsig.Dom -{ - #region DOMSignContext - /// - /// - /// - public partial class DOMSignContext : Javax.Xml.Crypto.Dom.DOMCryptoContext - { - const string _bridgeClassName = "javax.xml.crypto.dsig.dom.DOMSignContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMSignContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMSignContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMValidateContext - /// - /// - /// - public partial class DOMValidateContext : Javax.Xml.Crypto.Dom.DOMCryptoContext - { - const string _bridgeClassName = "javax.xml.crypto.dsig.dom.DOMValidateContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMValidateContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMValidateContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMSignContext.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMSignContext.cs index 679bc6067e..d7fdd158f5 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMSignContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMSignContext.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Dom { - #region DOMSignContext + #region DOMSignContext declaration + /// + /// + /// + public partial class DOMSignContext : Javax.Xml.Crypto.Dom.DOMCryptoContext + { + const string _bridgeClassName = "javax.xml.crypto.dsig.dom.DOMSignContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMSignContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMSignContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMSignContext implementation public partial class DOMSignContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMValidateContext.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMValidateContext.cs index 0ab0c4aeb3..8df1d7a656 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMValidateContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Dom/DOMValidateContext.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Dom { - #region DOMValidateContext + #region DOMValidateContext declaration + /// + /// + /// + public partial class DOMValidateContext : Javax.Xml.Crypto.Dom.DOMCryptoContext + { + const string _bridgeClassName = "javax.xml.crypto.dsig.dom.DOMValidateContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMValidateContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMValidateContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMValidateContext implementation public partial class DOMValidateContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/AllPackageClasses.cs deleted file mode 100644 index 6bc334c917..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/AllPackageClasses.cs +++ /dev/null @@ -1,406 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Crypto.Dsig.Keyinfo -{ - #region KeyInfo - /// - /// - /// - public partial class KeyInfo : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyInfoFactory - /// - /// - /// - public partial class KeyInfoFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyInfoFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyInfoFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyInfoFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyInfoFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyInfoFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyName - /// - /// - /// - public partial class KeyName : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region KeyValue - /// - /// - /// - public partial class KeyValue : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("KeyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("KeyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public KeyValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region PGPData - /// - /// - /// - public partial class PGPData : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.PGPData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("PGPData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PGPData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("PGPData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public PGPData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RetrievalMethod - /// - /// - /// - public partial class RetrievalMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.RetrievalMethod"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RetrievalMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RetrievalMethod() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RetrievalMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RetrievalMethod(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509Data - /// - /// - /// - public partial class X509Data : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.X509Data"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509Data() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509Data(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region X509IssuerSerial - /// - /// - /// - public partial class X509IssuerSerial : Javax.Xml.Crypto.XMLStructure - { - const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.X509IssuerSerial"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("X509IssuerSerial class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509IssuerSerial() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("X509IssuerSerial class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public X509IssuerSerial(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfo.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfo.cs index ce76cb9539..64ce8f91ed 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfo.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region KeyInfo declaration + /// + /// + /// + public partial class KeyInfo : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeyInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IKeyInfo : Javax.Xml.Crypto.IXMLStructure } #endregion - #region KeyInfo + #region KeyInfo implementation public partial class KeyInfo : Javax.Xml.Crypto.Dsig.Keyinfo.IKeyInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfoFactory.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfoFactory.cs index 9b52954619..4d3a00539b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfoFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyInfoFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { - #region KeyInfoFactory + #region KeyInfoFactory declaration + /// + /// + /// + public partial class KeyInfoFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyInfoFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyInfoFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyInfoFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyInfoFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyInfoFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region KeyInfoFactory implementation public partial class KeyInfoFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyName.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyName.cs index 240bfd8835..2ad42c8710 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyName.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyName.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region KeyName declaration + /// + /// + /// + public partial class KeyName : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeyName /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IKeyName : Javax.Xml.Crypto.IXMLStructure } #endregion - #region KeyName + #region KeyName implementation public partial class KeyName : Javax.Xml.Crypto.Dsig.Keyinfo.IKeyName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyValue.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyValue.cs index e64b8d2887..bd625c8c40 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyValue.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/KeyValue.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region KeyValue declaration + /// + /// + /// + public partial class KeyValue : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.KeyValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeyValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeyValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeyValue /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IKeyValue : Javax.Xml.Crypto.IXMLStructure } #endregion - #region KeyValue + #region KeyValue implementation public partial class KeyValue : Javax.Xml.Crypto.Dsig.Keyinfo.IKeyValue { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/PGPData.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/PGPData.cs index eb1e4d5cf9..51efc37a47 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/PGPData.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/PGPData.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region PGPData declaration + /// + /// + /// + public partial class PGPData : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.PGPData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("PGPData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PGPData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("PGPData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public PGPData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IPGPData /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IPGPData : Javax.Xml.Crypto.IXMLStructure } #endregion - #region PGPData + #region PGPData implementation public partial class PGPData : Javax.Xml.Crypto.Dsig.Keyinfo.IPGPData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/RetrievalMethod.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/RetrievalMethod.cs index 7af54784b3..5b97c09ada 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/RetrievalMethod.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/RetrievalMethod.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region RetrievalMethod declaration + /// + /// + /// + public partial class RetrievalMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.RetrievalMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RetrievalMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RetrievalMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RetrievalMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RetrievalMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRetrievalMethod /// /// .NET interface for TO BE DEFINED FROM USER @@ -58,7 +105,7 @@ public partial interface IRetrievalMethod } #endregion - #region RetrievalMethod + #region RetrievalMethod implementation public partial class RetrievalMethod : Javax.Xml.Crypto.Dsig.Keyinfo.IRetrievalMethod { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509Data.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509Data.cs index 96fae2ea5f..e2ffbd4bee 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509Data.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509Data.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region X509Data declaration + /// + /// + /// + public partial class X509Data : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.X509Data"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509Data() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509Data class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509Data(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IX509Data /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IX509Data : Javax.Xml.Crypto.IXMLStructure } #endregion - #region X509Data + #region X509Data implementation public partial class X509Data : Javax.Xml.Crypto.Dsig.Keyinfo.IX509Data { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509IssuerSerial.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509IssuerSerial.cs index 3d78941755..644986dae1 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509IssuerSerial.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Keyinfo/X509IssuerSerial.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Keyinfo { + #region X509IssuerSerial declaration + /// + /// + /// + public partial class X509IssuerSerial : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.keyinfo.X509IssuerSerial"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("X509IssuerSerial class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509IssuerSerial() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("X509IssuerSerial class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public X509IssuerSerial(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IX509IssuerSerial /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IX509IssuerSerial : Javax.Xml.Crypto.IXMLStructure } #endregion - #region X509IssuerSerial + #region X509IssuerSerial implementation public partial class X509IssuerSerial : Javax.Xml.Crypto.Dsig.Keyinfo.IX509IssuerSerial { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Manifest.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Manifest.cs index b0af017268..1c675a208e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Manifest.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Manifest.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region Manifest declaration + /// + /// + /// + public partial class Manifest : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.Manifest"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Manifest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Manifest() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Manifest class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Manifest(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IManifest /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IManifest : Javax.Xml.Crypto.IXMLStructure } #endregion - #region Manifest + #region Manifest implementation public partial class Manifest : Javax.Xml.Crypto.Dsig.IManifest { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Reference.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Reference.cs index 105f3f01d1..72f7fdf9a8 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Reference.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Reference.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region Reference declaration + /// + /// + /// + public partial class Reference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.Reference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Reference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Reference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IReference /// /// .NET interface for TO BE DEFINED FROM USER @@ -78,7 +125,7 @@ public partial interface IReference } #endregion - #region Reference + #region Reference implementation public partial class Reference : Javax.Xml.Crypto.Dsig.IReference { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureMethod.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureMethod.cs index cbb458833d..7a4d1207f5 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureMethod.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureMethod.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region SignatureMethod declaration + /// + /// + /// + public partial class SignatureMethod : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.SignatureMethod"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignatureMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureMethod() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignatureMethod class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureMethod(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISignatureMethod /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ISignatureMethod } #endregion - #region SignatureMethod + #region SignatureMethod implementation public partial class SignatureMethod : Javax.Xml.Crypto.Dsig.ISignatureMethod { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperties.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperties.cs index 485f001bff..a47d426df9 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperties.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperties.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region SignatureProperties declaration + /// + /// + /// + public partial class SignatureProperties : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.SignatureProperties"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignatureProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureProperties() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignatureProperties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureProperties(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISignatureProperties /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ISignatureProperties : Javax.Xml.Crypto.IXMLStructure } #endregion - #region SignatureProperties + #region SignatureProperties implementation public partial class SignatureProperties : Javax.Xml.Crypto.Dsig.ISignatureProperties { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperty.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperty.cs index 03350bf619..dbf57417cb 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperty.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignatureProperty.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region SignatureProperty declaration + /// + /// + /// + public partial class SignatureProperty : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.SignatureProperty"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignatureProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureProperty() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignatureProperty class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureProperty(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISignatureProperty /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ISignatureProperty : Javax.Xml.Crypto.IXMLStructure } #endregion - #region SignatureProperty + #region SignatureProperty implementation public partial class SignatureProperty : Javax.Xml.Crypto.Dsig.ISignatureProperty { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignedInfo.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignedInfo.cs index 9e0042908d..f88900737e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignedInfo.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/SignedInfo.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region SignedInfo declaration + /// + /// + /// + public partial class SignedInfo : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.SignedInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignedInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignedInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignedInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignedInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISignedInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface ISignedInfo : Javax.Xml.Crypto.IXMLStructure } #endregion - #region SignedInfo + #region SignedInfo implementation public partial class SignedInfo : Javax.Xml.Crypto.Dsig.ISignedInfo { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/AllPackageClasses.cs deleted file mode 100644 index bc055f1e44..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/AllPackageClasses.cs +++ /dev/null @@ -1,533 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Crypto.Dsig.Spec -{ - #region C14NMethodParameterSpec - /// - /// - /// - public partial class C14NMethodParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.C14NMethodParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("C14NMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public C14NMethodParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("C14NMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public C14NMethodParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DigestMethodParameterSpec - /// - /// - /// - public partial class DigestMethodParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.DigestMethodParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DigestMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DigestMethodParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DigestMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DigestMethodParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ExcC14NParameterSpec - /// - /// - /// - public partial class ExcC14NParameterSpec : Javax.Xml.Crypto.Dsig.Spec.C14NMethodParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.ExcC14NParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ExcC14NParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ExcC14NParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HMACParameterSpec - /// - /// - /// - public partial class HMACParameterSpec : Javax.Xml.Crypto.Dsig.Spec.SignatureMethodParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.HMACParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public HMACParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public HMACParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SignatureMethodParameterSpec - /// - /// - /// - public partial class SignatureMethodParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.SignatureMethodParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SignatureMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureMethodParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SignatureMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SignatureMethodParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransformParameterSpec - /// - /// - /// - public partial class TransformParameterSpec : Java.Security.Spec.AlgorithmParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.TransformParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransformParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransformParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathFilter2ParameterSpec - /// - /// - /// - public partial class XPathFilter2ParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathFilter2ParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XPathFilter2ParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XPathFilter2ParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathFilterParameterSpec - /// - /// - /// - public partial class XPathFilterParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathFilterParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XPathFilterParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XPathFilterParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathType - /// - /// - /// - public partial class XPathType : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XPathType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XPathType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Filter - /// - /// - /// - public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathType$Filter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Filter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Filter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region XSLTTransformParameterSpec - /// - /// - /// - public partial class XSLTTransformParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec - { - const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XSLTTransformParameterSpec"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XSLTTransformParameterSpec() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XSLTTransformParameterSpec(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/C14NMethodParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/C14NMethodParameterSpec.cs index eefd9fff74..ced25742af 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/C14NMethodParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/C14NMethodParameterSpec.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Spec { + #region C14NMethodParameterSpec declaration + /// + /// + /// + public partial class C14NMethodParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.C14NMethodParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("C14NMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public C14NMethodParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("C14NMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public C14NMethodParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IC14NMethodParameterSpec /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IC14NMethodParameterSpec : Javax.Xml.Crypto.Dsig.Spec.I } #endregion - #region C14NMethodParameterSpec + #region C14NMethodParameterSpec implementation public partial class C14NMethodParameterSpec : Javax.Xml.Crypto.Dsig.Spec.IC14NMethodParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/DigestMethodParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/DigestMethodParameterSpec.cs index cc1bb200b6..219823bbe6 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/DigestMethodParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/DigestMethodParameterSpec.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Spec { + #region DigestMethodParameterSpec declaration + /// + /// + /// + public partial class DigestMethodParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.DigestMethodParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DigestMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DigestMethodParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DigestMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DigestMethodParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDigestMethodParameterSpec /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IDigestMethodParameterSpec : Java.Security.Spec.IAlgori } #endregion - #region DigestMethodParameterSpec + #region DigestMethodParameterSpec implementation public partial class DigestMethodParameterSpec : Javax.Xml.Crypto.Dsig.Spec.IDigestMethodParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/ExcC14NParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/ExcC14NParameterSpec.cs index 19d776131a..285ac7d2e0 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/ExcC14NParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/ExcC14NParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Spec { - #region ExcC14NParameterSpec + #region ExcC14NParameterSpec declaration + /// + /// + /// + public partial class ExcC14NParameterSpec : Javax.Xml.Crypto.Dsig.Spec.C14NMethodParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.ExcC14NParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ExcC14NParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ExcC14NParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ExcC14NParameterSpec implementation public partial class ExcC14NParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/HMACParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/HMACParameterSpec.cs index c00dbc1e4c..7f13d07d4a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/HMACParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/HMACParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Spec { - #region HMACParameterSpec + #region HMACParameterSpec declaration + /// + /// + /// + public partial class HMACParameterSpec : Javax.Xml.Crypto.Dsig.Spec.SignatureMethodParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.HMACParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public HMACParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public HMACParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region HMACParameterSpec implementation public partial class HMACParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/SignatureMethodParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/SignatureMethodParameterSpec.cs index cffc48673c..6e0ceae244 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/SignatureMethodParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/SignatureMethodParameterSpec.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Spec { + #region SignatureMethodParameterSpec declaration + /// + /// + /// + public partial class SignatureMethodParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.SignatureMethodParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignatureMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureMethodParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignatureMethodParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureMethodParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISignatureMethodParameterSpec /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ISignatureMethodParameterSpec : Java.Security.Spec.IAlg } #endregion - #region SignatureMethodParameterSpec + #region SignatureMethodParameterSpec implementation public partial class SignatureMethodParameterSpec : Javax.Xml.Crypto.Dsig.Spec.ISignatureMethodParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/TransformParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/TransformParameterSpec.cs index 0f494db653..c116b0366a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/TransformParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/TransformParameterSpec.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig.Spec { + #region TransformParameterSpec declaration + /// + /// + /// + public partial class TransformParameterSpec : Java.Security.Spec.AlgorithmParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.TransformParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransformParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransformParameterSpec class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransformParameterSpec /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ITransformParameterSpec : Java.Security.Spec.IAlgorithm } #endregion - #region TransformParameterSpec + #region TransformParameterSpec implementation public partial class TransformParameterSpec : Javax.Xml.Crypto.Dsig.Spec.ITransformParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilter2ParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilter2ParameterSpec.cs index 06f3498d8a..cdacf1c203 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilter2ParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilter2ParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Spec { - #region XPathFilter2ParameterSpec + #region XPathFilter2ParameterSpec declaration + /// + /// + /// + public partial class XPathFilter2ParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathFilter2ParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XPathFilter2ParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XPathFilter2ParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XPathFilter2ParameterSpec implementation public partial class XPathFilter2ParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilterParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilterParameterSpec.cs index 751deaf88e..2a1d0f42b3 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilterParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathFilterParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Spec { - #region XPathFilterParameterSpec + #region XPathFilterParameterSpec declaration + /// + /// + /// + public partial class XPathFilterParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathFilterParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XPathFilterParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XPathFilterParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XPathFilterParameterSpec implementation public partial class XPathFilterParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathType.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathType.cs index 288edbe363..e5bb09a87a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathType.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XPathType.cs @@ -25,7 +25,97 @@ namespace Javax.Xml.Crypto.Dsig.Spec { - #region XPathType + #region XPathType declaration + /// + /// + /// + public partial class XPathType : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XPathType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XPathType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Filter declaration + /// + /// + /// + public partial class Filter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XPathType$Filter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Filter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Filter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region XPathType implementation public partial class XPathType { #region Constructors @@ -89,7 +179,7 @@ public Javax.Xml.Crypto.Dsig.Spec.XPathType.Filter GetFilter #endregion #region Nested classes - #region Filter + #region Filter implementation public partial class Filter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XSLTTransformParameterSpec.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XSLTTransformParameterSpec.cs index 0abb023d61..1d1c5649ab 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XSLTTransformParameterSpec.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Spec/XSLTTransformParameterSpec.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto.Dsig.Spec { - #region XSLTTransformParameterSpec + #region XSLTTransformParameterSpec declaration + /// + /// + /// + public partial class XSLTTransformParameterSpec : Javax.Xml.Crypto.Dsig.Spec.TransformParameterSpec + { + const string _bridgeClassName = "javax.xml.crypto.dsig.spec.XSLTTransformParameterSpec"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XSLTTransformParameterSpec() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XSLTTransformParameterSpec(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XSLTTransformParameterSpec implementation public partial class XSLTTransformParameterSpec { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Transform.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Transform.cs index 28fcbe70e0..6bf15eb322 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Transform.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/Transform.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region Transform declaration + /// + /// + /// + public partial class Transform : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.Transform"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Transform class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transform() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Transform class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transform(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransform /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface ITransform } #endregion - #region Transform + #region Transform implementation public partial class Transform : Javax.Xml.Crypto.Dsig.ITransform { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformException.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformException.cs index 808770ed89..758c2fd430 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Crypto.Dsig { - #region TransformException + #region TransformException declaration + /// + /// + /// + public partial class TransformException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.crypto.dsig.TransformException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TransformException implementation public partial class TransformException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformService.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformService.cs index 8f0bcc4910..000b5129e6 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformService.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/TransformService.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Crypto.Dsig { - #region TransformService + #region TransformService declaration + /// + /// + /// + public partial class TransformService : Javax.Xml.Crypto.Dsig.Transform + { + const string _bridgeClassName = "javax.xml.crypto.dsig.TransformService"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransformService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformService() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransformService class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformService(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TransformService implementation public partial class TransformService { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLObject.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLObject.cs index 897a540687..a97c3600a4 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLObject.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLObject.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region XMLObject declaration + /// + /// + /// + public partial class XMLObject : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLObject"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLObject() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLObject class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLObject(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLObject /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IXMLObject : Javax.Xml.Crypto.IXMLStructure } #endregion - #region XMLObject + #region XMLObject implementation public partial class XMLObject : Javax.Xml.Crypto.Dsig.IXMLObject { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignContext.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignContext.cs index b28153f58c..e6c3f4bd9f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignContext.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region XMLSignContext declaration + /// + /// + /// + public partial class XMLSignContext : Javax.Xml.Crypto.XMLCryptoContext + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLSignContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLSignContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLSignContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLSignContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLSignContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IXMLSignContext : Javax.Xml.Crypto.IXMLCryptoContext } #endregion - #region XMLSignContext + #region XMLSignContext implementation public partial class XMLSignContext : Javax.Xml.Crypto.Dsig.IXMLSignContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignature.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignature.cs index 089559b4a6..b368b5d66b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignature.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignature.cs @@ -25,6 +25,100 @@ namespace Javax.Xml.Crypto.Dsig { + #region XMLSignature declaration + /// + /// + /// + public partial class XMLSignature : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignature"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLSignature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLSignature() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLSignature class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLSignature(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region SignatureValue declaration + /// + /// + /// + public partial class SignatureValue : Javax.Xml.Crypto.XMLStructure + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignature$SignatureValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SignatureValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SignatureValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SignatureValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + #region IXMLSignature /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +175,7 @@ public partial interface IXMLSignature : Javax.Xml.Crypto.IXMLStructure } #endregion - #region XMLSignature + #region XMLSignature implementation public partial class XMLSignature : Javax.Xml.Crypto.Dsig.IXMLSignature { #region Constructors @@ -173,7 +267,7 @@ public void Sign(Javax.Xml.Crypto.Dsig.XMLSignContext arg0) #endregion #region Nested classes - #region SignatureValue + #region SignatureValue implementation public partial class SignatureValue { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureException.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureException.cs index 4f391cb990..bfa2f7ccc3 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Crypto.Dsig { - #region XMLSignatureException + #region XMLSignatureException declaration + /// + /// + /// + public partial class XMLSignatureException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignatureException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XMLSignatureException implementation public partial class XMLSignatureException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureFactory.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureFactory.cs index 17587377e5..a0f41cf47f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLSignatureFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Crypto.Dsig { - #region XMLSignatureFactory + #region XMLSignatureFactory declaration + /// + /// + /// + public partial class XMLSignatureFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLSignatureFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLSignatureFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLSignatureFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLSignatureFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLSignatureFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLSignatureFactory implementation public partial class XMLSignatureFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLValidateContext.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLValidateContext.cs index 89519a3c8a..20dfe2a84c 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLValidateContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/Dsig/XMLValidateContext.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto.Dsig { + #region XMLValidateContext declaration + /// + /// + /// + public partial class XMLValidateContext : Javax.Xml.Crypto.XMLCryptoContext + { + const string _bridgeClassName = "javax.xml.crypto.dsig.XMLValidateContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLValidateContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLValidateContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLValidateContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLValidateContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLValidateContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IXMLValidateContext : Javax.Xml.Crypto.IXMLCryptoContex } #endregion - #region XMLValidateContext + #region XMLValidateContext implementation public partial class XMLValidateContext : Javax.Xml.Crypto.Dsig.IXMLValidateContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelector.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelector.cs index 132580e8bc..669f3234ce 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelector.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelector.cs @@ -25,7 +25,99 @@ namespace Javax.Xml.Crypto { - #region KeySelector + #region KeySelector declaration + /// + /// + /// + public partial class KeySelector : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.KeySelector"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySelector() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeySelector class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySelector(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Purpose declaration + /// + /// + /// + public partial class Purpose : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.KeySelector$Purpose"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Purpose() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Purpose(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region KeySelector implementation public partial class KeySelector { #region Constructors @@ -71,7 +163,7 @@ public Javax.Xml.Crypto.KeySelectorResult Select(Javax.Xml.Crypto.Dsig.Keyinfo.K #endregion #region Nested classes - #region Purpose + #region Purpose implementation public partial class Purpose { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorException.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorException.cs index b473586a85..a63f3d2298 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Crypto { - #region KeySelectorException + #region KeySelectorException declaration + /// + /// + /// + public partial class KeySelectorException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.crypto.KeySelectorException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region KeySelectorException implementation public partial class KeySelectorException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorResult.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorResult.cs index 430d476b34..523dfff833 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorResult.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/KeySelectorResult.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region KeySelectorResult declaration + /// + /// + /// + public partial class KeySelectorResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.KeySelectorResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("KeySelectorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySelectorResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("KeySelectorResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public KeySelectorResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IKeySelectorResult /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IKeySelectorResult } #endregion - #region KeySelectorResult + #region KeySelectorResult implementation public partial class KeySelectorResult : Javax.Xml.Crypto.IKeySelectorResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/MarshalException.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/MarshalException.cs index bf76843b5d..b6fb9e676c 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/MarshalException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/MarshalException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Crypto { - #region MarshalException + #region MarshalException declaration + /// + /// + /// + public partial class MarshalException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.crypto.MarshalException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region MarshalException implementation public partial class MarshalException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/NoSuchMechanismException.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/NoSuchMechanismException.cs index d44d6ee2cb..ccbec2d589 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/NoSuchMechanismException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/NoSuchMechanismException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Crypto { - #region NoSuchMechanismException + #region NoSuchMechanismException declaration + /// + /// + /// + public partial class NoSuchMechanismException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "javax.xml.crypto.NoSuchMechanismException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region NoSuchMechanismException implementation public partial class NoSuchMechanismException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/NodeSetData.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/NodeSetData.cs index 72a196e516..659e8c6894 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/NodeSetData.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/NodeSetData.cs @@ -25,7 +25,102 @@ namespace Javax.Xml.Crypto { - #region NodeSetData + #region NodeSetData declaration + /// + /// + /// + public partial class NodeSetData : Java.Lang.Iterable + { + const string _bridgeClassName = "javax.xml.crypto.NodeSetData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeSetData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeSetData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NodeSetData declaration + /// + /// + /// + /// + public partial class NodeSetData : Java.Lang.Iterable + { + const string _bridgeClassName = "javax.xml.crypto.NodeSetData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeSetData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NodeSetData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeSetData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NodeSetData implementation public partial class NodeSetData { #region Constructors @@ -91,7 +186,7 @@ public partial interface INodeSetData } #endregion - #region NodeSetData + #region NodeSetData implementation public partial class NodeSetData : Javax.Xml.Crypto.INodeSetData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/OctetStreamData.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/OctetStreamData.cs index 9596b782c1..d6aee61d11 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/OctetStreamData.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/OctetStreamData.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Crypto { - #region OctetStreamData + #region OctetStreamData declaration + /// + /// + /// + public partial class OctetStreamData : Javax.Xml.Crypto.Data + { + const string _bridgeClassName = "javax.xml.crypto.OctetStreamData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OctetStreamData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OctetStreamData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OctetStreamData implementation public partial class OctetStreamData { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/URIDereferencer.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/URIDereferencer.cs index 519f076bf7..58b321e2b5 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/URIDereferencer.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/URIDereferencer.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region URIDereferencer declaration + /// + /// + /// + public partial class URIDereferencer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.URIDereferencer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URIDereferencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIDereferencer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URIDereferencer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIDereferencer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IURIDereferencer /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IURIDereferencer } #endregion - #region URIDereferencer + #region URIDereferencer implementation public partial class URIDereferencer : Javax.Xml.Crypto.IURIDereferencer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/URIReference.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/URIReference.cs index 8d471586e2..09f84da2b8 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/URIReference.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/URIReference.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region URIReference declaration + /// + /// + /// + public partial class URIReference : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.URIReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URIReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IURIReference /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IURIReference } #endregion - #region URIReference + #region URIReference implementation public partial class URIReference : Javax.Xml.Crypto.IURIReference { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/URIReferenceException.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/URIReferenceException.cs index eab17e9edb..b20b50dde4 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/URIReferenceException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/URIReferenceException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Crypto { - #region URIReferenceException + #region URIReferenceException declaration + /// + /// + /// + public partial class URIReferenceException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.crypto.URIReferenceException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region URIReferenceException implementation public partial class URIReferenceException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/XMLCryptoContext.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/XMLCryptoContext.cs index 7ee2791485..f6d9230547 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/XMLCryptoContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/XMLCryptoContext.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region XMLCryptoContext declaration + /// + /// + /// + public partial class XMLCryptoContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.XMLCryptoContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLCryptoContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLCryptoContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLCryptoContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLCryptoContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLCryptoContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -99,7 +146,7 @@ public partial interface IXMLCryptoContext } #endregion - #region XMLCryptoContext + #region XMLCryptoContext implementation public partial class XMLCryptoContext : Javax.Xml.Crypto.IXMLCryptoContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Crypto/XMLStructure.cs b/src/net/JNet/Generated/Javax/Xml/Crypto/XMLStructure.cs index 2d33bf11a3..a541c02b5d 100644 --- a/src/net/JNet/Generated/Javax/Xml/Crypto/XMLStructure.cs +++ b/src/net/JNet/Generated/Javax/Xml/Crypto/XMLStructure.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Crypto { + #region XMLStructure declaration + /// + /// + /// + public partial class XMLStructure : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.crypto.XMLStructure"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLStructure class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStructure() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLStructure class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStructure(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLStructure /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IXMLStructure } #endregion - #region XMLStructure + #region XMLStructure implementation public partial class XMLStructure : Javax.Xml.Crypto.IXMLStructure { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Datatype/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Datatype/AllPackageClasses.cs deleted file mode 100644 index e7b2555e10..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Datatype/AllPackageClasses.cs +++ /dev/null @@ -1,278 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Datatype -{ - #region DatatypeConfigurationException - /// - /// - /// - public partial class DatatypeConfigurationException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.datatype.DatatypeConfigurationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DatatypeConstants - /// - /// - /// - public partial class DatatypeConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.datatype.DatatypeConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DatatypeConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DatatypeConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region Field - /// - /// - /// - public partial class Field : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.datatype.DatatypeConstants$Field"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Field() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Field(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region DatatypeFactory - /// - /// - /// - public partial class DatatypeFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.datatype.DatatypeFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DatatypeFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatatypeFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DatatypeFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DatatypeFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Duration - /// - /// - /// - public partial class Duration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.datatype.Duration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Duration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Duration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Duration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Duration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLGregorianCalendar - /// - /// - /// - public partial class XMLGregorianCalendar : Java.Lang.Cloneable - { - const string _bridgeClassName = "javax.xml.datatype.XMLGregorianCalendar"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLGregorianCalendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLGregorianCalendar() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLGregorianCalendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLGregorianCalendar(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConfigurationException.cs b/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConfigurationException.cs index 76ff358977..ab7e23e96f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConfigurationException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConfigurationException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Datatype { - #region DatatypeConfigurationException + #region DatatypeConfigurationException declaration + /// + /// + /// + public partial class DatatypeConfigurationException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.datatype.DatatypeConfigurationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DatatypeConfigurationException implementation public partial class DatatypeConfigurationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConstants.cs b/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConstants.cs index ea905e101e..87cdd38cca 100644 --- a/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConstants.cs +++ b/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeConstants.cs @@ -25,7 +25,97 @@ namespace Javax.Xml.Datatype { - #region DatatypeConstants + #region DatatypeConstants declaration + /// + /// + /// + public partial class DatatypeConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.datatype.DatatypeConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DatatypeConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DatatypeConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region Field declaration + /// + /// + /// + public partial class Field : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.datatype.DatatypeConstants$Field"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Field() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Field(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region DatatypeConstants implementation public partial class DatatypeConstants { #region Constructors @@ -265,7 +355,7 @@ public partial class DatatypeConstants #endregion #region Nested classes - #region Field + #region Field implementation public partial class Field { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeFactory.cs b/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeFactory.cs index f680d46b92..83c65075dd 100644 --- a/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Datatype/DatatypeFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Datatype { - #region DatatypeFactory + #region DatatypeFactory declaration + /// + /// + /// + public partial class DatatypeFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.datatype.DatatypeFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DatatypeFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatatypeFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DatatypeFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DatatypeFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DatatypeFactory implementation public partial class DatatypeFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Datatype/Duration.cs b/src/net/JNet/Generated/Javax/Xml/Datatype/Duration.cs index 6376422b39..1c0be702c6 100644 --- a/src/net/JNet/Generated/Javax/Xml/Datatype/Duration.cs +++ b/src/net/JNet/Generated/Javax/Xml/Datatype/Duration.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Datatype { - #region Duration + #region Duration declaration + /// + /// + /// + public partial class Duration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.datatype.Duration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Duration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Duration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Duration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Duration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Duration implementation public partial class Duration { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Datatype/XMLGregorianCalendar.cs b/src/net/JNet/Generated/Javax/Xml/Datatype/XMLGregorianCalendar.cs index cef85d5fa9..cf4956e4a5 100644 --- a/src/net/JNet/Generated/Javax/Xml/Datatype/XMLGregorianCalendar.cs +++ b/src/net/JNet/Generated/Javax/Xml/Datatype/XMLGregorianCalendar.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Datatype { - #region XMLGregorianCalendar + #region XMLGregorianCalendar declaration + /// + /// + /// + public partial class XMLGregorianCalendar : Java.Lang.Cloneable + { + const string _bridgeClassName = "javax.xml.datatype.XMLGregorianCalendar"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLGregorianCalendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLGregorianCalendar() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLGregorianCalendar class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLGregorianCalendar(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLGregorianCalendar implementation public partial class XMLGregorianCalendar { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Namespace/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Namespace/AllPackageClasses.cs deleted file mode 100644 index 1ca1388382..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Namespace/AllPackageClasses.cs +++ /dev/null @@ -1,122 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Namespace -{ - #region NamespaceContext - /// - /// - /// - public partial class NamespaceContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.namespace.NamespaceContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NamespaceContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamespaceContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NamespaceContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamespaceContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region QName - /// - /// - /// - public partial class QName : Java.Io.Serializable - { - const string _bridgeClassName = "javax.xml.namespace.QName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public QName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public QName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Namespace/NamespaceContext.cs b/src/net/JNet/Generated/Javax/Xml/Namespace/NamespaceContext.cs index 9cdfbedd57..7c1a0d34d3 100644 --- a/src/net/JNet/Generated/Javax/Xml/Namespace/NamespaceContext.cs +++ b/src/net/JNet/Generated/Javax/Xml/Namespace/NamespaceContext.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Namespace { + #region NamespaceContext declaration + /// + /// + /// + public partial class NamespaceContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.namespace.NamespaceContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NamespaceContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamespaceContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NamespaceContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamespaceContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INamespaceContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface INamespaceContext } #endregion - #region NamespaceContext + #region NamespaceContext implementation public partial class NamespaceContext : Javax.Xml.Namespace.INamespaceContext { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Namespace/QName.cs b/src/net/JNet/Generated/Javax/Xml/Namespace/QName.cs index ba997efc22..6054ca4b46 100644 --- a/src/net/JNet/Generated/Javax/Xml/Namespace/QName.cs +++ b/src/net/JNet/Generated/Javax/Xml/Namespace/QName.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Namespace { - #region QName + #region QName declaration + /// + /// + /// + public partial class QName : Java.Io.Serializable + { + const string _bridgeClassName = "javax.xml.namespace.QName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public QName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public QName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region QName implementation public partial class QName { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/AllPackageClasses.cs deleted file mode 100644 index b870298274..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/AllPackageClasses.cs +++ /dev/null @@ -1,252 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Parsers -{ - #region DocumentBuilder - /// - /// - /// - public partial class DocumentBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.parsers.DocumentBuilder"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentBuilder() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentBuilder(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentBuilderFactory - /// - /// - /// - public partial class DocumentBuilderFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.parsers.DocumentBuilderFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentBuilderFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentBuilderFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentBuilderFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentBuilderFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FactoryConfigurationError - /// - /// - /// - public partial class FactoryConfigurationError : Java.Lang.Error - { - const string _bridgeClassName = "javax.xml.parsers.FactoryConfigurationError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region ParserConfigurationException - /// - /// - /// - public partial class ParserConfigurationException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.parsers.ParserConfigurationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SAXParser - /// - /// - /// - public partial class SAXParser : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.parsers.SAXParser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SAXParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SAXParser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SAXParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SAXParser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SAXParserFactory - /// - /// - /// - public partial class SAXParserFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.parsers.SAXParserFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SAXParserFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SAXParserFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SAXParserFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SAXParserFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilder.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilder.cs index 052db5ebd3..6c0d4a5b87 100644 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilder.cs +++ b/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilder.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Parsers { - #region DocumentBuilder + #region DocumentBuilder declaration + /// + /// + /// + public partial class DocumentBuilder : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.parsers.DocumentBuilder"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentBuilder() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentBuilder class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentBuilder(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DocumentBuilder implementation public partial class DocumentBuilder { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilderFactory.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilderFactory.cs index 871119e56a..4b580cd932 100644 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilderFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Parsers/DocumentBuilderFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Parsers { - #region DocumentBuilderFactory + #region DocumentBuilderFactory declaration + /// + /// + /// + public partial class DocumentBuilderFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.parsers.DocumentBuilderFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentBuilderFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentBuilderFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentBuilderFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentBuilderFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DocumentBuilderFactory implementation public partial class DocumentBuilderFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/FactoryConfigurationError.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/FactoryConfigurationError.cs index ea753f4269..946d9711ed 100644 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/FactoryConfigurationError.cs +++ b/src/net/JNet/Generated/Javax/Xml/Parsers/FactoryConfigurationError.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Parsers { - #region FactoryConfigurationError + #region FactoryConfigurationError declaration + /// + /// + /// + public partial class FactoryConfigurationError : Java.Lang.Error + { + const string _bridgeClassName = "javax.xml.parsers.FactoryConfigurationError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FactoryConfigurationError implementation public partial class FactoryConfigurationError { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/ParserConfigurationException.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/ParserConfigurationException.cs index 1a32f9ef4a..ff7a8ecd41 100644 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/ParserConfigurationException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Parsers/ParserConfigurationException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Parsers { - #region ParserConfigurationException + #region ParserConfigurationException declaration + /// + /// + /// + public partial class ParserConfigurationException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.parsers.ParserConfigurationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region ParserConfigurationException implementation public partial class ParserConfigurationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParser.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParser.cs index f96259c17d..b8e3712c02 100644 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParser.cs +++ b/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParser.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Parsers { - #region SAXParser + #region SAXParser declaration + /// + /// + /// + public partial class SAXParser : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.parsers.SAXParser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SAXParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SAXParser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SAXParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SAXParser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SAXParser implementation public partial class SAXParser { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParserFactory.cs b/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParserFactory.cs index a8508d37bb..7e8520e558 100644 --- a/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParserFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Parsers/SAXParserFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Parsers { - #region SAXParserFactory + #region SAXParserFactory declaration + /// + /// + /// + public partial class SAXParserFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.parsers.SAXParserFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SAXParserFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SAXParserFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SAXParserFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SAXParserFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SAXParserFactory implementation public partial class SAXParserFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Stream/AllPackageClasses.cs deleted file mode 100644 index 2f86fddba1..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Stream/AllPackageClasses.cs +++ /dev/null @@ -1,675 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Stream -{ - #region EventFilter - /// - /// - /// - public partial class EventFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.EventFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EventFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EventFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region FactoryConfigurationError - /// - /// - /// - public partial class FactoryConfigurationError : Java.Lang.Error - { - const string _bridgeClassName = "javax.xml.stream.FactoryConfigurationError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region Location - /// - /// - /// - public partial class Location : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.Location"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Location() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Location(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamFilter - /// - /// - /// - public partial class StreamFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.StreamFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StreamFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StreamFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StreamFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StreamFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEventFactory - /// - /// - /// - public partial class XMLEventFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLEventFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLEventFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLEventFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEventReader - /// - /// - /// - public partial class XMLEventReader : Java.Util.Iterator - { - const string _bridgeClassName = "javax.xml.stream.XMLEventReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLEventReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLEventReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEventWriter - /// - /// - /// - public partial class XMLEventWriter : Javax.Xml.Stream.Util.XMLEventConsumer - { - const string _bridgeClassName = "javax.xml.stream.XMLEventWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLEventWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLEventWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLInputFactory - /// - /// - /// - public partial class XMLInputFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLInputFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLInputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLInputFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLInputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLInputFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLOutputFactory - /// - /// - /// - public partial class XMLOutputFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLOutputFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLOutputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLOutputFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLOutputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLOutputFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLReporter - /// - /// - /// - public partial class XMLReporter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLReporter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLReporter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLReporter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLReporter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLReporter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLResolver - /// - /// - /// - public partial class XMLResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLStreamConstants - /// - /// - /// - public partial class XMLStreamConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLStreamConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStreamConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStreamConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLStreamException - /// - /// - /// - public partial class XMLStreamException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.stream.XMLStreamException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XMLStreamReader - /// - /// - /// - public partial class XMLStreamReader : Javax.Xml.Stream.XMLStreamConstants - { - const string _bridgeClassName = "javax.xml.stream.XMLStreamReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLStreamReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStreamReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLStreamReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStreamReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLStreamWriter - /// - /// - /// - public partial class XMLStreamWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.XMLStreamWriter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLStreamWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStreamWriter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLStreamWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLStreamWriter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/EventFilter.cs b/src/net/JNet/Generated/Javax/Xml/Stream/EventFilter.cs index 713bf94ea7..15ef326705 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/EventFilter.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/EventFilter.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region EventFilter declaration + /// + /// + /// + public partial class EventFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.EventFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EventFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EventFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEventFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IEventFilter } #endregion - #region EventFilter + #region EventFilter implementation public partial class EventFilter : Javax.Xml.Stream.IEventFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/AllPackageClasses.cs deleted file mode 100644 index 7894ced268..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/AllPackageClasses.cs +++ /dev/null @@ -1,688 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Stream.Events -{ - #region Attribute - /// - /// - /// - public partial class Attribute : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.Attribute"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attribute(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Characters - /// - /// - /// - public partial class Characters : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.Characters"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Characters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Characters() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Characters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Characters(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Comment - /// - /// - /// - public partial class Comment : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.Comment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DTD - /// - /// - /// - public partial class DTD : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.DTD"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DTD class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DTD() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DTD class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DTD(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EndDocument - /// - /// - /// - public partial class EndDocument : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.EndDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EndDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EndDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EndDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EndDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EndElement - /// - /// - /// - public partial class EndElement : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.EndElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EndElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EndElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EndElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EndElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EntityDeclaration - /// - /// - /// - public partial class EntityDeclaration : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.EntityDeclaration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EntityDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityDeclaration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EntityDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityDeclaration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EntityReference - /// - /// - /// - public partial class EntityReference : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.EntityReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Namespace - /// - /// - /// - public partial class Namespace : Javax.Xml.Stream.Events.Attribute - { - const string _bridgeClassName = "javax.xml.stream.events.Namespace"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Namespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Namespace() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Namespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Namespace(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NotationDeclaration - /// - /// - /// - public partial class NotationDeclaration : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.NotationDeclaration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NotationDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NotationDeclaration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NotationDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NotationDeclaration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProcessingInstruction - /// - /// - /// - public partial class ProcessingInstruction : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.ProcessingInstruction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessingInstruction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessingInstruction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StartDocument - /// - /// - /// - public partial class StartDocument : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.StartDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StartDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StartDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StartDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StartDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StartElement - /// - /// - /// - public partial class StartElement : Javax.Xml.Stream.Events.XMLEvent - { - const string _bridgeClassName = "javax.xml.stream.events.StartElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StartElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StartElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StartElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StartElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEvent - /// - /// - /// - public partial class XMLEvent : Javax.Xml.Stream.XMLStreamConstants - { - const string _bridgeClassName = "javax.xml.stream.events.XMLEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Attribute.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Attribute.cs index 0d0bc13948..d3f083ae38 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Attribute.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Attribute.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region Attribute declaration + /// + /// + /// + public partial class Attribute : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.Attribute"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attribute class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attribute(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttribute /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IAttribute : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region Attribute + #region Attribute implementation public partial class Attribute : Javax.Xml.Stream.Events.IAttribute { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Characters.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Characters.cs index b129eda3d3..b83d70567a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Characters.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Characters.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region Characters declaration + /// + /// + /// + public partial class Characters : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.Characters"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Characters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Characters() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Characters class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Characters(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICharacters /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +109,7 @@ public partial interface ICharacters : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region Characters + #region Characters implementation public partial class Characters : Javax.Xml.Stream.Events.ICharacters { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Comment.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Comment.cs index 2f1fa65dac..afcb1f77ed 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Comment.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Comment.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region Comment declaration + /// + /// + /// + public partial class Comment : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.Comment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IComment /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IComment : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region Comment + #region Comment implementation public partial class Comment : Javax.Xml.Stream.Events.IComment { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/DTD.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/DTD.cs index 344f5c5449..48605e636e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/DTD.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/DTD.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region DTD declaration + /// + /// + /// + public partial class DTD : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.DTD"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DTD class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DTD() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DTD class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DTD(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDTD /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IDTD : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region DTD + #region DTD implementation public partial class DTD : Javax.Xml.Stream.Events.IDTD { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndDocument.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndDocument.cs index 8ca8d75f88..6465dd5f5c 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndDocument.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndDocument.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region EndDocument declaration + /// + /// + /// + public partial class EndDocument : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.EndDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EndDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EndDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EndDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EndDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEndDocument /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IEndDocument : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region EndDocument + #region EndDocument implementation public partial class EndDocument : Javax.Xml.Stream.Events.IEndDocument { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndElement.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndElement.cs index d9f1ee57aa..d5e0fe8139 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndElement.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EndElement.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region EndElement declaration + /// + /// + /// + public partial class EndElement : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.EndElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EndElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EndElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EndElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EndElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEndElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IEndElement : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region EndElement + #region EndElement implementation public partial class EndElement : Javax.Xml.Stream.Events.IEndElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityDeclaration.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityDeclaration.cs index e9ada11492..0968a1c7a6 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityDeclaration.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityDeclaration.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region EntityDeclaration declaration + /// + /// + /// + public partial class EntityDeclaration : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.EntityDeclaration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EntityDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityDeclaration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EntityDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityDeclaration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEntityDeclaration /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IEntityDeclaration : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region EntityDeclaration + #region EntityDeclaration implementation public partial class EntityDeclaration : Javax.Xml.Stream.Events.IEntityDeclaration { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityReference.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityReference.cs index 7ddd06e52b..2efc9d57a7 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityReference.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/EntityReference.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region EntityReference declaration + /// + /// + /// + public partial class EntityReference : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.EntityReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEntityReference /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IEntityReference : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region EntityReference + #region EntityReference implementation public partial class EntityReference : Javax.Xml.Stream.Events.IEntityReference { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Namespace.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Namespace.cs index d965045d6d..8117c1fb89 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/Namespace.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/Namespace.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region Namespace declaration + /// + /// + /// + public partial class Namespace : Javax.Xml.Stream.Events.Attribute + { + const string _bridgeClassName = "javax.xml.stream.events.Namespace"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Namespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Namespace() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Namespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Namespace(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INamespace /// /// .NET interface for TO BE DEFINED FROM USER @@ -56,7 +103,7 @@ public partial interface INamespace : Javax.Xml.Stream.Events.IAttribute } #endregion - #region Namespace + #region Namespace implementation public partial class Namespace : Javax.Xml.Stream.Events.INamespace { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/NotationDeclaration.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/NotationDeclaration.cs index fd0dbcc894..a8564016be 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/NotationDeclaration.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/NotationDeclaration.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region NotationDeclaration declaration + /// + /// + /// + public partial class NotationDeclaration : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.NotationDeclaration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NotationDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NotationDeclaration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NotationDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NotationDeclaration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INotationDeclaration /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface INotationDeclaration : Javax.Xml.Stream.Events.IXMLEven } #endregion - #region NotationDeclaration + #region NotationDeclaration implementation public partial class NotationDeclaration : Javax.Xml.Stream.Events.INotationDeclaration { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/ProcessingInstruction.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/ProcessingInstruction.cs index 7545645da6..f15f959171 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/ProcessingInstruction.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/ProcessingInstruction.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region ProcessingInstruction declaration + /// + /// + /// + public partial class ProcessingInstruction : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.ProcessingInstruction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessingInstruction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessingInstruction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IProcessingInstruction /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IProcessingInstruction : Javax.Xml.Stream.Events.IXMLEv } #endregion - #region ProcessingInstruction + #region ProcessingInstruction implementation public partial class ProcessingInstruction : Javax.Xml.Stream.Events.IProcessingInstruction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartDocument.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartDocument.cs index a2a6a57b56..68b7c6ff0d 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartDocument.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartDocument.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region StartDocument declaration + /// + /// + /// + public partial class StartDocument : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.StartDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StartDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StartDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StartDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StartDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStartDocument /// /// .NET interface for TO BE DEFINED FROM USER @@ -70,7 +117,7 @@ public partial interface IStartDocument : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region StartDocument + #region StartDocument implementation public partial class StartDocument : Javax.Xml.Stream.Events.IStartDocument { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartElement.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartElement.cs index 2b79508abb..cb09b392a7 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartElement.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/StartElement.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region StartElement declaration + /// + /// + /// + public partial class StartElement : Javax.Xml.Stream.Events.XMLEvent + { + const string _bridgeClassName = "javax.xml.stream.events.StartElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StartElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StartElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StartElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StartElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStartElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IStartElement : Javax.Xml.Stream.Events.IXMLEvent } #endregion - #region StartElement + #region StartElement implementation public partial class StartElement : Javax.Xml.Stream.Events.IStartElement { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Events/XMLEvent.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Events/XMLEvent.cs index 8c4d5dd58a..51249edb8f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Events/XMLEvent.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Events/XMLEvent.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Events { + #region XMLEvent declaration + /// + /// + /// + public partial class XMLEvent : Javax.Xml.Stream.XMLStreamConstants + { + const string _bridgeClassName = "javax.xml.stream.events.XMLEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -121,7 +168,7 @@ public partial interface IXMLEvent : Javax.Xml.Stream.IXMLStreamConstants } #endregion - #region XMLEvent + #region XMLEvent implementation public partial class XMLEvent : Javax.Xml.Stream.Events.IXMLEvent { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/FactoryConfigurationError.cs b/src/net/JNet/Generated/Javax/Xml/Stream/FactoryConfigurationError.cs index 5ec0431863..ec016a6782 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/FactoryConfigurationError.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/FactoryConfigurationError.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Stream { - #region FactoryConfigurationError + #region FactoryConfigurationError declaration + /// + /// + /// + public partial class FactoryConfigurationError : Java.Lang.Error + { + const string _bridgeClassName = "javax.xml.stream.FactoryConfigurationError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region FactoryConfigurationError implementation public partial class FactoryConfigurationError { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Location.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Location.cs index afad2d35fa..b8850b7a03 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Location.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Location.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region Location declaration + /// + /// + /// + public partial class Location : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.Location"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Location() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Location class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Location(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILocation /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface ILocation } #endregion - #region Location + #region Location implementation public partial class Location : Javax.Xml.Stream.ILocation { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/StreamFilter.cs b/src/net/JNet/Generated/Javax/Xml/Stream/StreamFilter.cs index 683e16255e..8f4eb3010b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/StreamFilter.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/StreamFilter.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region StreamFilter declaration + /// + /// + /// + public partial class StreamFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.StreamFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StreamFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StreamFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StreamFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StreamFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStreamFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IStreamFilter } #endregion - #region StreamFilter + #region StreamFilter implementation public partial class StreamFilter : Javax.Xml.Stream.IStreamFilter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Util/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Util/AllPackageClasses.cs deleted file mode 100644 index 55e841b969..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Util/AllPackageClasses.cs +++ /dev/null @@ -1,214 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Stream.Util -{ - #region EventReaderDelegate - /// - /// - /// - public partial class EventReaderDelegate : Javax.Xml.Stream.XMLEventReader - { - const string _bridgeClassName = "javax.xml.stream.util.EventReaderDelegate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventReaderDelegate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public EventReaderDelegate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamReaderDelegate - /// - /// - /// - public partial class StreamReaderDelegate : Javax.Xml.Stream.XMLStreamReader - { - const string _bridgeClassName = "javax.xml.stream.util.StreamReaderDelegate"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StreamReaderDelegate() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StreamReaderDelegate(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEventAllocator - /// - /// - /// - public partial class XMLEventAllocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.util.XMLEventAllocator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLEventAllocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventAllocator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLEventAllocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventAllocator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLEventConsumer - /// - /// - /// - public partial class XMLEventConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.stream.util.XMLEventConsumer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLEventConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventConsumer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLEventConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLEventConsumer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Util/EventReaderDelegate.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Util/EventReaderDelegate.cs index 50fb7b6dab..e50cd6bb40 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Util/EventReaderDelegate.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Util/EventReaderDelegate.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Stream.Util { - #region EventReaderDelegate + #region EventReaderDelegate declaration + /// + /// + /// + public partial class EventReaderDelegate : Javax.Xml.Stream.XMLEventReader + { + const string _bridgeClassName = "javax.xml.stream.util.EventReaderDelegate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventReaderDelegate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public EventReaderDelegate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region EventReaderDelegate implementation public partial class EventReaderDelegate { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Util/StreamReaderDelegate.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Util/StreamReaderDelegate.cs index 8f0b21b926..db6cc12e25 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Util/StreamReaderDelegate.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Util/StreamReaderDelegate.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Stream.Util { - #region StreamReaderDelegate + #region StreamReaderDelegate declaration + /// + /// + /// + public partial class StreamReaderDelegate : Javax.Xml.Stream.XMLStreamReader + { + const string _bridgeClassName = "javax.xml.stream.util.StreamReaderDelegate"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StreamReaderDelegate() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StreamReaderDelegate(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamReaderDelegate implementation public partial class StreamReaderDelegate { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventAllocator.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventAllocator.cs index 149d1a4340..0fb56f2e04 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventAllocator.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventAllocator.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Util { + #region XMLEventAllocator declaration + /// + /// + /// + public partial class XMLEventAllocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.util.XMLEventAllocator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLEventAllocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventAllocator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLEventAllocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventAllocator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLEventAllocator /// /// .NET interface for TO BE DEFINED FROM USER @@ -62,7 +109,7 @@ public partial interface IXMLEventAllocator } #endregion - #region XMLEventAllocator + #region XMLEventAllocator implementation public partial class XMLEventAllocator : Javax.Xml.Stream.Util.IXMLEventAllocator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventConsumer.cs b/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventConsumer.cs index 4f33a3864f..870c42edce 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventConsumer.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/Util/XMLEventConsumer.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream.Util { + #region XMLEventConsumer declaration + /// + /// + /// + public partial class XMLEventConsumer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.util.XMLEventConsumer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLEventConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventConsumer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLEventConsumer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventConsumer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLEventConsumer /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IXMLEventConsumer } #endregion - #region XMLEventConsumer + #region XMLEventConsumer implementation public partial class XMLEventConsumer : Javax.Xml.Stream.Util.IXMLEventConsumer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventFactory.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventFactory.cs index 727d55c752..dde11505ae 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Stream { - #region XMLEventFactory + #region XMLEventFactory declaration + /// + /// + /// + public partial class XMLEventFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLEventFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLEventFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLEventFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLEventFactory implementation public partial class XMLEventFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventReader.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventReader.cs index cd5dd1d848..5bde03a940 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventReader.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventReader.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLEventReader declaration + /// + /// + /// + public partial class XMLEventReader : Java.Util.Iterator + { + const string _bridgeClassName = "javax.xml.stream.XMLEventReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLEventReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLEventReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLEventReader /// /// .NET interface for TO BE DEFINED FROM USER @@ -82,7 +129,7 @@ public partial interface IXMLEventReader } #endregion - #region XMLEventReader + #region XMLEventReader implementation public partial class XMLEventReader : Javax.Xml.Stream.IXMLEventReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventWriter.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventWriter.cs index 4419e64da0..b186f0e75b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventWriter.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLEventWriter.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLEventWriter declaration + /// + /// + /// + public partial class XMLEventWriter : Javax.Xml.Stream.Util.XMLEventConsumer + { + const string _bridgeClassName = "javax.xml.stream.XMLEventWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLEventWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLEventWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLEventWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLEventWriter /// /// .NET interface for TO BE DEFINED FROM USER @@ -89,7 +136,7 @@ public partial interface IXMLEventWriter : Javax.Xml.Stream.Util.IXMLEventConsum } #endregion - #region XMLEventWriter + #region XMLEventWriter implementation public partial class XMLEventWriter : Javax.Xml.Stream.IXMLEventWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLInputFactory.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLInputFactory.cs index 1bce526b9e..31db8c49b8 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLInputFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLInputFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Stream { - #region XMLInputFactory + #region XMLInputFactory declaration + /// + /// + /// + public partial class XMLInputFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLInputFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLInputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLInputFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLInputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLInputFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLInputFactory implementation public partial class XMLInputFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLOutputFactory.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLOutputFactory.cs index 6a100c524f..fc03c3e826 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLOutputFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLOutputFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Stream { - #region XMLOutputFactory + #region XMLOutputFactory declaration + /// + /// + /// + public partial class XMLOutputFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLOutputFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLOutputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLOutputFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLOutputFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLOutputFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLOutputFactory implementation public partial class XMLOutputFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLReporter.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLReporter.cs index de7aa3ba42..838984d964 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLReporter.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLReporter.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLReporter declaration + /// + /// + /// + public partial class XMLReporter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLReporter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLReporter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLReporter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLReporter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLReporter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLReporter /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IXMLReporter } #endregion - #region XMLReporter + #region XMLReporter implementation public partial class XMLReporter : Javax.Xml.Stream.IXMLReporter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLResolver.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLResolver.cs index 6ac1189bb6..d93f613cfa 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLResolver.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLResolver.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLResolver declaration + /// + /// + /// + public partial class XMLResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IXMLResolver } #endregion - #region XMLResolver + #region XMLResolver implementation public partial class XMLResolver : Javax.Xml.Stream.IXMLResolver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamConstants.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamConstants.cs index 5012a0cac8..0bc0810e4a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamConstants.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamConstants.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLStreamConstants declaration + /// + /// + /// + public partial class XMLStreamConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLStreamConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStreamConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLStreamConstants class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStreamConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLStreamConstants /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IXMLStreamConstants } #endregion - #region XMLStreamConstants + #region XMLStreamConstants implementation public partial class XMLStreamConstants : Javax.Xml.Stream.IXMLStreamConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamException.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamException.cs index d2b041bdc4..0b4531ac8f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Stream { - #region XMLStreamException + #region XMLStreamException declaration + /// + /// + /// + public partial class XMLStreamException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.stream.XMLStreamException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XMLStreamException implementation public partial class XMLStreamException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamReader.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamReader.cs index 20aafc502c..8d51f248b9 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamReader.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamReader.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLStreamReader declaration + /// + /// + /// + public partial class XMLStreamReader : Javax.Xml.Stream.XMLStreamConstants + { + const string _bridgeClassName = "javax.xml.stream.XMLStreamReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLStreamReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStreamReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLStreamReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStreamReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLStreamReader /// /// .NET interface for TO BE DEFINED FROM USER @@ -274,7 +321,7 @@ public partial interface IXMLStreamReader : Javax.Xml.Stream.IXMLStreamConstants } #endregion - #region XMLStreamReader + #region XMLStreamReader implementation public partial class XMLStreamReader : Javax.Xml.Stream.IXMLStreamReader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamWriter.cs b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamWriter.cs index 9bef4773cc..31d616f891 100644 --- a/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamWriter.cs +++ b/src/net/JNet/Generated/Javax/Xml/Stream/XMLStreamWriter.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Stream { + #region XMLStreamWriter declaration + /// + /// + /// + public partial class XMLStreamWriter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.stream.XMLStreamWriter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLStreamWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStreamWriter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLStreamWriter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLStreamWriter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLStreamWriter /// /// .NET interface for TO BE DEFINED FROM USER @@ -242,7 +289,7 @@ public partial interface IXMLStreamWriter } #endregion - #region XMLStreamWriter + #region XMLStreamWriter implementation public partial class XMLStreamWriter : Javax.Xml.Stream.IXMLStreamWriter { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Transform/AllPackageClasses.cs deleted file mode 100644 index 0a2aedf82d..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Transform/AllPackageClasses.cs +++ /dev/null @@ -1,522 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Transform -{ - #region ErrorListener - /// - /// - /// - public partial class ErrorListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ErrorListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.javax.xml.transform.ErrorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ErrorListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ErrorListenerDirect : ErrorListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "javax.xml.transform.ErrorListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region OutputKeys - /// - /// - /// - public partial class OutputKeys : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.OutputKeys"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public OutputKeys() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public OutputKeys(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Result - /// - /// - /// - public partial class Result : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.Result"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Result class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Result() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Result class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Result(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Source - /// - /// - /// - public partial class Source : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.Source"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Source class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Source() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Source class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Source(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SourceLocator - /// - /// - /// - public partial class SourceLocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.SourceLocator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SourceLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SourceLocator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SourceLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SourceLocator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Templates - /// - /// - /// - public partial class Templates : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.Templates"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Templates class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Templates() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Templates class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Templates(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Transformer - /// - /// - /// - public partial class Transformer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.Transformer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Transformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transformer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Transformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Transformer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransformerConfigurationException - /// - /// - /// - public partial class TransformerConfigurationException : Javax.Xml.Transform.TransformerException - { - const string _bridgeClassName = "javax.xml.transform.TransformerConfigurationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region TransformerException - /// - /// - /// - public partial class TransformerException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.transform.TransformerException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region TransformerFactory - /// - /// - /// - public partial class TransformerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.TransformerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransformerFactoryConfigurationError - /// - /// - /// - public partial class TransformerFactoryConfigurationError : Java.Lang.Error - { - const string _bridgeClassName = "javax.xml.transform.TransformerFactoryConfigurationError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region URIResolver - /// - /// - /// - public partial class URIResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.URIResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("URIResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("URIResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public URIResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/AllPackageClasses.cs deleted file mode 100644 index 3023490a27..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/AllPackageClasses.cs +++ /dev/null @@ -1,167 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Transform.Dom -{ - #region DOMLocator - /// - /// - /// - public partial class DOMLocator : Javax.Xml.Transform.SourceLocator - { - const string _bridgeClassName = "javax.xml.transform.dom.DOMLocator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMLocator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMLocator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMResult - /// - /// - /// - public partial class DOMResult : Javax.Xml.Transform.Result - { - const string _bridgeClassName = "javax.xml.transform.dom.DOMResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMSource - /// - /// - /// - public partial class DOMSource : Javax.Xml.Transform.Source - { - const string _bridgeClassName = "javax.xml.transform.dom.DOMSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMLocator.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMLocator.cs index fff1c58162..43ea9e9684 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMLocator.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMLocator.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform.Dom { + #region DOMLocator declaration + /// + /// + /// + public partial class DOMLocator : Javax.Xml.Transform.SourceLocator + { + const string _bridgeClassName = "javax.xml.transform.dom.DOMLocator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMLocator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMLocator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMLocator /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDOMLocator : Javax.Xml.Transform.ISourceLocator } #endregion - #region DOMLocator + #region DOMLocator implementation public partial class DOMLocator : Javax.Xml.Transform.Dom.IDOMLocator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMResult.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMResult.cs index 419a11ac90..84660de33a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMResult.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMResult.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Dom { - #region DOMResult + #region DOMResult declaration + /// + /// + /// + public partial class DOMResult : Javax.Xml.Transform.Result + { + const string _bridgeClassName = "javax.xml.transform.dom.DOMResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMResult implementation public partial class DOMResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMSource.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMSource.cs index a561ae7fa1..604eb1788b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMSource.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Dom/DOMSource.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Dom { - #region DOMSource + #region DOMSource declaration + /// + /// + /// + public partial class DOMSource : Javax.Xml.Transform.Source + { + const string _bridgeClassName = "javax.xml.transform.dom.DOMSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMSource implementation public partial class DOMSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/ErrorListener.cs b/src/net/JNet/Generated/Javax/Xml/Transform/ErrorListener.cs index 44d08d4546..3914cb3697 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/ErrorListener.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/ErrorListener.cs @@ -25,6 +25,73 @@ namespace Javax.Xml.Transform { + #region ErrorListener declaration + /// + /// + /// + public partial class ErrorListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ErrorListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.javax.xml.transform.ErrorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ErrorListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ErrorListenerDirect : ErrorListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "javax.xml.transform.ErrorListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IErrorListener /// /// .NET interface for org.mases.jnet.generated.javax.xml.transform.ErrorListener implementing @@ -61,7 +128,7 @@ public partial interface IErrorListener } #endregion - #region ErrorListener + #region ErrorListener implementation public partial class ErrorListener : Javax.Xml.Transform.IErrorListener { #region Constructors @@ -168,7 +235,7 @@ public virtual void Warning(MASES.JCOBridge.C2JBridge.JVMBridgeException arg0) } #endregion - #region ErrorListenerDirect + #region ErrorListenerDirect implementation public partial class ErrorListenerDirect : Javax.Xml.Transform.IErrorListener { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/OutputKeys.cs b/src/net/JNet/Generated/Javax/Xml/Transform/OutputKeys.cs index 655cdc0278..5c95eadf00 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/OutputKeys.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/OutputKeys.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform { - #region OutputKeys + #region OutputKeys declaration + /// + /// + /// + public partial class OutputKeys : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.OutputKeys"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public OutputKeys() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public OutputKeys(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region OutputKeys implementation public partial class OutputKeys { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Result.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Result.cs index 02b05474d8..74cb7655eb 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Result.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Result.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform { + #region Result declaration + /// + /// + /// + public partial class Result : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.Result"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Result class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Result() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Result class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Result(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IResult /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IResult } #endregion - #region Result + #region Result implementation public partial class Result : Javax.Xml.Transform.IResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/AllPackageClasses.cs deleted file mode 100644 index 61f00becde..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/AllPackageClasses.cs +++ /dev/null @@ -1,261 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Transform.Sax -{ - #region SAXResult - /// - /// - /// - public partial class SAXResult : Javax.Xml.Transform.Result - { - const string _bridgeClassName = "javax.xml.transform.sax.SAXResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SAXResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SAXResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SAXSource - /// - /// - /// - public partial class SAXSource : Javax.Xml.Transform.Source - { - const string _bridgeClassName = "javax.xml.transform.sax.SAXSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public SAXSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public SAXSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SAXTransformerFactory - /// - /// - /// - public partial class SAXTransformerFactory : Javax.Xml.Transform.TransformerFactory - { - const string _bridgeClassName = "javax.xml.transform.sax.SAXTransformerFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SAXTransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SAXTransformerFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SAXTransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SAXTransformerFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TemplatesHandler - /// - /// - /// - public partial class TemplatesHandler : Org.Xml.Sax.ContentHandler - { - const string _bridgeClassName = "javax.xml.transform.sax.TemplatesHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TemplatesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemplatesHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TemplatesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TemplatesHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TransformerHandler - /// - /// - /// - public partial class TransformerHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.transform.sax.TransformerHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TransformerHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformerHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TransformerHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TransformerHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXResult.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXResult.cs index 66d5ebafd8..d2ee0313f3 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXResult.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXResult.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Sax { - #region SAXResult + #region SAXResult declaration + /// + /// + /// + public partial class SAXResult : Javax.Xml.Transform.Result + { + const string _bridgeClassName = "javax.xml.transform.sax.SAXResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SAXResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SAXResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SAXResult implementation public partial class SAXResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXSource.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXSource.cs index 0815e8742e..7d93b17aac 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXSource.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXSource.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Sax { - #region SAXSource + #region SAXSource declaration + /// + /// + /// + public partial class SAXSource : Javax.Xml.Transform.Source + { + const string _bridgeClassName = "javax.xml.transform.sax.SAXSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public SAXSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public SAXSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SAXSource implementation public partial class SAXSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXTransformerFactory.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXTransformerFactory.cs index c528f45191..fb259204ec 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXTransformerFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/SAXTransformerFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Transform.Sax { - #region SAXTransformerFactory + #region SAXTransformerFactory declaration + /// + /// + /// + public partial class SAXTransformerFactory : Javax.Xml.Transform.TransformerFactory + { + const string _bridgeClassName = "javax.xml.transform.sax.SAXTransformerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SAXTransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SAXTransformerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SAXTransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SAXTransformerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SAXTransformerFactory implementation public partial class SAXTransformerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TemplatesHandler.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TemplatesHandler.cs index c6cb9a8fef..381531bf30 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TemplatesHandler.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TemplatesHandler.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform.Sax { + #region TemplatesHandler declaration + /// + /// + /// + public partial class TemplatesHandler : Org.Xml.Sax.ContentHandler + { + const string _bridgeClassName = "javax.xml.transform.sax.TemplatesHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TemplatesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemplatesHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TemplatesHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TemplatesHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemplatesHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ITemplatesHandler : Org.Xml.Sax.IContentHandler } #endregion - #region TemplatesHandler + #region TemplatesHandler implementation public partial class TemplatesHandler : Javax.Xml.Transform.Sax.ITemplatesHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TransformerHandler.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TransformerHandler.cs index 8a9e8c800d..dd9be108af 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TransformerHandler.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Sax/TransformerHandler.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform.Sax { + #region TransformerHandler declaration + /// + /// + /// + public partial class TransformerHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.sax.TransformerHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransformerHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformerHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransformerHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformerHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITransformerHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -57,7 +104,7 @@ public partial interface ITransformerHandler } #endregion - #region TransformerHandler + #region TransformerHandler implementation public partial class TransformerHandler : Javax.Xml.Transform.Sax.ITransformerHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Source.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Source.cs index ed954ec217..40d294a026 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Source.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Source.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform { + #region Source declaration + /// + /// + /// + public partial class Source : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.Source"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Source class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Source() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Source class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Source(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISource /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface ISource } #endregion - #region Source + #region Source implementation public partial class Source : Javax.Xml.Transform.ISource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/SourceLocator.cs b/src/net/JNet/Generated/Javax/Xml/Transform/SourceLocator.cs index 61b76caa86..c632aed3d5 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/SourceLocator.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/SourceLocator.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform { + #region SourceLocator declaration + /// + /// + /// + public partial class SourceLocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.SourceLocator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SourceLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SourceLocator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SourceLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SourceLocator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ISourceLocator /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ISourceLocator } #endregion - #region SourceLocator + #region SourceLocator implementation public partial class SourceLocator : Javax.Xml.Transform.ISourceLocator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Stax/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Stax/AllPackageClasses.cs deleted file mode 100644 index f95085fdbf..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Stax/AllPackageClasses.cs +++ /dev/null @@ -1,120 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Transform.Stax -{ - #region StAXResult - /// - /// - /// - public partial class StAXResult : Javax.Xml.Transform.Result - { - const string _bridgeClassName = "javax.xml.transform.stax.StAXResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StAXResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StAXResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StAXSource - /// - /// - /// - public partial class StAXSource : Javax.Xml.Transform.Source - { - const string _bridgeClassName = "javax.xml.transform.stax.StAXSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StAXSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StAXSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXResult.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXResult.cs index 1fc4e254c8..5802584a9b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXResult.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXResult.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Stax { - #region StAXResult + #region StAXResult declaration + /// + /// + /// + public partial class StAXResult : Javax.Xml.Transform.Result + { + const string _bridgeClassName = "javax.xml.transform.stax.StAXResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StAXResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StAXResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StAXResult implementation public partial class StAXResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXSource.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXSource.cs index 1b70e5a76c..2ada4e8742 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXSource.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Stax/StAXSource.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Stax { - #region StAXSource + #region StAXSource declaration + /// + /// + /// + public partial class StAXSource : Javax.Xml.Transform.Source + { + const string _bridgeClassName = "javax.xml.transform.stax.StAXSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StAXSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StAXSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StAXSource implementation public partial class StAXSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Stream/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Stream/AllPackageClasses.cs deleted file mode 100644 index f599541bdc..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Stream/AllPackageClasses.cs +++ /dev/null @@ -1,120 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Transform.Stream -{ - #region StreamResult - /// - /// - /// - public partial class StreamResult : Javax.Xml.Transform.Result - { - const string _bridgeClassName = "javax.xml.transform.stream.StreamResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StreamResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StreamResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StreamSource - /// - /// - /// - public partial class StreamSource : Javax.Xml.Transform.Source - { - const string _bridgeClassName = "javax.xml.transform.stream.StreamSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public StreamSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public StreamSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamResult.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamResult.cs index edc0ab9833..02f734aa56 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamResult.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamResult.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Stream { - #region StreamResult + #region StreamResult declaration + /// + /// + /// + public partial class StreamResult : Javax.Xml.Transform.Result + { + const string _bridgeClassName = "javax.xml.transform.stream.StreamResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StreamResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StreamResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamResult implementation public partial class StreamResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamSource.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamSource.cs index ee9847a7e6..366d16f8e2 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamSource.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Stream/StreamSource.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Transform.Stream { - #region StreamSource + #region StreamSource declaration + /// + /// + /// + public partial class StreamSource : Javax.Xml.Transform.Source + { + const string _bridgeClassName = "javax.xml.transform.stream.StreamSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public StreamSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public StreamSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region StreamSource implementation public partial class StreamSource { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Templates.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Templates.cs index af9cc05003..5aad548797 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Templates.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Templates.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform { + #region Templates declaration + /// + /// + /// + public partial class Templates : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.Templates"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Templates class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Templates() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Templates class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Templates(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITemplates /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ITemplates } #endregion - #region Templates + #region Templates implementation public partial class Templates : Javax.Xml.Transform.ITemplates { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/Transformer.cs b/src/net/JNet/Generated/Javax/Xml/Transform/Transformer.cs index 1c7f4a30a9..aef80c7123 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/Transformer.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/Transformer.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Transform { - #region Transformer + #region Transformer declaration + /// + /// + /// + public partial class Transformer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.Transformer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Transformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transformer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Transformer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Transformer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Transformer implementation public partial class Transformer { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerConfigurationException.cs b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerConfigurationException.cs index 8b6609f5ac..073b7d81ac 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerConfigurationException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerConfigurationException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Transform { - #region TransformerConfigurationException + #region TransformerConfigurationException declaration + /// + /// + /// + public partial class TransformerConfigurationException : Javax.Xml.Transform.TransformerException + { + const string _bridgeClassName = "javax.xml.transform.TransformerConfigurationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TransformerConfigurationException implementation public partial class TransformerConfigurationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerException.cs b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerException.cs index 211cb9137e..46a575c316 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Transform { - #region TransformerException + #region TransformerException declaration + /// + /// + /// + public partial class TransformerException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.transform.TransformerException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TransformerException implementation public partial class TransformerException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactory.cs b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactory.cs index bbe0edcdb6..8de7c56c1f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Transform { - #region TransformerFactory + #region TransformerFactory declaration + /// + /// + /// + public partial class TransformerFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.TransformerFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformerFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TransformerFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TransformerFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TransformerFactory implementation public partial class TransformerFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactoryConfigurationError.cs b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactoryConfigurationError.cs index 38d9f0edc2..6086c9814a 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactoryConfigurationError.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/TransformerFactoryConfigurationError.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Transform { - #region TransformerFactoryConfigurationError + #region TransformerFactoryConfigurationError declaration + /// + /// + /// + public partial class TransformerFactoryConfigurationError : Java.Lang.Error + { + const string _bridgeClassName = "javax.xml.transform.TransformerFactoryConfigurationError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region TransformerFactoryConfigurationError implementation public partial class TransformerFactoryConfigurationError { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Transform/URIResolver.cs b/src/net/JNet/Generated/Javax/Xml/Transform/URIResolver.cs index a37cf59c3b..dd7006261b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Transform/URIResolver.cs +++ b/src/net/JNet/Generated/Javax/Xml/Transform/URIResolver.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Transform { + #region URIResolver declaration + /// + /// + /// + public partial class URIResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.transform.URIResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("URIResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("URIResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public URIResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IURIResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IURIResolver } #endregion - #region URIResolver + #region URIResolver implementation public partial class URIResolver : Javax.Xml.Transform.IURIResolver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Validation/AllPackageClasses.cs deleted file mode 100644 index f613766564..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Validation/AllPackageClasses.cs +++ /dev/null @@ -1,329 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Validation -{ - #region Schema - /// - /// - /// - public partial class Schema : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.validation.Schema"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Schema class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Schema() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Schema class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Schema(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SchemaFactory - /// - /// - /// - public partial class SchemaFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.validation.SchemaFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SchemaFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SchemaFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SchemaFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SchemaFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SchemaFactoryConfigurationError - /// - /// - /// - public partial class SchemaFactoryConfigurationError : Java.Lang.Error - { - const string _bridgeClassName = "javax.xml.validation.SchemaFactoryConfigurationError"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SchemaFactoryLoader - /// - /// - /// - public partial class SchemaFactoryLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.validation.SchemaFactoryLoader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("SchemaFactoryLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SchemaFactoryLoader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("SchemaFactoryLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public SchemaFactoryLoader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeInfoProvider - /// - /// - /// - public partial class TypeInfoProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.validation.TypeInfoProvider"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeInfoProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeInfoProvider() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeInfoProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeInfoProvider(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Validator - /// - /// - /// - public partial class Validator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.validation.Validator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Validator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Validator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Validator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Validator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ValidatorHandler - /// - /// - /// - public partial class ValidatorHandler : Org.Xml.Sax.ContentHandler - { - const string _bridgeClassName = "javax.xml.validation.ValidatorHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ValidatorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ValidatorHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ValidatorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ValidatorHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/Schema.cs b/src/net/JNet/Generated/Javax/Xml/Validation/Schema.cs index d9acf2cce4..808830723b 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/Schema.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/Schema.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Validation { - #region Schema + #region Schema declaration + /// + /// + /// + public partial class Schema : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.validation.Schema"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Schema class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Schema() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Schema class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Schema(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Schema implementation public partial class Schema { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactory.cs b/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactory.cs index 3c601ec181..51b1207907 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Validation { - #region SchemaFactory + #region SchemaFactory declaration + /// + /// + /// + public partial class SchemaFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.validation.SchemaFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SchemaFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SchemaFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SchemaFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SchemaFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SchemaFactory implementation public partial class SchemaFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryConfigurationError.cs b/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryConfigurationError.cs index 07d398e0c8..e8f2c9f128 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryConfigurationError.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryConfigurationError.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Validation { - #region SchemaFactoryConfigurationError + #region SchemaFactoryConfigurationError declaration + /// + /// + /// + public partial class SchemaFactoryConfigurationError : Java.Lang.Error + { + const string _bridgeClassName = "javax.xml.validation.SchemaFactoryConfigurationError"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SchemaFactoryConfigurationError implementation public partial class SchemaFactoryConfigurationError { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryLoader.cs b/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryLoader.cs index a1836b4fa5..c5629f57eb 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryLoader.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/SchemaFactoryLoader.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Validation { - #region SchemaFactoryLoader + #region SchemaFactoryLoader declaration + /// + /// + /// + public partial class SchemaFactoryLoader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.validation.SchemaFactoryLoader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("SchemaFactoryLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SchemaFactoryLoader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("SchemaFactoryLoader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public SchemaFactoryLoader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region SchemaFactoryLoader implementation public partial class SchemaFactoryLoader { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/TypeInfoProvider.cs b/src/net/JNet/Generated/Javax/Xml/Validation/TypeInfoProvider.cs index d85f862e3b..431eca135e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/TypeInfoProvider.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/TypeInfoProvider.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Validation { - #region TypeInfoProvider + #region TypeInfoProvider declaration + /// + /// + /// + public partial class TypeInfoProvider : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.validation.TypeInfoProvider"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeInfoProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeInfoProvider() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeInfoProvider class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeInfoProvider(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region TypeInfoProvider implementation public partial class TypeInfoProvider { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/Validator.cs b/src/net/JNet/Generated/Javax/Xml/Validation/Validator.cs index ef32d708d2..575860afc5 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/Validator.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/Validator.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Validation { - #region Validator + #region Validator declaration + /// + /// + /// + public partial class Validator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.validation.Validator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Validator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Validator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Validator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Validator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Validator implementation public partial class Validator { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Validation/ValidatorHandler.cs b/src/net/JNet/Generated/Javax/Xml/Validation/ValidatorHandler.cs index 0be4e67616..8eb75f1337 100644 --- a/src/net/JNet/Generated/Javax/Xml/Validation/ValidatorHandler.cs +++ b/src/net/JNet/Generated/Javax/Xml/Validation/ValidatorHandler.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Validation { - #region ValidatorHandler + #region ValidatorHandler declaration + /// + /// + /// + public partial class ValidatorHandler : Org.Xml.Sax.ContentHandler + { + const string _bridgeClassName = "javax.xml.validation.ValidatorHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ValidatorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ValidatorHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ValidatorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ValidatorHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ValidatorHandler implementation public partial class ValidatorHandler { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/XMLConstants.cs b/src/net/JNet/Generated/Javax/Xml/XMLConstants.cs index 80165096f0..ae71feaff5 100644 --- a/src/net/JNet/Generated/Javax/Xml/XMLConstants.cs +++ b/src/net/JNet/Generated/Javax/Xml/XMLConstants.cs @@ -25,7 +25,52 @@ namespace Javax.Xml { - #region XMLConstants + #region XMLConstants declaration + /// + /// + /// + public partial class XMLConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.XMLConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XMLConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XMLConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLConstants implementation public partial class XMLConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/AllPackageClasses.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/AllPackageClasses.cs deleted file mode 100644 index 62f548f4a2..0000000000 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/AllPackageClasses.cs +++ /dev/null @@ -1,612 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Javax.Xml.Xpath -{ - #region XPath - /// - /// - /// - public partial class XPath : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPath"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPath() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPath(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathConstants - /// - /// - /// - public partial class XPathConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathConstants"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XPathConstants() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XPathConstants(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathEvaluationResult - /// - /// - /// - public partial class XPathEvaluationResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathEvaluationResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathEvaluationResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathEvaluationResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - #region XPathResultType - /// - /// - /// - public partial class XPathResultType : Java.Lang.Enum - { - const string _bridgeClassName = "javax.xml.xpath.XPathEvaluationResult$XPathResultType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XPathResultType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XPathResultType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => true; - - // TODO: complete the class - - } - #endregion - - - } - #endregion - - #region XPathEvaluationResult - /// - /// - /// - /// - public partial class XPathEvaluationResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase> - { - const string _bridgeClassName = "javax.xml.xpath.XPathEvaluationResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathEvaluationResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathEvaluationResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathException - /// - /// - /// - public partial class XPathException : Java.Lang.Exception - { - const string _bridgeClassName = "javax.xml.xpath.XPathException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XPathExpression - /// - /// - /// - public partial class XPathExpression : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathExpression"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathExpression() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathExpression(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathExpressionException - /// - /// - /// - public partial class XPathExpressionException : Javax.Xml.Xpath.XPathException - { - const string _bridgeClassName = "javax.xml.xpath.XPathExpressionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XPathFactory - /// - /// - /// - public partial class XPathFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathFactory"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathFactory() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathFactory(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathFactoryConfigurationException - /// - /// - /// - public partial class XPathFactoryConfigurationException : Javax.Xml.Xpath.XPathException - { - const string _bridgeClassName = "javax.xml.xpath.XPathFactoryConfigurationException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XPathFunction - /// - /// - /// - public partial class XPathFunction : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathFunction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathFunction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathFunction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathFunction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathFunction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathFunctionException - /// - /// - /// - public partial class XPathFunctionException : Javax.Xml.Xpath.XPathExpressionException - { - const string _bridgeClassName = "javax.xml.xpath.XPathFunctionException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XPathFunctionResolver - /// - /// - /// - public partial class XPathFunctionResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathFunctionResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathFunctionResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathFunctionResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathFunctionResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathFunctionResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathNodes - /// - /// - /// - public partial class XPathNodes : Java.Lang.Iterable - { - const string _bridgeClassName = "javax.xml.xpath.XPathNodes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathNodes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathNodes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathNodes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathNodes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathVariableResolver - /// - /// - /// - public partial class XPathVariableResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "javax.xml.xpath.XPathVariableResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathVariableResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathVariableResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathVariableResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathVariableResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPath.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPath.cs index 8b2fdd6388..6dcf842f1e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPath.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPath.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Xpath { + #region XPath declaration + /// + /// + /// + public partial class XPath : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPath"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPath() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPath class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPath(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPath /// /// .NET interface for TO BE DEFINED FROM USER @@ -136,7 +183,7 @@ public partial interface IXPath } #endregion - #region XPath + #region XPath implementation public partial class XPath : Javax.Xml.Xpath.IXPath { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathConstants.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathConstants.cs index cdc5ebeef7..623f7f0cb4 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathConstants.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathConstants.cs @@ -25,7 +25,52 @@ namespace Javax.Xml.Xpath { - #region XPathConstants + #region XPathConstants declaration + /// + /// + /// + public partial class XPathConstants : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathConstants"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XPathConstants() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XPathConstants(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XPathConstants implementation public partial class XPathConstants { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathEvaluationResult.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathEvaluationResult.cs index 41047ed42f..2d1a2a3831 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathEvaluationResult.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathEvaluationResult.cs @@ -25,7 +25,147 @@ namespace Javax.Xml.Xpath { - #region XPathEvaluationResult + #region XPathEvaluationResult declaration + /// + /// + /// + public partial class XPathEvaluationResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathEvaluationResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathEvaluationResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathEvaluationResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + #region XPathResultType declaration + /// + /// + /// + public partial class XPathResultType : Java.Lang.Enum + { + const string _bridgeClassName = "javax.xml.xpath.XPathEvaluationResult$XPathResultType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XPathResultType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XPathResultType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => true; + + // TODO: complete the class + + } + #endregion + + + } + #endregion + + #region XPathEvaluationResult declaration + /// + /// + /// + /// + public partial class XPathEvaluationResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase> + { + const string _bridgeClassName = "javax.xml.xpath.XPathEvaluationResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathEvaluationResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathEvaluationResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathEvaluationResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XPathEvaluationResult implementation public partial class XPathEvaluationResult { #region Constructors @@ -65,7 +205,7 @@ public object Value() #endregion #region Nested classes - #region XPathResultType + #region XPathResultType implementation public partial class XPathResultType { #region Constructors @@ -193,7 +333,7 @@ public partial interface IXPathEvaluationResult } #endregion - #region XPathEvaluationResult + #region XPathEvaluationResult implementation public partial class XPathEvaluationResult : Javax.Xml.Xpath.IXPathEvaluationResult { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathException.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathException.cs index 8ddf7763fe..064d18ab2e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Xpath { - #region XPathException + #region XPathException declaration + /// + /// + /// + public partial class XPathException : Java.Lang.Exception + { + const string _bridgeClassName = "javax.xml.xpath.XPathException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XPathException implementation public partial class XPathException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpression.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpression.cs index 291b09ce0d..629ec0da8f 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpression.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpression.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Xpath { + #region XPathExpression declaration + /// + /// + /// + public partial class XPathExpression : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathExpression"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathExpression() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathExpression(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathExpression /// /// .NET interface for TO BE DEFINED FROM USER @@ -105,7 +152,7 @@ public partial interface IXPathExpression } #endregion - #region XPathExpression + #region XPathExpression implementation public partial class XPathExpression : Javax.Xml.Xpath.IXPathExpression { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpressionException.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpressionException.cs index 6488ef402f..43835aa566 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpressionException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathExpressionException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Xpath { - #region XPathExpressionException + #region XPathExpressionException declaration + /// + /// + /// + public partial class XPathExpressionException : Javax.Xml.Xpath.XPathException + { + const string _bridgeClassName = "javax.xml.xpath.XPathExpressionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XPathExpressionException implementation public partial class XPathExpressionException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactory.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactory.cs index a1daeb1e7b..9fec20eeb8 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactory.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactory.cs @@ -25,7 +25,54 @@ namespace Javax.Xml.Xpath { - #region XPathFactory + #region XPathFactory declaration + /// + /// + /// + public partial class XPathFactory : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathFactory"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathFactory() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathFactory class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathFactory(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XPathFactory implementation public partial class XPathFactory { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactoryConfigurationException.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactoryConfigurationException.cs index c97fdc6bce..7cf24493f0 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactoryConfigurationException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFactoryConfigurationException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Xpath { - #region XPathFactoryConfigurationException + #region XPathFactoryConfigurationException declaration + /// + /// + /// + public partial class XPathFactoryConfigurationException : Javax.Xml.Xpath.XPathException + { + const string _bridgeClassName = "javax.xml.xpath.XPathFactoryConfigurationException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XPathFactoryConfigurationException implementation public partial class XPathFactoryConfigurationException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunction.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunction.cs index b8c902d7f9..1f3ef7bdeb 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunction.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunction.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Xpath { + #region XPathFunction declaration + /// + /// + /// + public partial class XPathFunction : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathFunction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathFunction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathFunction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathFunction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathFunction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathFunction /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IXPathFunction } #endregion - #region XPathFunction + #region XPathFunction implementation public partial class XPathFunction : Javax.Xml.Xpath.IXPathFunction { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionException.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionException.cs index 07e67235bb..42b6804867 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionException.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionException.cs @@ -25,7 +25,24 @@ namespace Javax.Xml.Xpath { - #region XPathFunctionException + #region XPathFunctionException declaration + /// + /// + /// + public partial class XPathFunctionException : Javax.Xml.Xpath.XPathExpressionException + { + const string _bridgeClassName = "javax.xml.xpath.XPathFunctionException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XPathFunctionException implementation public partial class XPathFunctionException { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionResolver.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionResolver.cs index 8ac1ebe7f6..298b9d21c7 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionResolver.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathFunctionResolver.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Xpath { + #region XPathFunctionResolver declaration + /// + /// + /// + public partial class XPathFunctionResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathFunctionResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathFunctionResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathFunctionResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathFunctionResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathFunctionResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathFunctionResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IXPathFunctionResolver } #endregion - #region XPathFunctionResolver + #region XPathFunctionResolver implementation public partial class XPathFunctionResolver : Javax.Xml.Xpath.IXPathFunctionResolver { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathNodes.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathNodes.cs index ff412b3c0d..2a88f63a2e 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathNodes.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathNodes.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Xpath { + #region XPathNodes declaration + /// + /// + /// + public partial class XPathNodes : Java.Lang.Iterable + { + const string _bridgeClassName = "javax.xml.xpath.XPathNodes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathNodes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathNodes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathNodes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathNodes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathNodes /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IXPathNodes } #endregion - #region XPathNodes + #region XPathNodes implementation public partial class XPathNodes : Javax.Xml.Xpath.IXPathNodes { #region Constructors diff --git a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathVariableResolver.cs b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathVariableResolver.cs index 6a1ba5d3db..020e45ecfc 100644 --- a/src/net/JNet/Generated/Javax/Xml/Xpath/XPathVariableResolver.cs +++ b/src/net/JNet/Generated/Javax/Xml/Xpath/XPathVariableResolver.cs @@ -25,6 +25,53 @@ namespace Javax.Xml.Xpath { + #region XPathVariableResolver declaration + /// + /// + /// + public partial class XPathVariableResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "javax.xml.xpath.XPathVariableResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathVariableResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathVariableResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathVariableResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathVariableResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathVariableResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IXPathVariableResolver } #endregion - #region XPathVariableResolver + #region XPathVariableResolver implementation public partial class XPathVariableResolver : Javax.Xml.Xpath.IXPathVariableResolver { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/AllPackageClasses.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/AllPackageClasses.cs deleted file mode 100644 index 520b445ac6..0000000000 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/AllPackageClasses.cs +++ /dev/null @@ -1,370 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.Ietf.Jgss -{ - #region ChannelBinding - /// - /// - /// - public partial class ChannelBinding : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.ietf.jgss.ChannelBinding"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ChannelBinding() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public ChannelBinding(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GSSContext - /// - /// - /// - public partial class GSSContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.ietf.jgss.GSSContext"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GSSContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSContext() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GSSContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSContext(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GSSCredential - /// - /// - /// - public partial class GSSCredential : Java.Lang.Cloneable - { - const string _bridgeClassName = "org.ietf.jgss.GSSCredential"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GSSCredential class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSCredential() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GSSCredential class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSCredential(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GSSException - /// - /// - /// - public partial class GSSException : Java.Lang.Exception - { - const string _bridgeClassName = "org.ietf.jgss.GSSException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region GSSManager - /// - /// - /// - public partial class GSSManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.ietf.jgss.GSSManager"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GSSManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSManager() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GSSManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSManager(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region GSSName - /// - /// - /// - public partial class GSSName : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.ietf.jgss.GSSName"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("GSSName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSName() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("GSSName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public GSSName(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MessageProp - /// - /// - /// - public partial class MessageProp : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.ietf.jgss.MessageProp"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public MessageProp() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public MessageProp(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Oid - /// - /// - /// - public partial class Oid : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.ietf.jgss.Oid"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Oid() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Oid(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/ChannelBinding.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/ChannelBinding.cs index 6084664002..134b01da01 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/ChannelBinding.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/ChannelBinding.cs @@ -25,7 +25,52 @@ namespace Org.Ietf.Jgss { - #region ChannelBinding + #region ChannelBinding declaration + /// + /// + /// + public partial class ChannelBinding : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.ietf.jgss.ChannelBinding"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ChannelBinding() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public ChannelBinding(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region ChannelBinding implementation public partial class ChannelBinding { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSContext.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSContext.cs index eaa61c85a5..efe7d92bc9 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSContext.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSContext.cs @@ -25,6 +25,53 @@ namespace Org.Ietf.Jgss { + #region GSSContext declaration + /// + /// + /// + public partial class GSSContext : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.ietf.jgss.GSSContext"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GSSContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSContext() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GSSContext class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSContext(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGSSContext /// /// .NET interface for TO BE DEFINED FROM USER @@ -247,7 +294,7 @@ public partial interface IGSSContext } #endregion - #region GSSContext + #region GSSContext implementation public partial class GSSContext : Org.Ietf.Jgss.IGSSContext { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSCredential.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSCredential.cs index e6652ce629..f96b896f3b 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSCredential.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSCredential.cs @@ -25,6 +25,53 @@ namespace Org.Ietf.Jgss { + #region GSSCredential declaration + /// + /// + /// + public partial class GSSCredential : Java.Lang.Cloneable + { + const string _bridgeClassName = "org.ietf.jgss.GSSCredential"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GSSCredential class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSCredential() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GSSCredential class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSCredential(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGSSCredential /// /// .NET interface for TO BE DEFINED FROM USER @@ -102,7 +149,7 @@ public partial interface IGSSCredential : Java.Lang.ICloneable } #endregion - #region GSSCredential + #region GSSCredential implementation public partial class GSSCredential : Org.Ietf.Jgss.IGSSCredential { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSException.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSException.cs index 30380d5284..d823c51334 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSException.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSException.cs @@ -25,7 +25,24 @@ namespace Org.Ietf.Jgss { - #region GSSException + #region GSSException declaration + /// + /// + /// + public partial class GSSException : Java.Lang.Exception + { + const string _bridgeClassName = "org.ietf.jgss.GSSException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region GSSException implementation public partial class GSSException { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSManager.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSManager.cs index 8d3d12a816..6ce6e154ce 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSManager.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSManager.cs @@ -25,7 +25,54 @@ namespace Org.Ietf.Jgss { - #region GSSManager + #region GSSManager declaration + /// + /// + /// + public partial class GSSManager : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.ietf.jgss.GSSManager"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GSSManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSManager() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GSSManager class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSManager(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region GSSManager implementation public partial class GSSManager { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSName.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSName.cs index a086b71c81..9adce3622f 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/GSSName.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/GSSName.cs @@ -25,6 +25,53 @@ namespace Org.Ietf.Jgss { + #region GSSName declaration + /// + /// + /// + public partial class GSSName : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.ietf.jgss.GSSName"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("GSSName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSName() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("GSSName class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public GSSName(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IGSSName /// /// .NET interface for TO BE DEFINED FROM USER @@ -70,7 +117,7 @@ public partial interface IGSSName } #endregion - #region GSSName + #region GSSName implementation public partial class GSSName : Org.Ietf.Jgss.IGSSName { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/MessageProp.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/MessageProp.cs index 3dfb3a0951..8394f4bd87 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/MessageProp.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/MessageProp.cs @@ -25,7 +25,52 @@ namespace Org.Ietf.Jgss { - #region MessageProp + #region MessageProp declaration + /// + /// + /// + public partial class MessageProp : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.ietf.jgss.MessageProp"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public MessageProp() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public MessageProp(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region MessageProp implementation public partial class MessageProp { #region Constructors diff --git a/src/net/JNet/Generated/Org/Ietf/Jgss/Oid.cs b/src/net/JNet/Generated/Org/Ietf/Jgss/Oid.cs index 0c07a72040..93c0993278 100644 --- a/src/net/JNet/Generated/Org/Ietf/Jgss/Oid.cs +++ b/src/net/JNet/Generated/Org/Ietf/Jgss/Oid.cs @@ -25,7 +25,52 @@ namespace Org.Ietf.Jgss { - #region Oid + #region Oid declaration + /// + /// + /// + public partial class Oid : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.ietf.jgss.Oid"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Oid() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Oid(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Oid implementation public partial class Oid { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/AllPackageClasses.cs deleted file mode 100644 index d5fabb385e..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/AllPackageClasses.cs +++ /dev/null @@ -1,1363 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom -{ - #region Attr - /// - /// - /// - public partial class Attr : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.Attr"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attr() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attr(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CDATASection - /// - /// - /// - public partial class CDATASection : Org.W3c.Dom.Text - { - const string _bridgeClassName = "org.w3c.dom.CDATASection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CDATASection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CDATASection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CDATASection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CDATASection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CharacterData - /// - /// - /// - public partial class CharacterData : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.CharacterData"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CharacterData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharacterData() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CharacterData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CharacterData(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Comment - /// - /// - /// - public partial class Comment : Org.W3c.Dom.CharacterData - { - const string _bridgeClassName = "org.w3c.dom.Comment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Comment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Document - /// - /// - /// - public partial class Document : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.Document"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Document() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Document(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentFragment - /// - /// - /// - public partial class DocumentFragment : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.DocumentFragment"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentFragment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentFragment() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentFragment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentFragment(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentType - /// - /// - /// - public partial class DocumentType : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.DocumentType"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentType() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentType(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMConfiguration - /// - /// - /// - public partial class DOMConfiguration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMConfiguration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMConfiguration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMConfiguration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMError - /// - /// - /// - public partial class DOMError : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMError"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMError class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMError() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMError class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMError(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMErrorHandler - /// - /// - /// - public partial class DOMErrorHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMErrorHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMErrorHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMErrorHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMException - /// - /// - /// - public partial class DOMException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "org.w3c.dom.DOMException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region DOMImplementation - /// - /// - /// - public partial class DOMImplementation : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMImplementation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMImplementationList - /// - /// - /// - public partial class DOMImplementationList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMImplementationList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMImplementationList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMImplementationList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMImplementationSource - /// - /// - /// - public partial class DOMImplementationSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMImplementationSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMImplementationSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMImplementationSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMLocator - /// - /// - /// - public partial class DOMLocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMLocator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMLocator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMLocator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMStringList - /// - /// - /// - public partial class DOMStringList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.DOMStringList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMStringList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMStringList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMStringList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMStringList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Element - /// - /// - /// - public partial class Element : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.Element"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Element() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Element(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementTraversal - /// - /// - /// - public partial class ElementTraversal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ElementTraversal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ElementTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementTraversal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ElementTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementTraversal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Entity - /// - /// - /// - public partial class Entity : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.Entity"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Entity class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entity() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Entity class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Entity(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EntityReference - /// - /// - /// - public partial class EntityReference : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.EntityReference"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityReference() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityReference(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamedNodeMap - /// - /// - /// - public partial class NamedNodeMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.NamedNodeMap"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NamedNodeMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamedNodeMap() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NamedNodeMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NamedNodeMap(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NameList - /// - /// - /// - public partial class NameList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.NameList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NameList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NameList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NameList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NameList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Node - /// - /// - /// - public partial class Node : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.Node"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Node class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Node() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Node class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Node(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NodeList - /// - /// - /// - public partial class NodeList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.NodeList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NodeList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NodeList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Notation - /// - /// - /// - public partial class Notation : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.Notation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Notation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Notation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Notation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Notation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ProcessingInstruction - /// - /// - /// - public partial class ProcessingInstruction : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.ProcessingInstruction"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessingInstruction() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ProcessingInstruction(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Text - /// - /// - /// - public partial class Text : Org.W3c.Dom.CharacterData - { - const string _bridgeClassName = "org.w3c.dom.Text"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Text class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Text() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Text class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Text(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TypeInfo - /// - /// - /// - public partial class TypeInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.TypeInfo"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TypeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeInfo() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TypeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TypeInfo(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UserDataHandler - /// - /// - /// - public partial class UserDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.UserDataHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UserDataHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserDataHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UserDataHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UserDataHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Attr.cs b/src/net/JNet/Generated/Org/W3c/Dom/Attr.cs index 71be56e0a7..3cb16cdeb8 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Attr.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Attr.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Attr declaration + /// + /// + /// + public partial class Attr : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.Attr"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attr() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attr class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attr(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttr /// /// .NET interface for TO BE DEFINED FROM USER @@ -68,7 +115,7 @@ public partial interface IAttr : Org.W3c.Dom.INode } #endregion - #region Attr + #region Attr implementation public partial class Attr : Org.W3c.Dom.IAttr { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/AllPackageClasses.cs deleted file mode 100644 index 64def9db48..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/AllPackageClasses.cs +++ /dev/null @@ -1,75 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Bootstrap -{ - #region DOMImplementationRegistry - /// - /// - /// - public partial class DOMImplementationRegistry : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.bootstrap.DOMImplementationRegistry"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DOMImplementationRegistry() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DOMImplementationRegistry(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/DOMImplementationRegistry.cs b/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/DOMImplementationRegistry.cs index 5ee81f54b9..30e4b2b367 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/DOMImplementationRegistry.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Bootstrap/DOMImplementationRegistry.cs @@ -25,7 +25,52 @@ namespace Org.W3c.Dom.Bootstrap { - #region DOMImplementationRegistry + #region DOMImplementationRegistry declaration + /// + /// + /// + public partial class DOMImplementationRegistry : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.bootstrap.DOMImplementationRegistry"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DOMImplementationRegistry() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DOMImplementationRegistry(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DOMImplementationRegistry implementation public partial class DOMImplementationRegistry { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/CDATASection.cs b/src/net/JNet/Generated/Org/W3c/Dom/CDATASection.cs index 27390be9a6..501224611b 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/CDATASection.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/CDATASection.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region CDATASection declaration + /// + /// + /// + public partial class CDATASection : Org.W3c.Dom.Text + { + const string _bridgeClassName = "org.w3c.dom.CDATASection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CDATASection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CDATASection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CDATASection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CDATASection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICDATASection /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICDATASection : Org.W3c.Dom.IText } #endregion - #region CDATASection + #region CDATASection implementation public partial class CDATASection : Org.W3c.Dom.ICDATASection { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/CharacterData.cs b/src/net/JNet/Generated/Org/W3c/Dom/CharacterData.cs index 71c19e4835..a9ed8d6610 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/CharacterData.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/CharacterData.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region CharacterData declaration + /// + /// + /// + public partial class CharacterData : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.CharacterData"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CharacterData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharacterData() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CharacterData class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CharacterData(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICharacterData /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface ICharacterData : Org.W3c.Dom.INode } #endregion - #region CharacterData + #region CharacterData implementation public partial class CharacterData : Org.W3c.Dom.ICharacterData { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Comment.cs b/src/net/JNet/Generated/Org/W3c/Dom/Comment.cs index 84a54365b0..118e1bc767 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Comment.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Comment.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Comment declaration + /// + /// + /// + public partial class Comment : Org.W3c.Dom.CharacterData + { + const string _bridgeClassName = "org.w3c.dom.Comment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Comment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Comment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IComment /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IComment : Org.W3c.Dom.ICharacterData } #endregion - #region Comment + #region Comment implementation public partial class Comment : Org.W3c.Dom.IComment { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/AllPackageClasses.cs deleted file mode 100644 index 8dcea1e01a..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/AllPackageClasses.cs +++ /dev/null @@ -1,1064 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Css -{ - #region Counter - /// - /// - /// - public partial class Counter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.Counter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Counter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Counter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Counter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Counter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSS2Properties - /// - /// - /// - public partial class CSS2Properties : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.CSS2Properties"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSS2Properties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSS2Properties() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSS2Properties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSS2Properties(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSCharsetRule - /// - /// - /// - public partial class CSSCharsetRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSCharsetRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSCharsetRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSCharsetRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSCharsetRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSCharsetRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSFontFaceRule - /// - /// - /// - public partial class CSSFontFaceRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSFontFaceRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSFontFaceRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSFontFaceRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSFontFaceRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSFontFaceRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSImportRule - /// - /// - /// - public partial class CSSImportRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSImportRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSImportRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSImportRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSImportRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSImportRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSMediaRule - /// - /// - /// - public partial class CSSMediaRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSMediaRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSMediaRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSMediaRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSMediaRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSMediaRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSPageRule - /// - /// - /// - public partial class CSSPageRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSPageRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSPageRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSPageRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSPageRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSPageRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSPrimitiveValue - /// - /// - /// - public partial class CSSPrimitiveValue : Org.W3c.Dom.Css.CSSValue - { - const string _bridgeClassName = "org.w3c.dom.css.CSSPrimitiveValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSPrimitiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSPrimitiveValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSPrimitiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSPrimitiveValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSRule - /// - /// - /// - public partial class CSSRule : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.CSSRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSRuleList - /// - /// - /// - public partial class CSSRuleList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.CSSRuleList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSRuleList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSRuleList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSRuleList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSRuleList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSStyleDeclaration - /// - /// - /// - public partial class CSSStyleDeclaration : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.CSSStyleDeclaration"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSStyleDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSStyleDeclaration() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSStyleDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSStyleDeclaration(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSStyleRule - /// - /// - /// - public partial class CSSStyleRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSStyleRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSStyleRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSStyleRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSStyleRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSStyleRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSStyleSheet - /// - /// - /// - public partial class CSSStyleSheet : Org.W3c.Dom.Stylesheets.StyleSheet - { - const string _bridgeClassName = "org.w3c.dom.css.CSSStyleSheet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSStyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSStyleSheet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSStyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSStyleSheet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSUnknownRule - /// - /// - /// - public partial class CSSUnknownRule : Org.W3c.Dom.Css.CSSRule - { - const string _bridgeClassName = "org.w3c.dom.css.CSSUnknownRule"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSUnknownRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSUnknownRule() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSUnknownRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSUnknownRule(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSValue - /// - /// - /// - public partial class CSSValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.CSSValue"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSValue() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSValue(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region CSSValueList - /// - /// - /// - public partial class CSSValueList : Org.W3c.Dom.Css.CSSValue - { - const string _bridgeClassName = "org.w3c.dom.css.CSSValueList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("CSSValueList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSValueList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("CSSValueList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public CSSValueList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentCSS - /// - /// - /// - public partial class DocumentCSS : Org.W3c.Dom.Stylesheets.DocumentStyle - { - const string _bridgeClassName = "org.w3c.dom.css.DocumentCSS"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentCSS() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentCSS(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DOMImplementationCSS - /// - /// - /// - public partial class DOMImplementationCSS : Org.W3c.Dom.DOMImplementation - { - const string _bridgeClassName = "org.w3c.dom.css.DOMImplementationCSS"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMImplementationCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationCSS() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMImplementationCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationCSS(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ElementCSSInlineStyle - /// - /// - /// - public partial class ElementCSSInlineStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.ElementCSSInlineStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ElementCSSInlineStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementCSSInlineStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ElementCSSInlineStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ElementCSSInlineStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Rect - /// - /// - /// - public partial class Rect : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.Rect"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Rect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Rect() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Rect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Rect(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RGBColor - /// - /// - /// - public partial class RGBColor : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.css.RGBColor"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("RGBColor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RGBColor() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("RGBColor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public RGBColor(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ViewCSS - /// - /// - /// - public partial class ViewCSS : Org.W3c.Dom.Views.AbstractView - { - const string _bridgeClassName = "org.w3c.dom.css.ViewCSS"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ViewCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ViewCSS() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ViewCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ViewCSS(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSS2Properties.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSS2Properties.cs index 26a1e575fa..709e74eff1 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSS2Properties.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSS2Properties.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSS2Properties declaration + /// + /// + /// + public partial class CSS2Properties : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.CSS2Properties"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSS2Properties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSS2Properties() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSS2Properties class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSS2Properties(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSS2Properties /// /// .NET interface for TO BE DEFINED FROM USER @@ -531,7 +578,7 @@ public partial interface ICSS2Properties } #endregion - #region CSS2Properties + #region CSS2Properties implementation public partial class CSS2Properties : Org.W3c.Dom.Css.ICSS2Properties { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSCharsetRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSCharsetRule.cs index ee0c0f31da..1b715bf07c 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSCharsetRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSCharsetRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSCharsetRule declaration + /// + /// + /// + public partial class CSSCharsetRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSCharsetRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSCharsetRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSCharsetRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSCharsetRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSCharsetRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSCharsetRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ICSSCharsetRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSCharsetRule + #region CSSCharsetRule implementation public partial class CSSCharsetRule : Org.W3c.Dom.Css.ICSSCharsetRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSFontFaceRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSFontFaceRule.cs index 112e8ff177..ac008c627d 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSFontFaceRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSFontFaceRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSFontFaceRule declaration + /// + /// + /// + public partial class CSSFontFaceRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSFontFaceRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSFontFaceRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSFontFaceRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSFontFaceRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSFontFaceRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSFontFaceRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ICSSFontFaceRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSFontFaceRule + #region CSSFontFaceRule implementation public partial class CSSFontFaceRule : Org.W3c.Dom.Css.ICSSFontFaceRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSImportRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSImportRule.cs index 054aa06a23..2de1a2dcbd 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSImportRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSImportRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSImportRule declaration + /// + /// + /// + public partial class CSSImportRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSImportRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSImportRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSImportRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSImportRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSImportRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSImportRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ICSSImportRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSImportRule + #region CSSImportRule implementation public partial class CSSImportRule : Org.W3c.Dom.Css.ICSSImportRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSMediaRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSMediaRule.cs index e4d28c126c..ddd8b59c41 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSMediaRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSMediaRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSMediaRule declaration + /// + /// + /// + public partial class CSSMediaRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSMediaRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSMediaRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSMediaRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSMediaRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSMediaRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSMediaRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface ICSSMediaRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSMediaRule + #region CSSMediaRule implementation public partial class CSSMediaRule : Org.W3c.Dom.Css.ICSSMediaRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPageRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPageRule.cs index 0f09cd9761..1348b71580 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPageRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPageRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSPageRule declaration + /// + /// + /// + public partial class CSSPageRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSPageRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSPageRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSPageRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSPageRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSPageRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSPageRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ICSSPageRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSPageRule + #region CSSPageRule implementation public partial class CSSPageRule : Org.W3c.Dom.Css.ICSSPageRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPrimitiveValue.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPrimitiveValue.cs index adb9937e70..fd218772a3 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPrimitiveValue.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSPrimitiveValue.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSPrimitiveValue declaration + /// + /// + /// + public partial class CSSPrimitiveValue : Org.W3c.Dom.Css.CSSValue + { + const string _bridgeClassName = "org.w3c.dom.css.CSSPrimitiveValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSPrimitiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSPrimitiveValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSPrimitiveValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSPrimitiveValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSPrimitiveValue /// /// .NET interface for TO BE DEFINED FROM USER @@ -84,7 +131,7 @@ public partial interface ICSSPrimitiveValue : Org.W3c.Dom.Css.ICSSValue } #endregion - #region CSSPrimitiveValue + #region CSSPrimitiveValue implementation public partial class CSSPrimitiveValue : Org.W3c.Dom.Css.ICSSPrimitiveValue { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRule.cs index 480924bf96..ff3f13cbf4 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSRule declaration + /// + /// + /// + public partial class CSSRule : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.CSSRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ICSSRule } #endregion - #region CSSRule + #region CSSRule implementation public partial class CSSRule : Org.W3c.Dom.Css.ICSSRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRuleList.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRuleList.cs index 5599e23002..3e10b5f6a7 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRuleList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSRuleList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSRuleList declaration + /// + /// + /// + public partial class CSSRuleList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.CSSRuleList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSRuleList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSRuleList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSRuleList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSRuleList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSRuleList /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ICSSRuleList } #endregion - #region CSSRuleList + #region CSSRuleList implementation public partial class CSSRuleList : Org.W3c.Dom.Css.ICSSRuleList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleDeclaration.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleDeclaration.cs index 857c58c1de..71e19c2b14 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleDeclaration.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleDeclaration.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSStyleDeclaration declaration + /// + /// + /// + public partial class CSSStyleDeclaration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.CSSStyleDeclaration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSStyleDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSStyleDeclaration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSStyleDeclaration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSStyleDeclaration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSStyleDeclaration /// /// .NET interface for TO BE DEFINED FROM USER @@ -94,7 +141,7 @@ public partial interface ICSSStyleDeclaration } #endregion - #region CSSStyleDeclaration + #region CSSStyleDeclaration implementation public partial class CSSStyleDeclaration : Org.W3c.Dom.Css.ICSSStyleDeclaration { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleRule.cs index 0d4aeedd9f..792eb2d659 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSStyleRule declaration + /// + /// + /// + public partial class CSSStyleRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSStyleRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSStyleRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSStyleRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSStyleRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSStyleRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSStyleRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ICSSStyleRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSStyleRule + #region CSSStyleRule implementation public partial class CSSStyleRule : Org.W3c.Dom.Css.ICSSStyleRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleSheet.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleSheet.cs index 5244f2c1f8..5feafc8133 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleSheet.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSStyleSheet.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSStyleSheet declaration + /// + /// + /// + public partial class CSSStyleSheet : Org.W3c.Dom.Stylesheets.StyleSheet + { + const string _bridgeClassName = "org.w3c.dom.css.CSSStyleSheet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSStyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSStyleSheet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSStyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSStyleSheet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSStyleSheet /// /// .NET interface for TO BE DEFINED FROM USER @@ -65,7 +112,7 @@ public partial interface ICSSStyleSheet : Org.W3c.Dom.Stylesheets.IStyleSheet } #endregion - #region CSSStyleSheet + #region CSSStyleSheet implementation public partial class CSSStyleSheet : Org.W3c.Dom.Css.ICSSStyleSheet { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSUnknownRule.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSUnknownRule.cs index b07494941c..2d0f37b661 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSUnknownRule.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSUnknownRule.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSUnknownRule declaration + /// + /// + /// + public partial class CSSUnknownRule : Org.W3c.Dom.Css.CSSRule + { + const string _bridgeClassName = "org.w3c.dom.css.CSSUnknownRule"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSUnknownRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSUnknownRule() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSUnknownRule class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSUnknownRule(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSUnknownRule /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface ICSSUnknownRule : Org.W3c.Dom.Css.ICSSRule } #endregion - #region CSSUnknownRule + #region CSSUnknownRule implementation public partial class CSSUnknownRule : Org.W3c.Dom.Css.ICSSUnknownRule { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValue.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValue.cs index f70ac6be5a..0540beba59 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValue.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValue.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSValue declaration + /// + /// + /// + public partial class CSSValue : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.CSSValue"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSValue() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSValue class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSValue(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSValue /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ICSSValue } #endregion - #region CSSValue + #region CSSValue implementation public partial class CSSValue : Org.W3c.Dom.Css.ICSSValue { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValueList.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValueList.cs index d6b47eeddb..11cf334f39 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValueList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/CSSValueList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region CSSValueList declaration + /// + /// + /// + public partial class CSSValueList : Org.W3c.Dom.Css.CSSValue + { + const string _bridgeClassName = "org.w3c.dom.css.CSSValueList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("CSSValueList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSValueList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("CSSValueList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public CSSValueList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICSSValueList /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ICSSValueList : Org.W3c.Dom.Css.ICSSValue } #endregion - #region CSSValueList + #region CSSValueList implementation public partial class CSSValueList : Org.W3c.Dom.Css.ICSSValueList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/Counter.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/Counter.cs index 99a0f097ad..9578236c4b 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/Counter.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/Counter.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region Counter declaration + /// + /// + /// + public partial class Counter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.Counter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Counter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Counter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Counter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Counter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ICounter /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ICounter } #endregion - #region Counter + #region Counter implementation public partial class Counter : Org.W3c.Dom.Css.ICounter { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/DOMImplementationCSS.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/DOMImplementationCSS.cs index d222a00405..bd7f4198f6 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/DOMImplementationCSS.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/DOMImplementationCSS.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region DOMImplementationCSS declaration + /// + /// + /// + public partial class DOMImplementationCSS : Org.W3c.Dom.DOMImplementation + { + const string _bridgeClassName = "org.w3c.dom.css.DOMImplementationCSS"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMImplementationCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationCSS() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMImplementationCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationCSS(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMImplementationCSS /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IDOMImplementationCSS : Org.W3c.Dom.IDOMImplementation } #endregion - #region DOMImplementationCSS + #region DOMImplementationCSS implementation public partial class DOMImplementationCSS : Org.W3c.Dom.Css.IDOMImplementationCSS { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/DocumentCSS.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/DocumentCSS.cs index 7b4d27d0d3..8b4ed570cb 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/DocumentCSS.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/DocumentCSS.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region DocumentCSS declaration + /// + /// + /// + public partial class DocumentCSS : Org.W3c.Dom.Stylesheets.DocumentStyle + { + const string _bridgeClassName = "org.w3c.dom.css.DocumentCSS"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentCSS() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentCSS(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentCSS /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IDocumentCSS : Org.W3c.Dom.Stylesheets.IDocumentStyle } #endregion - #region DocumentCSS + #region DocumentCSS implementation public partial class DocumentCSS : Org.W3c.Dom.Css.IDocumentCSS { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/ElementCSSInlineStyle.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/ElementCSSInlineStyle.cs index 75d6693674..7b203dbcc9 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/ElementCSSInlineStyle.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/ElementCSSInlineStyle.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region ElementCSSInlineStyle declaration + /// + /// + /// + public partial class ElementCSSInlineStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.ElementCSSInlineStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ElementCSSInlineStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementCSSInlineStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ElementCSSInlineStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementCSSInlineStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IElementCSSInlineStyle /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IElementCSSInlineStyle } #endregion - #region ElementCSSInlineStyle + #region ElementCSSInlineStyle implementation public partial class ElementCSSInlineStyle : Org.W3c.Dom.Css.IElementCSSInlineStyle { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/RGBColor.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/RGBColor.cs index f34eb038a0..1d830c9f28 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/RGBColor.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/RGBColor.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region RGBColor declaration + /// + /// + /// + public partial class RGBColor : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.RGBColor"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("RGBColor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RGBColor() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("RGBColor class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public RGBColor(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRGBColor /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IRGBColor } #endregion - #region RGBColor + #region RGBColor implementation public partial class RGBColor : Org.W3c.Dom.Css.IRGBColor { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/Rect.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/Rect.cs index d2272ca5b3..782a9e1875 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/Rect.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/Rect.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region Rect declaration + /// + /// + /// + public partial class Rect : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.css.Rect"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Rect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Rect() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Rect class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Rect(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRect /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IRect } #endregion - #region Rect + #region Rect implementation public partial class Rect : Org.W3c.Dom.Css.IRect { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Css/ViewCSS.cs b/src/net/JNet/Generated/Org/W3c/Dom/Css/ViewCSS.cs index 1260ca790c..cf7f6e5e25 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Css/ViewCSS.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Css/ViewCSS.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Css { + #region ViewCSS declaration + /// + /// + /// + public partial class ViewCSS : Org.W3c.Dom.Views.AbstractView + { + const string _bridgeClassName = "org.w3c.dom.css.ViewCSS"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ViewCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ViewCSS() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ViewCSS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ViewCSS(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IViewCSS /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IViewCSS : Org.W3c.Dom.Views.IAbstractView } #endregion - #region ViewCSS + #region ViewCSS implementation public partial class ViewCSS : Org.W3c.Dom.Css.IViewCSS { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMConfiguration.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMConfiguration.cs index b7e5f09b15..4192c83c76 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMConfiguration.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMConfiguration.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMConfiguration declaration + /// + /// + /// + public partial class DOMConfiguration : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMConfiguration"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMConfiguration() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMConfiguration class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMConfiguration(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMConfiguration /// /// .NET interface for TO BE DEFINED FROM USER @@ -68,7 +115,7 @@ public partial interface IDOMConfiguration } #endregion - #region DOMConfiguration + #region DOMConfiguration implementation public partial class DOMConfiguration : Org.W3c.Dom.IDOMConfiguration { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMError.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMError.cs index 3890e2385c..ab10eeff19 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMError.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMError.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMError declaration + /// + /// + /// + public partial class DOMError : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMError"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMError class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMError() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMError class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMError(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMError /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IDOMError } #endregion - #region DOMError + #region DOMError implementation public partial class DOMError : Org.W3c.Dom.IDOMError { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMErrorHandler.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMErrorHandler.cs index bfe41d413c..713890f7e5 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMErrorHandler.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMErrorHandler.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMErrorHandler declaration + /// + /// + /// + public partial class DOMErrorHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMErrorHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMErrorHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMErrorHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMErrorHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IDOMErrorHandler } #endregion - #region DOMErrorHandler + #region DOMErrorHandler implementation public partial class DOMErrorHandler : Org.W3c.Dom.IDOMErrorHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMException.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMException.cs index 6328f12c7e..ae1f82a6c7 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMException.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMException.cs @@ -25,7 +25,24 @@ namespace Org.W3c.Dom { - #region DOMException + #region DOMException declaration + /// + /// + /// + public partial class DOMException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "org.w3c.dom.DOMException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region DOMException implementation public partial class DOMException { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementation.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementation.cs index ba5838f52d..6393a08da5 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementation.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementation.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMImplementation declaration + /// + /// + /// + public partial class DOMImplementation : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMImplementation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMImplementation /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IDOMImplementation } #endregion - #region DOMImplementation + #region DOMImplementation implementation public partial class DOMImplementation : Org.W3c.Dom.IDOMImplementation { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationList.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationList.cs index edc58bab3d..ad401f6ea0 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMImplementationList declaration + /// + /// + /// + public partial class DOMImplementationList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMImplementationList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMImplementationList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMImplementationList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMImplementationList /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IDOMImplementationList } #endregion - #region DOMImplementationList + #region DOMImplementationList implementation public partial class DOMImplementationList : Org.W3c.Dom.IDOMImplementationList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationSource.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationSource.cs index 1a33aebf04..4327e840f9 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationSource.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMImplementationSource.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMImplementationSource declaration + /// + /// + /// + public partial class DOMImplementationSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMImplementationSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMImplementationSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMImplementationSource class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMImplementationSource /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IDOMImplementationSource } #endregion - #region DOMImplementationSource + #region DOMImplementationSource implementation public partial class DOMImplementationSource : Org.W3c.Dom.IDOMImplementationSource { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMLocator.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMLocator.cs index 21c927f25d..7828967ea8 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMLocator.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMLocator.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMLocator declaration + /// + /// + /// + public partial class DOMLocator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMLocator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMLocator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMLocator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMLocator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMLocator /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IDOMLocator } #endregion - #region DOMLocator + #region DOMLocator implementation public partial class DOMLocator : Org.W3c.Dom.IDOMLocator { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DOMStringList.cs b/src/net/JNet/Generated/Org/W3c/Dom/DOMStringList.cs index 71fcf9cec0..c9faa174fe 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DOMStringList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DOMStringList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DOMStringList declaration + /// + /// + /// + public partial class DOMStringList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.DOMStringList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMStringList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMStringList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMStringList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMStringList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMStringList /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IDOMStringList } #endregion - #region DOMStringList + #region DOMStringList implementation public partial class DOMStringList : Org.W3c.Dom.IDOMStringList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Document.cs b/src/net/JNet/Generated/Org/W3c/Dom/Document.cs index 72f77532c2..18100ef7db 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Document.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Document.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Document declaration + /// + /// + /// + public partial class Document : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.Document"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Document() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Document class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Document(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocument /// /// .NET interface for TO BE DEFINED FROM USER @@ -199,7 +246,7 @@ public partial interface IDocument : Org.W3c.Dom.INode } #endregion - #region Document + #region Document implementation public partial class Document : Org.W3c.Dom.IDocument { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DocumentFragment.cs b/src/net/JNet/Generated/Org/W3c/Dom/DocumentFragment.cs index fb49d2ae69..34927c78dc 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DocumentFragment.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DocumentFragment.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DocumentFragment declaration + /// + /// + /// + public partial class DocumentFragment : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.DocumentFragment"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentFragment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentFragment() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentFragment class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentFragment(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentFragment /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IDocumentFragment : Org.W3c.Dom.INode } #endregion - #region DocumentFragment + #region DocumentFragment implementation public partial class DocumentFragment : Org.W3c.Dom.IDocumentFragment { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/DocumentType.cs b/src/net/JNet/Generated/Org/W3c/Dom/DocumentType.cs index f9548e1b3a..e440c8682b 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/DocumentType.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/DocumentType.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region DocumentType declaration + /// + /// + /// + public partial class DocumentType : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.DocumentType"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentType() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentType class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentType(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentType /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IDocumentType : Org.W3c.Dom.INode } #endregion - #region DocumentType + #region DocumentType implementation public partial class DocumentType : Org.W3c.Dom.IDocumentType { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Element.cs b/src/net/JNet/Generated/Org/W3c/Dom/Element.cs index ddc3a30de9..eba6332337 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Element.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Element.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Element declaration + /// + /// + /// + public partial class Element : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.Element"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Element() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Element class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Element(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -178,7 +225,7 @@ public partial interface IElement : Org.W3c.Dom.INode } #endregion - #region Element + #region Element implementation public partial class Element : Org.W3c.Dom.IElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/ElementTraversal.cs b/src/net/JNet/Generated/Org/W3c/Dom/ElementTraversal.cs index 7e50791f8a..df1ae104a5 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/ElementTraversal.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/ElementTraversal.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region ElementTraversal declaration + /// + /// + /// + public partial class ElementTraversal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ElementTraversal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ElementTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementTraversal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ElementTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ElementTraversal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IElementTraversal /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IElementTraversal } #endregion - #region ElementTraversal + #region ElementTraversal implementation public partial class ElementTraversal : Org.W3c.Dom.IElementTraversal { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Entity.cs b/src/net/JNet/Generated/Org/W3c/Dom/Entity.cs index 80e9be132e..28518dc6f6 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Entity.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Entity.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Entity declaration + /// + /// + /// + public partial class Entity : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.Entity"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Entity class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entity() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Entity class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Entity(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEntity /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IEntity : Org.W3c.Dom.INode } #endregion - #region Entity + #region Entity implementation public partial class Entity : Org.W3c.Dom.IEntity { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/EntityReference.cs b/src/net/JNet/Generated/Org/W3c/Dom/EntityReference.cs index 1cbe6d71df..c643afb098 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/EntityReference.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/EntityReference.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region EntityReference declaration + /// + /// + /// + public partial class EntityReference : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.EntityReference"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityReference() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EntityReference class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityReference(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEntityReference /// /// .NET interface for TO BE DEFINED FROM USER @@ -43,7 +90,7 @@ public partial interface IEntityReference : Org.W3c.Dom.INode } #endregion - #region EntityReference + #region EntityReference implementation public partial class EntityReference : Org.W3c.Dom.IEntityReference { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/AllPackageClasses.cs deleted file mode 100644 index 2f7b862b21..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/AllPackageClasses.cs +++ /dev/null @@ -1,396 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Events -{ - #region DocumentEvent - /// - /// - /// - public partial class DocumentEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.events.DocumentEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Event - /// - /// - /// - public partial class Event : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.events.Event"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Event class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Event() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Event class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Event(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EventException - /// - /// - /// - public partial class EventException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "org.w3c.dom.events.EventException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region EventListener - /// - /// - /// - public partial class EventListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public EventListener() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.org.w3c.dom.events.EventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region EventListenerDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class EventListenerDirect : EventListener - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "org.w3c.dom.events.EventListener"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region EventTarget - /// - /// - /// - public partial class EventTarget : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.events.EventTarget"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EventTarget class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventTarget() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EventTarget class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EventTarget(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MouseEvent - /// - /// - /// - public partial class MouseEvent : Org.W3c.Dom.Events.UIEvent - { - const string _bridgeClassName = "org.w3c.dom.events.MouseEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MouseEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MouseEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MouseEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MouseEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MutationEvent - /// - /// - /// - public partial class MutationEvent : Org.W3c.Dom.Events.Event - { - const string _bridgeClassName = "org.w3c.dom.events.MutationEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MutationEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutationEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MutationEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MutationEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region UIEvent - /// - /// - /// - public partial class UIEvent : Org.W3c.Dom.Events.Event - { - const string _bridgeClassName = "org.w3c.dom.events.UIEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("UIEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UIEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("UIEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public UIEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/DocumentEvent.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/DocumentEvent.cs index 0314ae454b..d8795b373e 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/DocumentEvent.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/DocumentEvent.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Events { + #region DocumentEvent declaration + /// + /// + /// + public partial class DocumentEvent : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.events.DocumentEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -50,7 +97,7 @@ public partial interface IDocumentEvent } #endregion - #region DocumentEvent + #region DocumentEvent implementation public partial class DocumentEvent : Org.W3c.Dom.Events.IDocumentEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/Event.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/Event.cs index 60d097e914..27d1581cc2 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/Event.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/Event.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Events { + #region Event declaration + /// + /// + /// + public partial class Event : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.events.Event"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Event class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Event() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Event class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Event(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -86,7 +133,7 @@ public partial interface IEvent } #endregion - #region Event + #region Event implementation public partial class Event : Org.W3c.Dom.Events.IEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/EventException.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/EventException.cs index cb491822c9..230c6df1ab 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/EventException.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/EventException.cs @@ -25,7 +25,24 @@ namespace Org.W3c.Dom.Events { - #region EventException + #region EventException declaration + /// + /// + /// + public partial class EventException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "org.w3c.dom.events.EventException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region EventException implementation public partial class EventException { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/EventListener.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/EventListener.cs index 5b6e49e9de..d19aea5898 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/EventListener.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/EventListener.cs @@ -25,6 +25,73 @@ namespace Org.W3c.Dom.Events { + #region EventListener declaration + /// + /// + /// + public partial class EventListener : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public EventListener() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.org.w3c.dom.events.EventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region EventListenerDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class EventListenerDirect : EventListener + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "org.w3c.dom.events.EventListener"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + #region IEventListener /// /// .NET interface for org.mases.jnet.generated.org.w3c.dom.events.EventListener implementing @@ -48,7 +115,7 @@ public partial interface IEventListener } #endregion - #region EventListener + #region EventListener implementation public partial class EventListener : Org.W3c.Dom.Events.IEventListener { #region Constructors @@ -108,7 +175,7 @@ public virtual void HandleEvent(Org.W3c.Dom.Events.Event arg0) } #endregion - #region EventListenerDirect + #region EventListenerDirect implementation public partial class EventListenerDirect : Org.W3c.Dom.Events.IEventListener { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/EventTarget.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/EventTarget.cs index 6d9635d102..2161300eb4 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/EventTarget.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/EventTarget.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Events { + #region EventTarget declaration + /// + /// + /// + public partial class EventTarget : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.events.EventTarget"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EventTarget class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventTarget() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EventTarget class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EventTarget(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEventTarget /// /// .NET interface for TO BE DEFINED FROM USER @@ -64,7 +111,7 @@ public partial interface IEventTarget } #endregion - #region EventTarget + #region EventTarget implementation public partial class EventTarget : Org.W3c.Dom.Events.IEventTarget { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/MouseEvent.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/MouseEvent.cs index 320d7736ad..021a430f9f 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/MouseEvent.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/MouseEvent.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Events { + #region MouseEvent declaration + /// + /// + /// + public partial class MouseEvent : Org.W3c.Dom.Events.UIEvent + { + const string _bridgeClassName = "org.w3c.dom.events.MouseEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MouseEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MouseEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MouseEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MouseEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMouseEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -102,7 +149,7 @@ public partial interface IMouseEvent : Org.W3c.Dom.Events.IUIEvent } #endregion - #region MouseEvent + #region MouseEvent implementation public partial class MouseEvent : Org.W3c.Dom.Events.IMouseEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/MutationEvent.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/MutationEvent.cs index 1f87bee60d..fc58209ae2 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/MutationEvent.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/MutationEvent.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Events { + #region MutationEvent declaration + /// + /// + /// + public partial class MutationEvent : Org.W3c.Dom.Events.Event + { + const string _bridgeClassName = "org.w3c.dom.events.MutationEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MutationEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutationEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MutationEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MutationEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMutationEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IMutationEvent : Org.W3c.Dom.Events.IEvent } #endregion - #region MutationEvent + #region MutationEvent implementation public partial class MutationEvent : Org.W3c.Dom.Events.IMutationEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Events/UIEvent.cs b/src/net/JNet/Generated/Org/W3c/Dom/Events/UIEvent.cs index 87926090f7..86bd5946ea 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Events/UIEvent.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Events/UIEvent.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Events { + #region UIEvent declaration + /// + /// + /// + public partial class UIEvent : Org.W3c.Dom.Events.Event + { + const string _bridgeClassName = "org.w3c.dom.events.UIEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UIEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UIEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UIEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UIEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUIEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IUIEvent : Org.W3c.Dom.Events.IEvent } #endregion - #region UIEvent + #region UIEvent implementation public partial class UIEvent : Org.W3c.Dom.Events.IUIEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/AllPackageClasses.cs deleted file mode 100644 index 52dccf234d..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/AllPackageClasses.cs +++ /dev/null @@ -1,2662 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Html -{ - #region HTMLAnchorElement - /// - /// - /// - public partial class HTMLAnchorElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLAnchorElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLAnchorElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLAnchorElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLAnchorElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLAnchorElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLAppletElement - /// - /// - /// - public partial class HTMLAppletElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLAppletElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLAppletElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLAppletElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLAppletElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLAppletElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLAreaElement - /// - /// - /// - public partial class HTMLAreaElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLAreaElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLAreaElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLAreaElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLBaseElement - /// - /// - /// - public partial class HTMLBaseElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLBaseElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLBaseElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBaseElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLBaseElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBaseElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLBaseFontElement - /// - /// - /// - public partial class HTMLBaseFontElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLBaseFontElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLBaseFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBaseFontElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLBaseFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBaseFontElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLBodyElement - /// - /// - /// - public partial class HTMLBodyElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLBodyElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLBodyElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBodyElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLBodyElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBodyElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLBRElement - /// - /// - /// - public partial class HTMLBRElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLBRElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLBRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBRElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLBRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLBRElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLButtonElement - /// - /// - /// - public partial class HTMLButtonElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLButtonElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLButtonElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLButtonElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLButtonElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLButtonElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLCollection - /// - /// - /// - public partial class HTMLCollection : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLCollection"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLCollection() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLCollection(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLDirectoryElement - /// - /// - /// - public partial class HTMLDirectoryElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLDirectoryElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLDirectoryElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDirectoryElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLDirectoryElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDirectoryElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLDivElement - /// - /// - /// - public partial class HTMLDivElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLDivElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLDivElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDivElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLDivElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDivElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLDListElement - /// - /// - /// - public partial class HTMLDListElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLDListElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLDListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDListElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLDListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDListElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLDocument - /// - /// - /// - public partial class HTMLDocument : Org.W3c.Dom.Document - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLDocument"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDocument() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDocument(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLDOMImplementation - /// - /// - /// - public partial class HTMLDOMImplementation : Org.W3c.Dom.DOMImplementation - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLDOMImplementation"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLDOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDOMImplementation() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLDOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLDOMImplementation(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLElement - /// - /// - /// - public partial class HTMLElement : Org.W3c.Dom.Element - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLFieldSetElement - /// - /// - /// - public partial class HTMLFieldSetElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLFieldSetElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLFieldSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFieldSetElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLFieldSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFieldSetElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLFontElement - /// - /// - /// - public partial class HTMLFontElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLFontElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFontElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFontElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLFormElement - /// - /// - /// - public partial class HTMLFormElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLFormElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLFormElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFormElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLFormElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFormElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLFrameElement - /// - /// - /// - public partial class HTMLFrameElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLFrameElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFrameElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFrameElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLFrameSetElement - /// - /// - /// - public partial class HTMLFrameSetElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLFrameSetElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLFrameSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFrameSetElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLFrameSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLFrameSetElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLHeadElement - /// - /// - /// - public partial class HTMLHeadElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLHeadElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLHeadElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHeadElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLHeadElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHeadElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLHeadingElement - /// - /// - /// - public partial class HTMLHeadingElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLHeadingElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLHeadingElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHeadingElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLHeadingElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHeadingElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLHRElement - /// - /// - /// - public partial class HTMLHRElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLHRElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLHRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHRElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLHRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHRElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLHtmlElement - /// - /// - /// - public partial class HTMLHtmlElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLHtmlElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLHtmlElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHtmlElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLHtmlElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLHtmlElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLIFrameElement - /// - /// - /// - public partial class HTMLIFrameElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLIFrameElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLIFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLIFrameElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLIFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLIFrameElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLImageElement - /// - /// - /// - public partial class HTMLImageElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLImageElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLImageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLImageElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLImageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLImageElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLInputElement - /// - /// - /// - public partial class HTMLInputElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLInputElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLInputElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLInputElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLInputElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLInputElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLIsIndexElement - /// - /// - /// - public partial class HTMLIsIndexElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLIsIndexElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLIsIndexElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLIsIndexElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLIsIndexElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLIsIndexElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLLabelElement - /// - /// - /// - public partial class HTMLLabelElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLLabelElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLLabelElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLabelElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLLabelElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLabelElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLLegendElement - /// - /// - /// - public partial class HTMLLegendElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLLegendElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLLegendElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLegendElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLLegendElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLegendElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLLIElement - /// - /// - /// - public partial class HTMLLIElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLLIElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLLIElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLIElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLLIElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLIElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLLinkElement - /// - /// - /// - public partial class HTMLLinkElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLLinkElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLLinkElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLinkElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLLinkElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLLinkElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLMapElement - /// - /// - /// - public partial class HTMLMapElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLMapElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLMapElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLMapElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLMapElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLMapElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLMenuElement - /// - /// - /// - public partial class HTMLMenuElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLMenuElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLMenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLMenuElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLMenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLMenuElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLMetaElement - /// - /// - /// - public partial class HTMLMetaElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLMetaElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLMetaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLMetaElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLMetaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLMetaElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLModElement - /// - /// - /// - public partial class HTMLModElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLModElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLModElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLModElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLModElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLModElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLObjectElement - /// - /// - /// - public partial class HTMLObjectElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLObjectElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLObjectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLObjectElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLObjectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLObjectElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLOListElement - /// - /// - /// - public partial class HTMLOListElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLOListElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLOListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLOListElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLOListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLOListElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLOptGroupElement - /// - /// - /// - public partial class HTMLOptGroupElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLOptGroupElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLOptGroupElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLOptGroupElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLOptGroupElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLOptGroupElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLOptionElement - /// - /// - /// - public partial class HTMLOptionElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLOptionElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLOptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLOptionElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLOptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLOptionElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLParagraphElement - /// - /// - /// - public partial class HTMLParagraphElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLParagraphElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLParagraphElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLParagraphElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLParagraphElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLParagraphElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLParamElement - /// - /// - /// - public partial class HTMLParamElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLParamElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLParamElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLParamElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLParamElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLParamElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLPreElement - /// - /// - /// - public partial class HTMLPreElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLPreElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLPreElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLPreElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLPreElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLPreElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLQuoteElement - /// - /// - /// - public partial class HTMLQuoteElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLQuoteElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLQuoteElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLQuoteElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLQuoteElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLQuoteElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLScriptElement - /// - /// - /// - public partial class HTMLScriptElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLScriptElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLScriptElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLScriptElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLScriptElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLScriptElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLSelectElement - /// - /// - /// - public partial class HTMLSelectElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLSelectElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLSelectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLSelectElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLSelectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLSelectElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLStyleElement - /// - /// - /// - public partial class HTMLStyleElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLStyleElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLStyleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLStyleElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLStyleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLStyleElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTableCaptionElement - /// - /// - /// - public partial class HTMLTableCaptionElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTableCaptionElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTableCaptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableCaptionElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTableCaptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableCaptionElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTableCellElement - /// - /// - /// - public partial class HTMLTableCellElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTableCellElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTableCellElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableCellElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTableCellElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableCellElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTableColElement - /// - /// - /// - public partial class HTMLTableColElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTableColElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTableColElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableColElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTableColElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableColElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTableElement - /// - /// - /// - public partial class HTMLTableElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTableElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTableRowElement - /// - /// - /// - public partial class HTMLTableRowElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTableRowElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTableRowElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableRowElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTableRowElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableRowElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTableSectionElement - /// - /// - /// - public partial class HTMLTableSectionElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTableSectionElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTableSectionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableSectionElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTableSectionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTableSectionElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTextAreaElement - /// - /// - /// - public partial class HTMLTextAreaElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTextAreaElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTextAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTextAreaElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTextAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTextAreaElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLTitleElement - /// - /// - /// - public partial class HTMLTitleElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLTitleElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLTitleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTitleElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLTitleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLTitleElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region HTMLUListElement - /// - /// - /// - public partial class HTMLUListElement : Org.W3c.Dom.Html.HTMLElement - { - const string _bridgeClassName = "org.w3c.dom.html.HTMLUListElement"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("HTMLUListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLUListElement() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("HTMLUListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public HTMLUListElement(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAnchorElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAnchorElement.cs index de14584482..5286901ed2 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAnchorElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAnchorElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLAnchorElement declaration + /// + /// + /// + public partial class HTMLAnchorElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLAnchorElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLAnchorElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLAnchorElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLAnchorElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLAnchorElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLAnchorElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -99,7 +146,7 @@ public partial interface IHTMLAnchorElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLAnchorElement + #region HTMLAnchorElement implementation public partial class HTMLAnchorElement : Org.W3c.Dom.Html.IHTMLAnchorElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAppletElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAppletElement.cs index 351479c076..725707dbc1 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAppletElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAppletElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLAppletElement declaration + /// + /// + /// + public partial class HTMLAppletElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLAppletElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLAppletElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLAppletElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLAppletElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLAppletElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLAppletElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface IHTMLAppletElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLAppletElement + #region HTMLAppletElement implementation public partial class HTMLAppletElement : Org.W3c.Dom.Html.IHTMLAppletElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAreaElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAreaElement.cs index 8f2328ba57..2ff7eab239 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAreaElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLAreaElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLAreaElement declaration + /// + /// + /// + public partial class HTMLAreaElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLAreaElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLAreaElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLAreaElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLAreaElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IHTMLAreaElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLAreaElement + #region HTMLAreaElement implementation public partial class HTMLAreaElement : Org.W3c.Dom.Html.IHTMLAreaElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBRElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBRElement.cs index 2297e28f34..4b4643b80a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBRElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBRElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLBRElement declaration + /// + /// + /// + public partial class HTMLBRElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLBRElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLBRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBRElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLBRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBRElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLBRElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLBRElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLBRElement + #region HTMLBRElement implementation public partial class HTMLBRElement : Org.W3c.Dom.Html.IHTMLBRElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseElement.cs index c39ce9a296..efe15f0b10 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLBaseElement declaration + /// + /// + /// + public partial class HTMLBaseElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLBaseElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLBaseElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBaseElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLBaseElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBaseElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLBaseElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLBaseElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLBaseElement + #region HTMLBaseElement implementation public partial class HTMLBaseElement : Org.W3c.Dom.Html.IHTMLBaseElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseFontElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseFontElement.cs index d7a7de9c20..d3caba16dd 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseFontElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBaseFontElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLBaseFontElement declaration + /// + /// + /// + public partial class HTMLBaseFontElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLBaseFontElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLBaseFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBaseFontElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLBaseFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBaseFontElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLBaseFontElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IHTMLBaseFontElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLBaseFontElement + #region HTMLBaseFontElement implementation public partial class HTMLBaseFontElement : Org.W3c.Dom.Html.IHTMLBaseFontElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBodyElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBodyElement.cs index 46203afe8e..a829f058c2 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBodyElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLBodyElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLBodyElement declaration + /// + /// + /// + public partial class HTMLBodyElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLBodyElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLBodyElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBodyElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLBodyElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLBodyElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLBodyElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IHTMLBodyElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLBodyElement + #region HTMLBodyElement implementation public partial class HTMLBodyElement : Org.W3c.Dom.Html.IHTMLBodyElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLButtonElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLButtonElement.cs index 58b751ef2e..88530a3fa8 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLButtonElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLButtonElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLButtonElement declaration + /// + /// + /// + public partial class HTMLButtonElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLButtonElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLButtonElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLButtonElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLButtonElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLButtonElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLButtonElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IHTMLButtonElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLButtonElement + #region HTMLButtonElement implementation public partial class HTMLButtonElement : Org.W3c.Dom.Html.IHTMLButtonElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLCollection.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLCollection.cs index 8765e1a70f..2f66f000ab 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLCollection.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLCollection.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLCollection declaration + /// + /// + /// + public partial class HTMLCollection : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLCollection"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLCollection() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLCollection class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLCollection(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLCollection /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IHTMLCollection } #endregion - #region HTMLCollection + #region HTMLCollection implementation public partial class HTMLCollection : Org.W3c.Dom.Html.IHTMLCollection { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDListElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDListElement.cs index 7178958a94..8e41aec152 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDListElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDListElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLDListElement declaration + /// + /// + /// + public partial class HTMLDListElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLDListElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLDListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDListElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLDListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDListElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLDListElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLDListElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLDListElement + #region HTMLDListElement implementation public partial class HTMLDListElement : Org.W3c.Dom.Html.IHTMLDListElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDOMImplementation.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDOMImplementation.cs index 53fd6166bf..9542d059a8 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDOMImplementation.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDOMImplementation.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLDOMImplementation declaration + /// + /// + /// + public partial class HTMLDOMImplementation : Org.W3c.Dom.DOMImplementation + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLDOMImplementation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLDOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDOMImplementation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLDOMImplementation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDOMImplementation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLDOMImplementation /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IHTMLDOMImplementation : Org.W3c.Dom.IDOMImplementation } #endregion - #region HTMLDOMImplementation + #region HTMLDOMImplementation implementation public partial class HTMLDOMImplementation : Org.W3c.Dom.Html.IHTMLDOMImplementation { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDirectoryElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDirectoryElement.cs index 78b5558ed3..da7c7313a8 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDirectoryElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDirectoryElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLDirectoryElement declaration + /// + /// + /// + public partial class HTMLDirectoryElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLDirectoryElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLDirectoryElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDirectoryElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLDirectoryElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDirectoryElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLDirectoryElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLDirectoryElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLDirectoryElement + #region HTMLDirectoryElement implementation public partial class HTMLDirectoryElement : Org.W3c.Dom.Html.IHTMLDirectoryElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDivElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDivElement.cs index d869eea736..7416d88d10 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDivElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDivElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLDivElement declaration + /// + /// + /// + public partial class HTMLDivElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLDivElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLDivElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDivElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLDivElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDivElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLDivElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLDivElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLDivElement + #region HTMLDivElement implementation public partial class HTMLDivElement : Org.W3c.Dom.Html.IHTMLDivElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDocument.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDocument.cs index 442f0e0839..fcebefd9d5 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDocument.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLDocument.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLDocument declaration + /// + /// + /// + public partial class HTMLDocument : Org.W3c.Dom.Document + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLDocument"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDocument() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLDocument class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLDocument(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLDocument /// /// .NET interface for TO BE DEFINED FROM USER @@ -111,7 +158,7 @@ public partial interface IHTMLDocument : Org.W3c.Dom.IDocument } #endregion - #region HTMLDocument + #region HTMLDocument implementation public partial class HTMLDocument : Org.W3c.Dom.Html.IHTMLDocument { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLElement.cs index f1c4800481..b06e61920a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLElement declaration + /// + /// + /// + public partial class HTMLElement : Org.W3c.Dom.Element + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IHTMLElement : Org.W3c.Dom.IElement } #endregion - #region HTMLElement + #region HTMLElement implementation public partial class HTMLElement : Org.W3c.Dom.Html.IHTMLElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFieldSetElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFieldSetElement.cs index 4eb1bd6b71..afe117b81e 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFieldSetElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFieldSetElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLFieldSetElement declaration + /// + /// + /// + public partial class HTMLFieldSetElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLFieldSetElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLFieldSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFieldSetElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLFieldSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFieldSetElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLFieldSetElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLFieldSetElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLFieldSetElement + #region HTMLFieldSetElement implementation public partial class HTMLFieldSetElement : Org.W3c.Dom.Html.IHTMLFieldSetElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFontElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFontElement.cs index 058d8cd6de..f6d8401f93 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFontElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFontElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLFontElement declaration + /// + /// + /// + public partial class HTMLFontElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLFontElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFontElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLFontElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFontElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLFontElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IHTMLFontElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLFontElement + #region HTMLFontElement implementation public partial class HTMLFontElement : Org.W3c.Dom.Html.IHTMLFontElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFormElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFormElement.cs index 63c496f50a..13d31e7e51 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFormElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFormElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLFormElement declaration + /// + /// + /// + public partial class HTMLFormElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLFormElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLFormElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFormElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLFormElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFormElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLFormElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -83,7 +130,7 @@ public partial interface IHTMLFormElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLFormElement + #region HTMLFormElement implementation public partial class HTMLFormElement : Org.W3c.Dom.Html.IHTMLFormElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameElement.cs index 7f92065294..8ec381c1c0 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLFrameElement declaration + /// + /// + /// + public partial class HTMLFrameElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLFrameElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFrameElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFrameElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLFrameElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -79,7 +126,7 @@ public partial interface IHTMLFrameElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLFrameElement + #region HTMLFrameElement implementation public partial class HTMLFrameElement : Org.W3c.Dom.Html.IHTMLFrameElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameSetElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameSetElement.cs index 8a82edb11f..9d15c8797f 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameSetElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLFrameSetElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLFrameSetElement declaration + /// + /// + /// + public partial class HTMLFrameSetElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLFrameSetElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLFrameSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFrameSetElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLFrameSetElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLFrameSetElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLFrameSetElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLFrameSetElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLFrameSetElement + #region HTMLFrameSetElement implementation public partial class HTMLFrameSetElement : Org.W3c.Dom.Html.IHTMLFrameSetElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHRElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHRElement.cs index 0f9aa93080..8af9abf425 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHRElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHRElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLHRElement declaration + /// + /// + /// + public partial class HTMLHRElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLHRElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLHRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHRElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLHRElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHRElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLHRElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IHTMLHRElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLHRElement + #region HTMLHRElement implementation public partial class HTMLHRElement : Org.W3c.Dom.Html.IHTMLHRElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadElement.cs index 3feb9a89b9..c74254fa66 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLHeadElement declaration + /// + /// + /// + public partial class HTMLHeadElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLHeadElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLHeadElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHeadElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLHeadElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHeadElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLHeadElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLHeadElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLHeadElement + #region HTMLHeadElement implementation public partial class HTMLHeadElement : Org.W3c.Dom.Html.IHTMLHeadElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadingElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadingElement.cs index 8ad4ff568c..5289229679 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadingElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHeadingElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLHeadingElement declaration + /// + /// + /// + public partial class HTMLHeadingElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLHeadingElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLHeadingElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHeadingElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLHeadingElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHeadingElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLHeadingElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLHeadingElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLHeadingElement + #region HTMLHeadingElement implementation public partial class HTMLHeadingElement : Org.W3c.Dom.Html.IHTMLHeadingElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHtmlElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHtmlElement.cs index 37299faffe..554310411c 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHtmlElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLHtmlElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLHtmlElement declaration + /// + /// + /// + public partial class HTMLHtmlElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLHtmlElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLHtmlElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHtmlElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLHtmlElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLHtmlElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLHtmlElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLHtmlElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLHtmlElement + #region HTMLHtmlElement implementation public partial class HTMLHtmlElement : Org.W3c.Dom.Html.IHTMLHtmlElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIFrameElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIFrameElement.cs index 91fa0f7ec9..0689c663fa 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIFrameElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIFrameElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLIFrameElement declaration + /// + /// + /// + public partial class HTMLIFrameElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLIFrameElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLIFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLIFrameElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLIFrameElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLIFrameElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLIFrameElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -87,7 +134,7 @@ public partial interface IHTMLIFrameElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLIFrameElement + #region HTMLIFrameElement implementation public partial class HTMLIFrameElement : Org.W3c.Dom.Html.IHTMLIFrameElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLImageElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLImageElement.cs index 618b271b4f..46d4f49aea 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLImageElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLImageElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLImageElement declaration + /// + /// + /// + public partial class HTMLImageElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLImageElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLImageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLImageElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLImageElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLImageElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLImageElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -95,7 +142,7 @@ public partial interface IHTMLImageElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLImageElement + #region HTMLImageElement implementation public partial class HTMLImageElement : Org.W3c.Dom.Html.IHTMLImageElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLInputElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLInputElement.cs index 47515dc507..ef62e6a969 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLInputElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLInputElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLInputElement declaration + /// + /// + /// + public partial class HTMLInputElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLInputElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLInputElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLInputElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLInputElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLInputElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLInputElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -131,7 +178,7 @@ public partial interface IHTMLInputElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLInputElement + #region HTMLInputElement implementation public partial class HTMLInputElement : Org.W3c.Dom.Html.IHTMLInputElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIsIndexElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIsIndexElement.cs index fe55db3235..896a139ffa 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIsIndexElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLIsIndexElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLIsIndexElement declaration + /// + /// + /// + public partial class HTMLIsIndexElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLIsIndexElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLIsIndexElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLIsIndexElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLIsIndexElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLIsIndexElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLIsIndexElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLIsIndexElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLIsIndexElement + #region HTMLIsIndexElement implementation public partial class HTMLIsIndexElement : Org.W3c.Dom.Html.IHTMLIsIndexElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLIElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLIElement.cs index 6eaf6116ab..f7107ae7ac 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLIElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLIElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLLIElement declaration + /// + /// + /// + public partial class HTMLLIElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLLIElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLLIElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLIElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLLIElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLIElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLLIElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLLIElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLLIElement + #region HTMLLIElement implementation public partial class HTMLLIElement : Org.W3c.Dom.Html.IHTMLLIElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLabelElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLabelElement.cs index 32eb078ef5..288271370a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLabelElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLabelElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLLabelElement declaration + /// + /// + /// + public partial class HTMLLabelElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLLabelElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLLabelElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLabelElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLLabelElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLabelElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLLabelElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IHTMLLabelElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLLabelElement + #region HTMLLabelElement implementation public partial class HTMLLabelElement : Org.W3c.Dom.Html.IHTMLLabelElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLegendElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLegendElement.cs index 09dbbde3be..a5634029ea 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLegendElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLegendElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLLegendElement declaration + /// + /// + /// + public partial class HTMLLegendElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLLegendElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLLegendElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLegendElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLLegendElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLegendElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLLegendElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IHTMLLegendElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLLegendElement + #region HTMLLegendElement implementation public partial class HTMLLegendElement : Org.W3c.Dom.Html.IHTMLLegendElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLinkElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLinkElement.cs index f7bac7ee98..cfc0eaa1c5 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLinkElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLLinkElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLLinkElement declaration + /// + /// + /// + public partial class HTMLLinkElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLLinkElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLLinkElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLinkElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLLinkElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLLinkElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLLinkElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -79,7 +126,7 @@ public partial interface IHTMLLinkElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLLinkElement + #region HTMLLinkElement implementation public partial class HTMLLinkElement : Org.W3c.Dom.Html.IHTMLLinkElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMapElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMapElement.cs index 087aeb7226..941c226601 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMapElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMapElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLMapElement declaration + /// + /// + /// + public partial class HTMLMapElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLMapElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLMapElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLMapElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLMapElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLMapElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLMapElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLMapElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLMapElement + #region HTMLMapElement implementation public partial class HTMLMapElement : Org.W3c.Dom.Html.IHTMLMapElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMenuElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMenuElement.cs index c065b9406e..c1a3a31a6c 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMenuElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMenuElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLMenuElement declaration + /// + /// + /// + public partial class HTMLMenuElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLMenuElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLMenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLMenuElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLMenuElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLMenuElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLMenuElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLMenuElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLMenuElement + #region HTMLMenuElement implementation public partial class HTMLMenuElement : Org.W3c.Dom.Html.IHTMLMenuElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMetaElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMetaElement.cs index 341b22f41c..3bef4bffb1 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMetaElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLMetaElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLMetaElement declaration + /// + /// + /// + public partial class HTMLMetaElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLMetaElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLMetaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLMetaElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLMetaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLMetaElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLMetaElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IHTMLMetaElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLMetaElement + #region HTMLMetaElement implementation public partial class HTMLMetaElement : Org.W3c.Dom.Html.IHTMLMetaElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLModElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLModElement.cs index 88b70bc12d..a7b89d7359 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLModElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLModElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLModElement declaration + /// + /// + /// + public partial class HTMLModElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLModElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLModElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLModElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLModElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLModElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLModElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLModElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLModElement + #region HTMLModElement implementation public partial class HTMLModElement : Org.W3c.Dom.Html.IHTMLModElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOListElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOListElement.cs index d4774f58e8..24377a6996 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOListElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOListElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLOListElement declaration + /// + /// + /// + public partial class HTMLOListElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLOListElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLOListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLOListElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLOListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLOListElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLOListElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IHTMLOListElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLOListElement + #region HTMLOListElement implementation public partial class HTMLOListElement : Org.W3c.Dom.Html.IHTMLOListElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLObjectElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLObjectElement.cs index dcfdc196e9..419590de71 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLObjectElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLObjectElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLObjectElement declaration + /// + /// + /// + public partial class HTMLObjectElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLObjectElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLObjectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLObjectElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLObjectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLObjectElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLObjectElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -119,7 +166,7 @@ public partial interface IHTMLObjectElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLObjectElement + #region HTMLObjectElement implementation public partial class HTMLObjectElement : Org.W3c.Dom.Html.IHTMLObjectElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptGroupElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptGroupElement.cs index 75b623086d..705cc12b2c 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptGroupElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptGroupElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLOptGroupElement declaration + /// + /// + /// + public partial class HTMLOptGroupElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLOptGroupElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLOptGroupElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLOptGroupElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLOptGroupElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLOptGroupElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLOptGroupElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLOptGroupElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLOptGroupElement + #region HTMLOptGroupElement implementation public partial class HTMLOptGroupElement : Org.W3c.Dom.Html.IHTMLOptGroupElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptionElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptionElement.cs index 205a620826..835fdc96c8 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptionElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLOptionElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLOptionElement declaration + /// + /// + /// + public partial class HTMLOptionElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLOptionElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLOptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLOptionElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLOptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLOptionElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLOptionElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IHTMLOptionElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLOptionElement + #region HTMLOptionElement implementation public partial class HTMLOptionElement : Org.W3c.Dom.Html.IHTMLOptionElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParagraphElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParagraphElement.cs index 0814870a1a..2482a22c9f 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParagraphElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParagraphElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLParagraphElement declaration + /// + /// + /// + public partial class HTMLParagraphElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLParagraphElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLParagraphElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLParagraphElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLParagraphElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLParagraphElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLParagraphElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLParagraphElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLParagraphElement + #region HTMLParagraphElement implementation public partial class HTMLParagraphElement : Org.W3c.Dom.Html.IHTMLParagraphElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParamElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParamElement.cs index d2412ebec1..aa5569083e 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParamElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLParamElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLParamElement declaration + /// + /// + /// + public partial class HTMLParamElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLParamElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLParamElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLParamElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLParamElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLParamElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLParamElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface IHTMLParamElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLParamElement + #region HTMLParamElement implementation public partial class HTMLParamElement : Org.W3c.Dom.Html.IHTMLParamElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLPreElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLPreElement.cs index 10c2b1b576..6066ac7c9a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLPreElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLPreElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLPreElement declaration + /// + /// + /// + public partial class HTMLPreElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLPreElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLPreElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLPreElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLPreElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLPreElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLPreElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLPreElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLPreElement + #region HTMLPreElement implementation public partial class HTMLPreElement : Org.W3c.Dom.Html.IHTMLPreElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLQuoteElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLQuoteElement.cs index d9505066dc..b39bc1b04e 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLQuoteElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLQuoteElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLQuoteElement declaration + /// + /// + /// + public partial class HTMLQuoteElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLQuoteElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLQuoteElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLQuoteElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLQuoteElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLQuoteElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLQuoteElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLQuoteElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLQuoteElement + #region HTMLQuoteElement implementation public partial class HTMLQuoteElement : Org.W3c.Dom.Html.IHTMLQuoteElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLScriptElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLScriptElement.cs index 85b4240349..9fbbcb6655 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLScriptElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLScriptElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLScriptElement declaration + /// + /// + /// + public partial class HTMLScriptElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLScriptElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLScriptElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLScriptElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLScriptElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLScriptElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLScriptElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IHTMLScriptElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLScriptElement + #region HTMLScriptElement implementation public partial class HTMLScriptElement : Org.W3c.Dom.Html.IHTMLScriptElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLSelectElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLSelectElement.cs index 294f3604e3..397170d76d 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLSelectElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLSelectElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLSelectElement declaration + /// + /// + /// + public partial class HTMLSelectElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLSelectElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLSelectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLSelectElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLSelectElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLSelectElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLSelectElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -107,7 +154,7 @@ public partial interface IHTMLSelectElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLSelectElement + #region HTMLSelectElement implementation public partial class HTMLSelectElement : Org.W3c.Dom.Html.IHTMLSelectElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLStyleElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLStyleElement.cs index 0d7d9c2ee3..ab5375cec7 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLStyleElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLStyleElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLStyleElement declaration + /// + /// + /// + public partial class HTMLStyleElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLStyleElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLStyleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLStyleElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLStyleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLStyleElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLStyleElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface IHTMLStyleElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLStyleElement + #region HTMLStyleElement implementation public partial class HTMLStyleElement : Org.W3c.Dom.Html.IHTMLStyleElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCaptionElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCaptionElement.cs index c204d61c17..7e3957a789 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCaptionElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCaptionElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTableCaptionElement declaration + /// + /// + /// + public partial class HTMLTableCaptionElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTableCaptionElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTableCaptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableCaptionElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTableCaptionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableCaptionElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTableCaptionElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLTableCaptionElement : Org.W3c.Dom.Html.IHTMLElemen } #endregion - #region HTMLTableCaptionElement + #region HTMLTableCaptionElement implementation public partial class HTMLTableCaptionElement : Org.W3c.Dom.Html.IHTMLTableCaptionElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCellElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCellElement.cs index 83b86fa2ce..6dbb6b9caa 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCellElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableCellElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTableCellElement declaration + /// + /// + /// + public partial class HTMLTableCellElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTableCellElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTableCellElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableCellElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTableCellElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableCellElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTableCellElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -103,7 +150,7 @@ public partial interface IHTMLTableCellElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLTableCellElement + #region HTMLTableCellElement implementation public partial class HTMLTableCellElement : Org.W3c.Dom.Html.IHTMLTableCellElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableColElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableColElement.cs index 44c5d881a4..db527470dd 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableColElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableColElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTableColElement declaration + /// + /// + /// + public partial class HTMLTableColElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTableColElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTableColElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableColElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTableColElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableColElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTableColElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -67,7 +114,7 @@ public partial interface IHTMLTableColElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLTableColElement + #region HTMLTableColElement implementation public partial class HTMLTableColElement : Org.W3c.Dom.Html.IHTMLTableColElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableElement.cs index ea813cbb8c..2123642086 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTableElement declaration + /// + /// + /// + public partial class HTMLTableElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTableElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTableElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTableElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -139,7 +186,7 @@ public partial interface IHTMLTableElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLTableElement + #region HTMLTableElement implementation public partial class HTMLTableElement : Org.W3c.Dom.Html.IHTMLTableElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableRowElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableRowElement.cs index b9abcd7d9e..62287ac13a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableRowElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableRowElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTableRowElement declaration + /// + /// + /// + public partial class HTMLTableRowElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTableRowElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTableRowElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableRowElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTableRowElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableRowElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTableRowElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -88,7 +135,7 @@ public partial interface IHTMLTableRowElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLTableRowElement + #region HTMLTableRowElement implementation public partial class HTMLTableRowElement : Org.W3c.Dom.Html.IHTMLTableRowElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableSectionElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableSectionElement.cs index 9fd357e289..3f8482a038 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableSectionElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTableSectionElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTableSectionElement declaration + /// + /// + /// + public partial class HTMLTableSectionElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTableSectionElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTableSectionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableSectionElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTableSectionElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTableSectionElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTableSectionElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -76,7 +123,7 @@ public partial interface IHTMLTableSectionElement : Org.W3c.Dom.Html.IHTMLElemen } #endregion - #region HTMLTableSectionElement + #region HTMLTableSectionElement implementation public partial class HTMLTableSectionElement : Org.W3c.Dom.Html.IHTMLTableSectionElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTextAreaElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTextAreaElement.cs index 1a286bd00c..a7cf303525 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTextAreaElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTextAreaElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTextAreaElement declaration + /// + /// + /// + public partial class HTMLTextAreaElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTextAreaElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTextAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTextAreaElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTextAreaElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTextAreaElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTextAreaElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -99,7 +146,7 @@ public partial interface IHTMLTextAreaElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLTextAreaElement + #region HTMLTextAreaElement implementation public partial class HTMLTextAreaElement : Org.W3c.Dom.Html.IHTMLTextAreaElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTitleElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTitleElement.cs index eb12a3e2f2..c382151cac 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTitleElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLTitleElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLTitleElement declaration + /// + /// + /// + public partial class HTMLTitleElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLTitleElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLTitleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTitleElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLTitleElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLTitleElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLTitleElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IHTMLTitleElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLTitleElement + #region HTMLTitleElement implementation public partial class HTMLTitleElement : Org.W3c.Dom.Html.IHTMLTitleElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLUListElement.cs b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLUListElement.cs index 6eb31d5117..1238664801 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLUListElement.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Html/HTMLUListElement.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Html { + #region HTMLUListElement declaration + /// + /// + /// + public partial class HTMLUListElement : Org.W3c.Dom.Html.HTMLElement + { + const string _bridgeClassName = "org.w3c.dom.html.HTMLUListElement"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("HTMLUListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLUListElement() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("HTMLUListElement class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public HTMLUListElement(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IHTMLUListElement /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IHTMLUListElement : Org.W3c.Dom.Html.IHTMLElement } #endregion - #region HTMLUListElement + #region HTMLUListElement implementation public partial class HTMLUListElement : Org.W3c.Dom.Html.IHTMLUListElement { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/AllPackageClasses.cs deleted file mode 100644 index 9c0320b085..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/AllPackageClasses.cs +++ /dev/null @@ -1,517 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Ls -{ - #region DOMImplementationLS - /// - /// - /// - public partial class DOMImplementationLS : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.DOMImplementationLS"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DOMImplementationLS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationLS() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DOMImplementationLS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DOMImplementationLS(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSException - /// - /// - /// - public partial class LSException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "org.w3c.dom.ls.LSException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region LSInput - /// - /// - /// - public partial class LSInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.LSInput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSInput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSInput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSLoadEvent - /// - /// - /// - public partial class LSLoadEvent : Org.W3c.Dom.Events.Event - { - const string _bridgeClassName = "org.w3c.dom.ls.LSLoadEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSLoadEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSLoadEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSLoadEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSLoadEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSOutput - /// - /// - /// - public partial class LSOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.LSOutput"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSOutput() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSOutput(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSParser - /// - /// - /// - public partial class LSParser : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.LSParser"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSParser() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSParser(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSParserFilter - /// - /// - /// - public partial class LSParserFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.LSParserFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSParserFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSParserFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSParserFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSParserFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSProgressEvent - /// - /// - /// - public partial class LSProgressEvent : Org.W3c.Dom.Events.Event - { - const string _bridgeClassName = "org.w3c.dom.ls.LSProgressEvent"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSProgressEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSProgressEvent() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSProgressEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSProgressEvent(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSResourceResolver - /// - /// - /// - public partial class LSResourceResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.LSResourceResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSResourceResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSResourceResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSResourceResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSResourceResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSSerializer - /// - /// - /// - public partial class LSSerializer : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ls.LSSerializer"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSSerializer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSSerializer() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSSerializer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSSerializer(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LSSerializerFilter - /// - /// - /// - public partial class LSSerializerFilter : Org.W3c.Dom.Traversal.NodeFilter - { - const string _bridgeClassName = "org.w3c.dom.ls.LSSerializerFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LSSerializerFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSSerializerFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LSSerializerFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LSSerializerFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/DOMImplementationLS.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/DOMImplementationLS.cs index a5745414a7..750b6bd723 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/DOMImplementationLS.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/DOMImplementationLS.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region DOMImplementationLS declaration + /// + /// + /// + public partial class DOMImplementationLS : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.DOMImplementationLS"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DOMImplementationLS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationLS() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DOMImplementationLS class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DOMImplementationLS(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDOMImplementationLS /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IDOMImplementationLS } #endregion - #region DOMImplementationLS + #region DOMImplementationLS implementation public partial class DOMImplementationLS : Org.W3c.Dom.Ls.IDOMImplementationLS { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSException.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSException.cs index 5bda7b2b2b..cea70623af 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSException.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSException.cs @@ -25,7 +25,24 @@ namespace Org.W3c.Dom.Ls { - #region LSException + #region LSException declaration + /// + /// + /// + public partial class LSException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "org.w3c.dom.ls.LSException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region LSException implementation public partial class LSException { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSInput.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSInput.cs index 478bd8abea..e2ee191970 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSInput.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSInput.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSInput declaration + /// + /// + /// + public partial class LSInput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.LSInput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSInput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSInput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSInput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSInput /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface ILSInput } #endregion - #region LSInput + #region LSInput implementation public partial class LSInput : Org.W3c.Dom.Ls.ILSInput { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSLoadEvent.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSLoadEvent.cs index aa1d17e6ba..19beb20602 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSLoadEvent.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSLoadEvent.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSLoadEvent declaration + /// + /// + /// + public partial class LSLoadEvent : Org.W3c.Dom.Events.Event + { + const string _bridgeClassName = "org.w3c.dom.ls.LSLoadEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSLoadEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSLoadEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSLoadEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSLoadEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSLoadEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ILSLoadEvent : Org.W3c.Dom.Events.IEvent } #endregion - #region LSLoadEvent + #region LSLoadEvent implementation public partial class LSLoadEvent : Org.W3c.Dom.Ls.ILSLoadEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSOutput.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSOutput.cs index 89afd7030e..85f3c7e27f 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSOutput.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSOutput.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSOutput declaration + /// + /// + /// + public partial class LSOutput : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.LSOutput"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSOutput() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSOutput class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSOutput(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSOutput /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ILSOutput } #endregion - #region LSOutput + #region LSOutput implementation public partial class LSOutput : Org.W3c.Dom.Ls.ILSOutput { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParser.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParser.cs index 45e51e9d63..0523e62de0 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParser.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParser.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSParser declaration + /// + /// + /// + public partial class LSParser : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.LSParser"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSParser() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSParser class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSParser(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSParser /// /// .NET interface for TO BE DEFINED FROM USER @@ -89,7 +136,7 @@ public partial interface ILSParser } #endregion - #region LSParser + #region LSParser implementation public partial class LSParser : Org.W3c.Dom.Ls.ILSParser { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParserFilter.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParserFilter.cs index f37e4a8af2..36558cfe56 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParserFilter.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSParserFilter.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSParserFilter declaration + /// + /// + /// + public partial class LSParserFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.LSParserFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSParserFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSParserFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSParserFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSParserFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSParserFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ILSParserFilter } #endregion - #region LSParserFilter + #region LSParserFilter implementation public partial class LSParserFilter : Org.W3c.Dom.Ls.ILSParserFilter { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSProgressEvent.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSProgressEvent.cs index 43ae937612..e0b0502684 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSProgressEvent.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSProgressEvent.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSProgressEvent declaration + /// + /// + /// + public partial class LSProgressEvent : Org.W3c.Dom.Events.Event + { + const string _bridgeClassName = "org.w3c.dom.ls.LSProgressEvent"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSProgressEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSProgressEvent() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSProgressEvent class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSProgressEvent(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSProgressEvent /// /// .NET interface for TO BE DEFINED FROM USER @@ -55,7 +102,7 @@ public partial interface ILSProgressEvent : Org.W3c.Dom.Events.IEvent } #endregion - #region LSProgressEvent + #region LSProgressEvent implementation public partial class LSProgressEvent : Org.W3c.Dom.Ls.ILSProgressEvent { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSResourceResolver.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSResourceResolver.cs index edf96ea083..fc525a38d2 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSResourceResolver.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSResourceResolver.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSResourceResolver declaration + /// + /// + /// + public partial class LSResourceResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.LSResourceResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSResourceResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSResourceResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSResourceResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSResourceResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSResourceResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface ILSResourceResolver } #endregion - #region LSResourceResolver + #region LSResourceResolver implementation public partial class LSResourceResolver : Org.W3c.Dom.Ls.ILSResourceResolver { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializer.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializer.cs index a7d6c8f5ef..bc220de6d6 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializer.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializer.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSSerializer declaration + /// + /// + /// + public partial class LSSerializer : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ls.LSSerializer"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSSerializer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSSerializer() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSSerializer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSSerializer(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSSerializer /// /// .NET interface for TO BE DEFINED FROM USER @@ -79,7 +126,7 @@ public partial interface ILSSerializer } #endregion - #region LSSerializer + #region LSSerializer implementation public partial class LSSerializer : Org.W3c.Dom.Ls.ILSSerializer { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializerFilter.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializerFilter.cs index 9f3283895d..61f3ae81ca 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializerFilter.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ls/LSSerializerFilter.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ls { + #region LSSerializerFilter declaration + /// + /// + /// + public partial class LSSerializerFilter : Org.W3c.Dom.Traversal.NodeFilter + { + const string _bridgeClassName = "org.w3c.dom.ls.LSSerializerFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LSSerializerFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSSerializerFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LSSerializerFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LSSerializerFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILSSerializerFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ILSSerializerFilter : Org.W3c.Dom.Traversal.INodeFilter } #endregion - #region LSSerializerFilter + #region LSSerializerFilter implementation public partial class LSSerializerFilter : Org.W3c.Dom.Ls.ILSSerializerFilter { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/NameList.cs b/src/net/JNet/Generated/Org/W3c/Dom/NameList.cs index 2644e93a3e..a0de9aaa94 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/NameList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/NameList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region NameList declaration + /// + /// + /// + public partial class NameList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.NameList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NameList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NameList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NameList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NameList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INameList /// /// .NET interface for TO BE DEFINED FROM USER @@ -72,7 +119,7 @@ public partial interface INameList } #endregion - #region NameList + #region NameList implementation public partial class NameList : Org.W3c.Dom.INameList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/NamedNodeMap.cs b/src/net/JNet/Generated/Org/W3c/Dom/NamedNodeMap.cs index 155cfa896a..8d1443b352 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/NamedNodeMap.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/NamedNodeMap.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region NamedNodeMap declaration + /// + /// + /// + public partial class NamedNodeMap : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.NamedNodeMap"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NamedNodeMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamedNodeMap() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NamedNodeMap class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NamedNodeMap(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INamedNodeMap /// /// .NET interface for TO BE DEFINED FROM USER @@ -96,7 +143,7 @@ public partial interface INamedNodeMap } #endregion - #region NamedNodeMap + #region NamedNodeMap implementation public partial class NamedNodeMap : Org.W3c.Dom.INamedNodeMap { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Node.cs b/src/net/JNet/Generated/Org/W3c/Dom/Node.cs index f23b5e3767..b930bd8d34 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Node.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Node.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Node declaration + /// + /// + /// + public partial class Node : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.Node"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Node class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Node() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Node class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Node(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INode /// /// .NET interface for TO BE DEFINED FROM USER @@ -222,7 +269,7 @@ public partial interface INode } #endregion - #region Node + #region Node implementation public partial class Node : Org.W3c.Dom.INode { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/NodeList.cs b/src/net/JNet/Generated/Org/W3c/Dom/NodeList.cs index 07c12d8ec4..0e31033bc7 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/NodeList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/NodeList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region NodeList declaration + /// + /// + /// + public partial class NodeList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.NodeList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NodeList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NodeList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INodeList /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface INodeList } #endregion - #region NodeList + #region NodeList implementation public partial class NodeList : Org.W3c.Dom.INodeList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Notation.cs b/src/net/JNet/Generated/Org/W3c/Dom/Notation.cs index b65421f4c2..27b68c06e0 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Notation.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Notation.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Notation declaration + /// + /// + /// + public partial class Notation : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.Notation"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Notation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Notation() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Notation class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Notation(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INotation /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface INotation : Org.W3c.Dom.INode } #endregion - #region Notation + #region Notation implementation public partial class Notation : Org.W3c.Dom.INotation { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/ProcessingInstruction.cs b/src/net/JNet/Generated/Org/W3c/Dom/ProcessingInstruction.cs index e712acb4a0..532ccde9d5 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/ProcessingInstruction.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/ProcessingInstruction.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region ProcessingInstruction declaration + /// + /// + /// + public partial class ProcessingInstruction : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.ProcessingInstruction"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessingInstruction() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ProcessingInstruction class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ProcessingInstruction(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IProcessingInstruction /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface IProcessingInstruction : Org.W3c.Dom.INode } #endregion - #region ProcessingInstruction + #region ProcessingInstruction implementation public partial class ProcessingInstruction : Org.W3c.Dom.IProcessingInstruction { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/AllPackageClasses.cs deleted file mode 100644 index 72707131ce..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/AllPackageClasses.cs +++ /dev/null @@ -1,141 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Ranges -{ - #region DocumentRange - /// - /// - /// - public partial class DocumentRange : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ranges.DocumentRange"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentRange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentRange() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentRange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentRange(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Range - /// - /// - /// - public partial class Range : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.ranges.Range"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Range class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Range() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Range class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Range(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region RangeException - /// - /// - /// - public partial class RangeException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "org.w3c.dom.ranges.RangeException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/DocumentRange.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/DocumentRange.cs index 1db7d80bde..e21c1f9d43 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/DocumentRange.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/DocumentRange.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ranges { + #region DocumentRange declaration + /// + /// + /// + public partial class DocumentRange : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ranges.DocumentRange"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentRange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentRange() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentRange class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentRange(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentRange /// /// .NET interface for TO BE DEFINED FROM USER @@ -48,7 +95,7 @@ public partial interface IDocumentRange } #endregion - #region DocumentRange + #region DocumentRange implementation public partial class DocumentRange : Org.W3c.Dom.Ranges.IDocumentRange { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/Range.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/Range.cs index 2197fc6084..099eb67e2a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/Range.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/Range.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Ranges { + #region Range declaration + /// + /// + /// + public partial class Range : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.ranges.Range"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Range class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Range() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Range class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Range(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IRange /// /// .NET interface for TO BE DEFINED FROM USER @@ -181,7 +228,7 @@ public partial interface IRange } #endregion - #region Range + #region Range implementation public partial class Range : Org.W3c.Dom.Ranges.IRange { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/RangeException.cs b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/RangeException.cs index 38bbb5b2a5..c2574e74d6 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Ranges/RangeException.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Ranges/RangeException.cs @@ -25,7 +25,24 @@ namespace Org.W3c.Dom.Ranges { - #region RangeException + #region RangeException declaration + /// + /// + /// + public partial class RangeException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "org.w3c.dom.ranges.RangeException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region RangeException implementation public partial class RangeException { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/AllPackageClasses.cs deleted file mode 100644 index bf077037ab..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/AllPackageClasses.cs +++ /dev/null @@ -1,265 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Stylesheets -{ - #region DocumentStyle - /// - /// - /// - public partial class DocumentStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.stylesheets.DocumentStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LinkStyle - /// - /// - /// - public partial class LinkStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.stylesheets.LinkStyle"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LinkStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LinkStyle() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LinkStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LinkStyle(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region MediaList - /// - /// - /// - public partial class MediaList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.stylesheets.MediaList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("MediaList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MediaList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("MediaList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public MediaList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StyleSheet - /// - /// - /// - public partial class StyleSheet : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.stylesheets.StyleSheet"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyleSheet() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyleSheet(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region StyleSheetList - /// - /// - /// - public partial class StyleSheetList : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.stylesheets.StyleSheetList"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("StyleSheetList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyleSheetList() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("StyleSheetList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public StyleSheetList(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/DocumentStyle.cs b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/DocumentStyle.cs index e3e5e1167c..9136b8f2e4 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/DocumentStyle.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/DocumentStyle.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Stylesheets { + #region DocumentStyle declaration + /// + /// + /// + public partial class DocumentStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.stylesheets.DocumentStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentStyle /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDocumentStyle } #endregion - #region DocumentStyle + #region DocumentStyle implementation public partial class DocumentStyle : Org.W3c.Dom.Stylesheets.IDocumentStyle { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/LinkStyle.cs b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/LinkStyle.cs index b509fb9124..4b2971d690 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/LinkStyle.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/LinkStyle.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Stylesheets { + #region LinkStyle declaration + /// + /// + /// + public partial class LinkStyle : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.stylesheets.LinkStyle"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LinkStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LinkStyle() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LinkStyle class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LinkStyle(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILinkStyle /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface ILinkStyle } #endregion - #region LinkStyle + #region LinkStyle implementation public partial class LinkStyle : Org.W3c.Dom.Stylesheets.ILinkStyle { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/MediaList.cs b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/MediaList.cs index 84fbec0143..2fa2445cbc 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/MediaList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/MediaList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Stylesheets { + #region MediaList declaration + /// + /// + /// + public partial class MediaList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.stylesheets.MediaList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("MediaList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MediaList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("MediaList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public MediaList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IMediaList /// /// .NET interface for TO BE DEFINED FROM USER @@ -69,7 +116,7 @@ public partial interface IMediaList } #endregion - #region MediaList + #region MediaList implementation public partial class MediaList : Org.W3c.Dom.Stylesheets.IMediaList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheet.cs b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheet.cs index 06f0219638..52af5f31af 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheet.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheet.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Stylesheets { + #region StyleSheet declaration + /// + /// + /// + public partial class StyleSheet : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.stylesheets.StyleSheet"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyleSheet() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StyleSheet class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyleSheet(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStyleSheet /// /// .NET interface for TO BE DEFINED FROM USER @@ -71,7 +118,7 @@ public partial interface IStyleSheet } #endregion - #region StyleSheet + #region StyleSheet implementation public partial class StyleSheet : Org.W3c.Dom.Stylesheets.IStyleSheet { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheetList.cs b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheetList.cs index 1edc61e571..752c65738d 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheetList.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Stylesheets/StyleSheetList.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Stylesheets { + #region StyleSheetList declaration + /// + /// + /// + public partial class StyleSheetList : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.stylesheets.StyleSheetList"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("StyleSheetList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyleSheetList() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("StyleSheetList class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public StyleSheetList(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IStyleSheetList /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IStyleSheetList } #endregion - #region StyleSheetList + #region StyleSheetList implementation public partial class StyleSheetList : Org.W3c.Dom.Stylesheets.IStyleSheetList { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Text.cs b/src/net/JNet/Generated/Org/W3c/Dom/Text.cs index deba1d5a8b..d83f662804 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Text.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Text.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region Text declaration + /// + /// + /// + public partial class Text : Org.W3c.Dom.CharacterData + { + const string _bridgeClassName = "org.w3c.dom.Text"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Text class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Text() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Text class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Text(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IText /// /// .NET interface for TO BE DEFINED FROM USER @@ -66,7 +113,7 @@ public partial interface IText : Org.W3c.Dom.ICharacterData } #endregion - #region Text + #region Text implementation public partial class Text : Org.W3c.Dom.IText { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/AllPackageClasses.cs deleted file mode 100644 index 5841693bf6..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/AllPackageClasses.cs +++ /dev/null @@ -1,218 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Traversal -{ - #region DocumentTraversal - /// - /// - /// - public partial class DocumentTraversal : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.traversal.DocumentTraversal"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentTraversal() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentTraversal(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NodeFilter - /// - /// - /// - public partial class NodeFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.traversal.NodeFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NodeFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NodeFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NodeIterator - /// - /// - /// - public partial class NodeIterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.traversal.NodeIterator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("NodeIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeIterator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("NodeIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public NodeIterator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region TreeWalker - /// - /// - /// - public partial class TreeWalker : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.traversal.TreeWalker"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("TreeWalker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeWalker() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("TreeWalker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public TreeWalker(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/DocumentTraversal.cs b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/DocumentTraversal.cs index 7b48fc227b..962b765939 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/DocumentTraversal.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/DocumentTraversal.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Traversal { + #region DocumentTraversal declaration + /// + /// + /// + public partial class DocumentTraversal : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.traversal.DocumentTraversal"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentTraversal() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentTraversal class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentTraversal(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentTraversal /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IDocumentTraversal } #endregion - #region DocumentTraversal + #region DocumentTraversal implementation public partial class DocumentTraversal : Org.W3c.Dom.Traversal.IDocumentTraversal { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeFilter.cs b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeFilter.cs index 24f54f52fd..e9c82290f6 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeFilter.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeFilter.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Traversal { + #region NodeFilter declaration + /// + /// + /// + public partial class NodeFilter : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.traversal.NodeFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NodeFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NodeFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INodeFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface INodeFilter } #endregion - #region NodeFilter + #region NodeFilter implementation public partial class NodeFilter : Org.W3c.Dom.Traversal.INodeFilter { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeIterator.cs b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeIterator.cs index dae2ef7fe0..4c7beced19 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeIterator.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/NodeIterator.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Traversal { + #region NodeIterator declaration + /// + /// + /// + public partial class NodeIterator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.traversal.NodeIterator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("NodeIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeIterator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("NodeIterator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public NodeIterator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region INodeIterator /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface INodeIterator } #endregion - #region NodeIterator + #region NodeIterator implementation public partial class NodeIterator : Org.W3c.Dom.Traversal.INodeIterator { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/TreeWalker.cs b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/TreeWalker.cs index 148ba05590..5bfc50eced 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Traversal/TreeWalker.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Traversal/TreeWalker.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Traversal { + #region TreeWalker declaration + /// + /// + /// + public partial class TreeWalker : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.traversal.TreeWalker"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TreeWalker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeWalker() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TreeWalker class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TreeWalker(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITreeWalker /// /// .NET interface for TO BE DEFINED FROM USER @@ -98,7 +145,7 @@ public partial interface ITreeWalker } #endregion - #region TreeWalker + #region TreeWalker implementation public partial class TreeWalker : Org.W3c.Dom.Traversal.ITreeWalker { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/TypeInfo.cs b/src/net/JNet/Generated/Org/W3c/Dom/TypeInfo.cs index 30af678ebe..4b363a4355 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/TypeInfo.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/TypeInfo.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region TypeInfo declaration + /// + /// + /// + public partial class TypeInfo : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.TypeInfo"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("TypeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeInfo() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("TypeInfo class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public TypeInfo(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ITypeInfo /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ITypeInfo } #endregion - #region TypeInfo + #region TypeInfo implementation public partial class TypeInfo : Org.W3c.Dom.ITypeInfo { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/UserDataHandler.cs b/src/net/JNet/Generated/Org/W3c/Dom/UserDataHandler.cs index 3f85a38fad..459398260e 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/UserDataHandler.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/UserDataHandler.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom { + #region UserDataHandler declaration + /// + /// + /// + public partial class UserDataHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.UserDataHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("UserDataHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserDataHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("UserDataHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public UserDataHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IUserDataHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IUserDataHandler } #endregion - #region UserDataHandler + #region UserDataHandler implementation public partial class UserDataHandler : Org.W3c.Dom.IUserDataHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Views/AbstractView.cs b/src/net/JNet/Generated/Org/W3c/Dom/Views/AbstractView.cs index 1729c0c68a..f54ef5d1db 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Views/AbstractView.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Views/AbstractView.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Views { + #region AbstractView declaration + /// + /// + /// + public partial class AbstractView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.views.AbstractView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("AbstractView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("AbstractView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public AbstractView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAbstractView /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IAbstractView } #endregion - #region AbstractView + #region AbstractView implementation public partial class AbstractView : Org.W3c.Dom.Views.IAbstractView { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Views/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Views/AllPackageClasses.cs deleted file mode 100644 index 531ff1fc35..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Views/AllPackageClasses.cs +++ /dev/null @@ -1,124 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Views -{ - #region AbstractView - /// - /// - /// - public partial class AbstractView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.views.AbstractView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("AbstractView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("AbstractView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public AbstractView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DocumentView - /// - /// - /// - public partial class DocumentView : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.views.DocumentView"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DocumentView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentView() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DocumentView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DocumentView(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Views/DocumentView.cs b/src/net/JNet/Generated/Org/W3c/Dom/Views/DocumentView.cs index 85b39f2ae8..01bec3794a 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Views/DocumentView.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Views/DocumentView.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Views { + #region DocumentView declaration + /// + /// + /// + public partial class DocumentView : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.views.DocumentView"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DocumentView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentView() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DocumentView class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DocumentView(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDocumentView /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IDocumentView } #endregion - #region DocumentView + #region DocumentView implementation public partial class DocumentView : Org.W3c.Dom.Views.IDocumentView { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/AllPackageClasses.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/AllPackageClasses.cs deleted file mode 100644 index 9e06358712..0000000000 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/AllPackageClasses.cs +++ /dev/null @@ -1,282 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.W3c.Dom.Xpath -{ - #region XPathEvaluator - /// - /// - /// - public partial class XPathEvaluator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.xpath.XPathEvaluator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathEvaluator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathEvaluator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathEvaluator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathEvaluator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathException - /// - /// - /// - public partial class XPathException : Java.Lang.RuntimeException - { - const string _bridgeClassName = "org.w3c.dom.xpath.XPathException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XPathExpression - /// - /// - /// - public partial class XPathExpression : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.xpath.XPathExpression"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathExpression() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathExpression(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathNamespace - /// - /// - /// - public partial class XPathNamespace : Org.W3c.Dom.Node - { - const string _bridgeClassName = "org.w3c.dom.xpath.XPathNamespace"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathNamespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathNamespace() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathNamespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathNamespace(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathNSResolver - /// - /// - /// - public partial class XPathNSResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.xpath.XPathNSResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathNSResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathNSResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathNSResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathNSResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XPathResult - /// - /// - /// - public partial class XPathResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.w3c.dom.xpath.XPathResult"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XPathResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathResult() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XPathResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XPathResult(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathEvaluator.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathEvaluator.cs index 73f9162dd4..2876c17938 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathEvaluator.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathEvaluator.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Xpath { + #region XPathEvaluator declaration + /// + /// + /// + public partial class XPathEvaluator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.xpath.XPathEvaluator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathEvaluator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathEvaluator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathEvaluator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathEvaluator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathEvaluator /// /// .NET interface for TO BE DEFINED FROM USER @@ -70,7 +117,7 @@ public partial interface IXPathEvaluator } #endregion - #region XPathEvaluator + #region XPathEvaluator implementation public partial class XPathEvaluator : Org.W3c.Dom.Xpath.IXPathEvaluator { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathException.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathException.cs index d4840b02d2..6f72a8c3d4 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathException.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathException.cs @@ -25,7 +25,24 @@ namespace Org.W3c.Dom.Xpath { - #region XPathException + #region XPathException declaration + /// + /// + /// + public partial class XPathException : Java.Lang.RuntimeException + { + const string _bridgeClassName = "org.w3c.dom.xpath.XPathException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region XPathException implementation public partial class XPathException { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathExpression.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathExpression.cs index 9a602a3ad5..07ecaa6f22 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathExpression.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathExpression.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Xpath { + #region XPathExpression declaration + /// + /// + /// + public partial class XPathExpression : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.xpath.XPathExpression"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathExpression() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathExpression class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathExpression(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathExpression /// /// .NET interface for TO BE DEFINED FROM USER @@ -53,7 +100,7 @@ public partial interface IXPathExpression } #endregion - #region XPathExpression + #region XPathExpression implementation public partial class XPathExpression : Org.W3c.Dom.Xpath.IXPathExpression { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNSResolver.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNSResolver.cs index 7ec69b36ba..db9228e498 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNSResolver.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNSResolver.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Xpath { + #region XPathNSResolver declaration + /// + /// + /// + public partial class XPathNSResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.xpath.XPathNSResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathNSResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathNSResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathNSResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathNSResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathNSResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -49,7 +96,7 @@ public partial interface IXPathNSResolver } #endregion - #region XPathNSResolver + #region XPathNSResolver implementation public partial class XPathNSResolver : Org.W3c.Dom.Xpath.IXPathNSResolver { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNamespace.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNamespace.cs index 5f151cd245..1c0f626c90 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNamespace.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathNamespace.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Xpath { + #region XPathNamespace declaration + /// + /// + /// + public partial class XPathNamespace : Org.W3c.Dom.Node + { + const string _bridgeClassName = "org.w3c.dom.xpath.XPathNamespace"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathNamespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathNamespace() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathNamespace class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathNamespace(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathNamespace /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IXPathNamespace : Org.W3c.Dom.INode } #endregion - #region XPathNamespace + #region XPathNamespace implementation public partial class XPathNamespace : Org.W3c.Dom.Xpath.IXPathNamespace { #region Constructors diff --git a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathResult.cs b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathResult.cs index b8ba31679b..6e4d6be9f1 100644 --- a/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathResult.cs +++ b/src/net/JNet/Generated/Org/W3c/Dom/Xpath/XPathResult.cs @@ -25,6 +25,53 @@ namespace Org.W3c.Dom.Xpath { + #region XPathResult declaration + /// + /// + /// + public partial class XPathResult : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.w3c.dom.xpath.XPathResult"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XPathResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathResult() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XPathResult class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XPathResult(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXPathResult /// /// .NET interface for TO BE DEFINED FROM USER @@ -85,7 +132,7 @@ public partial interface IXPathResult } #endregion - #region XPathResult + #region XPathResult implementation public partial class XPathResult : Org.W3c.Dom.Xpath.IXPathResult { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/AllPackageClasses.cs b/src/net/JNet/Generated/Org/Xml/Sax/AllPackageClasses.cs deleted file mode 100644 index cdaa3c27c1..0000000000 --- a/src/net/JNet/Generated/Org/Xml/Sax/AllPackageClasses.cs +++ /dev/null @@ -1,519 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.Xml.Sax -{ - #region Attributes - /// - /// - /// - public partial class Attributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.Attributes"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attributes() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attributes(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ContentHandler - /// - /// - /// - public partial class ContentHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.ContentHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContentHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ContentHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DTDHandler - /// - /// - /// - public partial class DTDHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.DTDHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DTDHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DTDHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DTDHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DTDHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EntityResolver - /// - /// - /// - public partial class EntityResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.EntityResolver"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EntityResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityResolver() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EntityResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityResolver(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ErrorHandler - /// - /// - /// - public partial class ErrorHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.ErrorHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("ErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ErrorHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("ErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public ErrorHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region InputSource - /// - /// - /// - public partial class InputSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.InputSource"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public InputSource() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public InputSource(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Locator - /// - /// - /// - public partial class Locator : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.Locator"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Locator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Locator() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Locator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Locator(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region SAXException - /// - /// - /// - public partial class SAXException : Java.Lang.Exception - { - const string _bridgeClassName = "org.xml.sax.SAXException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SAXNotRecognizedException - /// - /// - /// - public partial class SAXNotRecognizedException : Org.Xml.Sax.SAXException - { - const string _bridgeClassName = "org.xml.sax.SAXNotRecognizedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SAXNotSupportedException - /// - /// - /// - public partial class SAXNotSupportedException : Org.Xml.Sax.SAXException - { - const string _bridgeClassName = "org.xml.sax.SAXNotSupportedException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region SAXParseException - /// - /// - /// - public partial class SAXParseException : Org.Xml.Sax.SAXException - { - const string _bridgeClassName = "org.xml.sax.SAXParseException"; - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - // TODO: complete the class - - } - #endregion - - #region XMLFilter - /// - /// - /// - public partial class XMLFilter : Org.Xml.Sax.XMLReader - { - const string _bridgeClassName = "org.xml.sax.XMLFilter"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLFilter() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLFilter(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLReader - /// - /// - /// - public partial class XMLReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.XMLReader"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("XMLReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLReader() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("XMLReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public XMLReader(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Attributes.cs b/src/net/JNet/Generated/Org/Xml/Sax/Attributes.cs index 6ecb98a6be..3e1c71048c 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Attributes.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Attributes.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region Attributes declaration + /// + /// + /// + public partial class Attributes : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.Attributes"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attributes() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attributes class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attributes(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttributes /// /// .NET interface for TO BE DEFINED FROM USER @@ -116,7 +163,7 @@ public partial interface IAttributes } #endregion - #region Attributes + #region Attributes implementation public partial class Attributes : Org.Xml.Sax.IAttributes { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/ContentHandler.cs b/src/net/JNet/Generated/Org/Xml/Sax/ContentHandler.cs index 98d1b8b817..a8db13c533 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/ContentHandler.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/ContentHandler.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region ContentHandler declaration + /// + /// + /// + public partial class ContentHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.ContentHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContentHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ContentHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ContentHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IContentHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -117,7 +164,7 @@ public partial interface IContentHandler } #endregion - #region ContentHandler + #region ContentHandler implementation public partial class ContentHandler : Org.Xml.Sax.IContentHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/DTDHandler.cs b/src/net/JNet/Generated/Org/Xml/Sax/DTDHandler.cs index daec5473d1..39c7bffc9c 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/DTDHandler.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/DTDHandler.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region DTDHandler declaration + /// + /// + /// + public partial class DTDHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.DTDHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DTDHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DTDHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DTDHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DTDHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDTDHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -60,7 +107,7 @@ public partial interface IDTDHandler } #endregion - #region DTDHandler + #region DTDHandler implementation public partial class DTDHandler : Org.Xml.Sax.IDTDHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/EntityResolver.cs b/src/net/JNet/Generated/Org/Xml/Sax/EntityResolver.cs index 7c0d3b1182..a2b67ff677 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/EntityResolver.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/EntityResolver.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region EntityResolver declaration + /// + /// + /// + public partial class EntityResolver : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.EntityResolver"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EntityResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityResolver() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EntityResolver class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityResolver(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEntityResolver /// /// .NET interface for TO BE DEFINED FROM USER @@ -52,7 +99,7 @@ public partial interface IEntityResolver } #endregion - #region EntityResolver + #region EntityResolver implementation public partial class EntityResolver : Org.Xml.Sax.IEntityResolver { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/ErrorHandler.cs b/src/net/JNet/Generated/Org/Xml/Sax/ErrorHandler.cs index 3f035cfff2..499bb8b42b 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/ErrorHandler.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/ErrorHandler.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region ErrorHandler declaration + /// + /// + /// + public partial class ErrorHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.ErrorHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("ErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ErrorHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("ErrorHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public ErrorHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IErrorHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -61,7 +108,7 @@ public partial interface IErrorHandler } #endregion - #region ErrorHandler + #region ErrorHandler implementation public partial class ErrorHandler : Org.Xml.Sax.IErrorHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/AllPackageClasses.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/AllPackageClasses.cs deleted file mode 100644 index 6c8d535696..0000000000 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/AllPackageClasses.cs +++ /dev/null @@ -1,400 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.Xml.Sax.Ext -{ - #region Attributes2 - /// - /// - /// - public partial class Attributes2 : Org.Xml.Sax.Attributes - { - const string _bridgeClassName = "org.xml.sax.ext.Attributes2"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Attributes2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attributes2() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Attributes2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Attributes2(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Attributes2Impl - /// - /// - /// - public partial class Attributes2Impl : Org.Xml.Sax.Helpers.AttributesImpl - { - const string _bridgeClassName = "org.xml.sax.ext.Attributes2Impl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Attributes2Impl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Attributes2Impl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DeclHandler - /// - /// - /// - public partial class DeclHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.ext.DeclHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("DeclHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DeclHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("DeclHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public DeclHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultHandler2 - /// - /// - /// - public partial class DefaultHandler2 : Org.Xml.Sax.Helpers.DefaultHandler - { - const string _bridgeClassName = "org.xml.sax.ext.DefaultHandler2"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultHandler2() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultHandler2(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region EntityResolver2 - /// - /// - /// - public partial class EntityResolver2 : Org.Xml.Sax.EntityResolver - { - const string _bridgeClassName = "org.xml.sax.ext.EntityResolver2"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("EntityResolver2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityResolver2() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("EntityResolver2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public EntityResolver2(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LexicalHandler - /// - /// - /// - public partial class LexicalHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.ext.LexicalHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("LexicalHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LexicalHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("LexicalHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public LexicalHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Locator2 - /// - /// - /// - public partial class Locator2 : Org.Xml.Sax.Locator - { - const string _bridgeClassName = "org.xml.sax.ext.Locator2"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - [global::System.Obsolete("Locator2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Locator2() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - [global::System.Obsolete("Locator2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] - public Locator2(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => true; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => true; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region Locator2Impl - /// - /// - /// - public partial class Locator2Impl : Org.Xml.Sax.Helpers.LocatorImpl - { - const string _bridgeClassName = "org.xml.sax.ext.Locator2Impl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public Locator2Impl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public Locator2Impl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2.cs index 96323bdef8..3fea3f6814 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax.Ext { + #region Attributes2 declaration + /// + /// + /// + public partial class Attributes2 : Org.Xml.Sax.Attributes + { + const string _bridgeClassName = "org.xml.sax.ext.Attributes2"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Attributes2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attributes2() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Attributes2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Attributes2(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IAttributes2 /// /// .NET interface for TO BE DEFINED FROM USER @@ -81,7 +128,7 @@ public partial interface IAttributes2 : Org.Xml.Sax.IAttributes } #endregion - #region Attributes2 + #region Attributes2 implementation public partial class Attributes2 : Org.Xml.Sax.Ext.IAttributes2 { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2Impl.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2Impl.cs index 2355677a32..211b529469 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2Impl.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Attributes2Impl.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Ext { - #region Attributes2Impl + #region Attributes2Impl declaration + /// + /// + /// + public partial class Attributes2Impl : Org.Xml.Sax.Helpers.AttributesImpl + { + const string _bridgeClassName = "org.xml.sax.ext.Attributes2Impl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Attributes2Impl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Attributes2Impl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Attributes2Impl implementation public partial class Attributes2Impl { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/DeclHandler.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/DeclHandler.cs index b650e2aa8e..d99f891a68 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/DeclHandler.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/DeclHandler.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax.Ext { + #region DeclHandler declaration + /// + /// + /// + public partial class DeclHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.ext.DeclHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("DeclHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DeclHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("DeclHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public DeclHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IDeclHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -75,7 +122,7 @@ public partial interface IDeclHandler } #endregion - #region DeclHandler + #region DeclHandler implementation public partial class DeclHandler : Org.Xml.Sax.Ext.IDeclHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/DefaultHandler2.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/DefaultHandler2.cs index aed396422a..4831a30785 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/DefaultHandler2.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/DefaultHandler2.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Ext { - #region DefaultHandler2 + #region DefaultHandler2 declaration + /// + /// + /// + public partial class DefaultHandler2 : Org.Xml.Sax.Helpers.DefaultHandler + { + const string _bridgeClassName = "org.xml.sax.ext.DefaultHandler2"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultHandler2() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultHandler2(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultHandler2 implementation public partial class DefaultHandler2 { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/EntityResolver2.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/EntityResolver2.cs index 006061d760..efcabd030a 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/EntityResolver2.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/EntityResolver2.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax.Ext { + #region EntityResolver2 declaration + /// + /// + /// + public partial class EntityResolver2 : Org.Xml.Sax.EntityResolver + { + const string _bridgeClassName = "org.xml.sax.ext.EntityResolver2"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("EntityResolver2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityResolver2() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("EntityResolver2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public EntityResolver2(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IEntityResolver2 /// /// .NET interface for TO BE DEFINED FROM USER @@ -63,7 +110,7 @@ public partial interface IEntityResolver2 : Org.Xml.Sax.IEntityResolver } #endregion - #region EntityResolver2 + #region EntityResolver2 implementation public partial class EntityResolver2 : Org.Xml.Sax.Ext.IEntityResolver2 { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/LexicalHandler.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/LexicalHandler.cs index 4bd1ebd11a..f1524986ab 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/LexicalHandler.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/LexicalHandler.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax.Ext { + #region LexicalHandler declaration + /// + /// + /// + public partial class LexicalHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.ext.LexicalHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("LexicalHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LexicalHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("LexicalHandler class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public LexicalHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILexicalHandler /// /// .NET interface for TO BE DEFINED FROM USER @@ -86,7 +133,7 @@ public partial interface ILexicalHandler } #endregion - #region LexicalHandler + #region LexicalHandler implementation public partial class LexicalHandler : Org.Xml.Sax.Ext.ILexicalHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2.cs index 32bc1274c9..39dbd7a25a 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax.Ext { + #region Locator2 declaration + /// + /// + /// + public partial class Locator2 : Org.Xml.Sax.Locator + { + const string _bridgeClassName = "org.xml.sax.ext.Locator2"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Locator2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Locator2() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Locator2 class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Locator2(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILocator2 /// /// .NET interface for TO BE DEFINED FROM USER @@ -51,7 +98,7 @@ public partial interface ILocator2 : Org.Xml.Sax.ILocator } #endregion - #region Locator2 + #region Locator2 implementation public partial class Locator2 : Org.Xml.Sax.Ext.ILocator2 { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2Impl.cs b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2Impl.cs index ed799cf072..dbdf26f378 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2Impl.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Ext/Locator2Impl.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Ext { - #region Locator2Impl + #region Locator2Impl declaration + /// + /// + /// + public partial class Locator2Impl : Org.Xml.Sax.Helpers.LocatorImpl + { + const string _bridgeClassName = "org.xml.sax.ext.Locator2Impl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public Locator2Impl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public Locator2Impl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region Locator2Impl implementation public partial class Locator2Impl { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AllPackageClasses.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AllPackageClasses.cs deleted file mode 100644 index fb759002ac..0000000000 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AllPackageClasses.cs +++ /dev/null @@ -1,389 +0,0 @@ -/* -* Copyright 2024 MASES s.r.l. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -* Refer to LICENSE for more information. -*/ - -/* -* This file is generated by MASES.JNetReflector (ver. 2.5.8.0) -* using java.* as reference -*/ - -using MASES.JCOBridge.C2JBridge.JVMInterop; -using System; - -namespace Org.Xml.Sax.Helpers -{ - #region AttributesImpl - /// - /// - /// - public partial class AttributesImpl : Org.Xml.Sax.Attributes - { - const string _bridgeClassName = "org.xml.sax.helpers.AttributesImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public AttributesImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public AttributesImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region DefaultHandler - /// - /// - /// - public partial class DefaultHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.helpers.DefaultHandler"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public DefaultHandler() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public DefaultHandler(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region LocatorImpl - /// - /// - /// - public partial class LocatorImpl : Org.Xml.Sax.Locator - { - const string _bridgeClassName = "org.xml.sax.helpers.LocatorImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public LocatorImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public LocatorImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region NamespaceSupport - /// - /// - /// - public partial class NamespaceSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.helpers.NamespaceSupport"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public NamespaceSupport() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public NamespaceSupport(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region ParserAdapter - /// - /// - /// - public partial class ParserAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public ParserAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.org.xml.sax.helpers.ParserAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region ParserAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class ParserAdapterDirect : ParserAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "org.xml.sax.helpers.ParserAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - #region XMLFilterImpl - /// - /// - /// - public partial class XMLFilterImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase - { - const string _bridgeClassName = "org.xml.sax.helpers.XMLFilterImpl"; - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XMLFilterImpl() { } - /// - /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class - /// - public XMLFilterImpl(params object[] args) : base(args) { } - - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - - // TODO: complete the class - - } - #endregion - - #region XMLReaderAdapter - /// - /// - /// - public partial class XMLReaderAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener - { - /// - /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge - /// - public XMLReaderAdapter() { InitializeHandlers(); } - - const string _bridgeClassName = "org.mases.jnet.generated.org.xml.sax.helpers.XMLReaderAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - - - // TODO: complete the class - - } - #endregion - - #region XMLReaderAdapterDirect - /// - /// Direct override of or its generic type if there is one - /// - public partial class XMLReaderAdapterDirect : XMLReaderAdapter - { - /// - /// - /// - public override bool AutoInit => false; - - /// - protected override void InitializeHandlers() { } - - const string _bridgeClassName = "org.xml.sax.helpers.XMLReaderAdapter"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); - - /// - /// - /// - public override string BridgeClassName => _bridgeClassName; - /// - /// - /// - public override bool IsBridgeAbstract => false; - /// - /// - /// - public override bool IsBridgeCloseable => false; - /// - /// - /// - public override bool IsBridgeInterface => false; - /// - /// - /// - public override bool IsBridgeStatic => false; - } - #endregion - - -} \ No newline at end of file diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AttributesImpl.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AttributesImpl.cs index 0bf5c28d90..548b35c94c 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AttributesImpl.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/AttributesImpl.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Helpers { - #region AttributesImpl + #region AttributesImpl declaration + /// + /// + /// + public partial class AttributesImpl : Org.Xml.Sax.Attributes + { + const string _bridgeClassName = "org.xml.sax.helpers.AttributesImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public AttributesImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public AttributesImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region AttributesImpl implementation public partial class AttributesImpl { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/DefaultHandler.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/DefaultHandler.cs index 1a065bba74..27d2031625 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/DefaultHandler.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/DefaultHandler.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Helpers { - #region DefaultHandler + #region DefaultHandler declaration + /// + /// + /// + public partial class DefaultHandler : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.helpers.DefaultHandler"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public DefaultHandler() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public DefaultHandler(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region DefaultHandler implementation public partial class DefaultHandler { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/LocatorImpl.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/LocatorImpl.cs index 86490711a6..fe9fa5ac93 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/LocatorImpl.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/LocatorImpl.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Helpers { - #region LocatorImpl + #region LocatorImpl declaration + /// + /// + /// + public partial class LocatorImpl : Org.Xml.Sax.Locator + { + const string _bridgeClassName = "org.xml.sax.helpers.LocatorImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public LocatorImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public LocatorImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region LocatorImpl implementation public partial class LocatorImpl { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/NamespaceSupport.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/NamespaceSupport.cs index 54688a7176..ed47888a22 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/NamespaceSupport.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/NamespaceSupport.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Helpers { - #region NamespaceSupport + #region NamespaceSupport declaration + /// + /// + /// + public partial class NamespaceSupport : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.helpers.NamespaceSupport"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public NamespaceSupport() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public NamespaceSupport(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region NamespaceSupport implementation public partial class NamespaceSupport { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/ParserAdapter.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/ParserAdapter.cs index d61fc77980..7749f4aec2 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/ParserAdapter.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/ParserAdapter.cs @@ -25,7 +25,74 @@ namespace Org.Xml.Sax.Helpers { - #region ParserAdapter + #region ParserAdapter declaration + /// + /// + /// + public partial class ParserAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public ParserAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.org.xml.sax.helpers.ParserAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region ParserAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class ParserAdapterDirect : ParserAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "org.xml.sax.helpers.ParserAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region ParserAdapter implementation public partial class ParserAdapter { #region Constructors @@ -556,7 +623,7 @@ public virtual void StartDocument() } #endregion - #region ParserAdapterDirect + #region ParserAdapterDirect implementation public partial class ParserAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLFilterImpl.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLFilterImpl.cs index 78b2e4bdde..61ff428269 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLFilterImpl.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLFilterImpl.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax.Helpers { - #region XMLFilterImpl + #region XMLFilterImpl declaration + /// + /// + /// + public partial class XMLFilterImpl : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.helpers.XMLFilterImpl"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XMLFilterImpl() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public XMLFilterImpl(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region XMLFilterImpl implementation public partial class XMLFilterImpl { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLReaderAdapter.cs b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLReaderAdapter.cs index d50774c714..85ebd9b02f 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLReaderAdapter.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Helpers/XMLReaderAdapter.cs @@ -25,7 +25,74 @@ namespace Org.Xml.Sax.Helpers { - #region XMLReaderAdapter + #region XMLReaderAdapter declaration + /// + /// + /// + public partial class XMLReaderAdapter : MASES.JCOBridge.C2JBridge.JVMBridgeListener + { + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public XMLReaderAdapter() { InitializeHandlers(); } + + const string _bridgeClassName = "org.mases.jnet.generated.org.xml.sax.helpers.XMLReaderAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + + // TODO: complete the class + + } + #endregion + + #region XMLReaderAdapterDirect declaration + /// + /// Direct override of or its generic type if there is one + /// + public partial class XMLReaderAdapterDirect : XMLReaderAdapter + { + /// + /// + /// + public override bool AutoInit => false; + + /// + protected override void InitializeHandlers() { } + + const string _bridgeClassName = "org.xml.sax.helpers.XMLReaderAdapter"; + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + } + #endregion + + #region XMLReaderAdapter implementation public partial class XMLReaderAdapter { #region Constructors @@ -459,7 +526,7 @@ public virtual void StartPrefixMapping(Java.Lang.String arg0, Java.Lang.String a } #endregion - #region XMLReaderAdapterDirect + #region XMLReaderAdapterDirect implementation public partial class XMLReaderAdapterDirect { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/InputSource.cs b/src/net/JNet/Generated/Org/Xml/Sax/InputSource.cs index 1fc98d2d53..7a37d0d6fb 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/InputSource.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/InputSource.cs @@ -25,7 +25,52 @@ namespace Org.Xml.Sax { - #region InputSource + #region InputSource declaration + /// + /// + /// + public partial class InputSource : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.InputSource"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + public InputSource() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + public InputSource(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => false; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => false; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + + #region InputSource implementation public partial class InputSource { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/Locator.cs b/src/net/JNet/Generated/Org/Xml/Sax/Locator.cs index c25284f138..13bb6ee6eb 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/Locator.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/Locator.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region Locator declaration + /// + /// + /// + public partial class Locator : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.Locator"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("Locator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Locator() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("Locator class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public Locator(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region ILocator /// /// .NET interface for TO BE DEFINED FROM USER @@ -59,7 +106,7 @@ public partial interface ILocator } #endregion - #region Locator + #region Locator implementation public partial class Locator : Org.Xml.Sax.ILocator { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/SAXException.cs b/src/net/JNet/Generated/Org/Xml/Sax/SAXException.cs index 051e4b8eaa..05c48c3fc2 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/SAXException.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/SAXException.cs @@ -25,7 +25,24 @@ namespace Org.Xml.Sax { - #region SAXException + #region SAXException declaration + /// + /// + /// + public partial class SAXException : Java.Lang.Exception + { + const string _bridgeClassName = "org.xml.sax.SAXException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SAXException implementation public partial class SAXException { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/SAXNotRecognizedException.cs b/src/net/JNet/Generated/Org/Xml/Sax/SAXNotRecognizedException.cs index 02baee2876..3dc272373d 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/SAXNotRecognizedException.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/SAXNotRecognizedException.cs @@ -25,7 +25,24 @@ namespace Org.Xml.Sax { - #region SAXNotRecognizedException + #region SAXNotRecognizedException declaration + /// + /// + /// + public partial class SAXNotRecognizedException : Org.Xml.Sax.SAXException + { + const string _bridgeClassName = "org.xml.sax.SAXNotRecognizedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SAXNotRecognizedException implementation public partial class SAXNotRecognizedException { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/SAXNotSupportedException.cs b/src/net/JNet/Generated/Org/Xml/Sax/SAXNotSupportedException.cs index 2c7f8b3ea0..e7aec0da24 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/SAXNotSupportedException.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/SAXNotSupportedException.cs @@ -25,7 +25,24 @@ namespace Org.Xml.Sax { - #region SAXNotSupportedException + #region SAXNotSupportedException declaration + /// + /// + /// + public partial class SAXNotSupportedException : Org.Xml.Sax.SAXException + { + const string _bridgeClassName = "org.xml.sax.SAXNotSupportedException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SAXNotSupportedException implementation public partial class SAXNotSupportedException { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/SAXParseException.cs b/src/net/JNet/Generated/Org/Xml/Sax/SAXParseException.cs index 10f0efcfaf..e6950dcf49 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/SAXParseException.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/SAXParseException.cs @@ -25,7 +25,24 @@ namespace Org.Xml.Sax { - #region SAXParseException + #region SAXParseException declaration + /// + /// + /// + public partial class SAXParseException : Org.Xml.Sax.SAXException + { + const string _bridgeClassName = "org.xml.sax.SAXParseException"; + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + + // TODO: complete the class + + } + #endregion + + #region SAXParseException implementation public partial class SAXParseException { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/XMLFilter.cs b/src/net/JNet/Generated/Org/Xml/Sax/XMLFilter.cs index 58b710c99f..06a1f3e74e 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/XMLFilter.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/XMLFilter.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region XMLFilter declaration + /// + /// + /// + public partial class XMLFilter : Org.Xml.Sax.XMLReader + { + const string _bridgeClassName = "org.xml.sax.XMLFilter"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLFilter() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLFilter class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLFilter(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLFilter /// /// .NET interface for TO BE DEFINED FROM USER @@ -47,7 +94,7 @@ public partial interface IXMLFilter : Org.Xml.Sax.IXMLReader } #endregion - #region XMLFilter + #region XMLFilter implementation public partial class XMLFilter : Org.Xml.Sax.IXMLFilter { #region Constructors diff --git a/src/net/JNet/Generated/Org/Xml/Sax/XMLReader.cs b/src/net/JNet/Generated/Org/Xml/Sax/XMLReader.cs index fb7af144fb..cf018318f1 100644 --- a/src/net/JNet/Generated/Org/Xml/Sax/XMLReader.cs +++ b/src/net/JNet/Generated/Org/Xml/Sax/XMLReader.cs @@ -25,6 +25,53 @@ namespace Org.Xml.Sax { + #region XMLReader declaration + /// + /// + /// + public partial class XMLReader : MASES.JCOBridge.C2JBridge.JVMBridgeBase + { + const string _bridgeClassName = "org.xml.sax.XMLReader"; + /// + /// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge + /// + [global::System.Obsolete("XMLReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLReader() { } + /// + /// Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class + /// + [global::System.Obsolete("XMLReader class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] + public XMLReader(params object[] args) : base(args) { } + + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); + + /// + /// + /// + public override string BridgeClassName => _bridgeClassName; + /// + /// + /// + public override bool IsBridgeAbstract => true; + /// + /// + /// + public override bool IsBridgeCloseable => false; + /// + /// + /// + public override bool IsBridgeInterface => true; + /// + /// + /// + public override bool IsBridgeStatic => false; + + // TODO: complete the class + + } + #endregion + #region IXMLReader /// /// .NET interface for TO BE DEFINED FROM USER @@ -105,7 +152,7 @@ public partial interface IXMLReader } #endregion - #region XMLReader + #region XMLReader implementation public partial class XMLReader : Org.Xml.Sax.IXMLReader { #region Constructors diff --git a/src/net/JNet/JNet.csproj b/src/net/JNet/JNet.csproj index 4d132f719e..a2fd9d775c 100644 --- a/src/net/JNet/JNet.csproj +++ b/src/net/JNet/JNet.csproj @@ -7,7 +7,7 @@ Java/JVM suite for .NET - a comprehensive suite of libraries and tools to use Java/JVM APIs (Java, Scala, Kotlin, ...) and .NET side-by-side JNet ..\..\..\bin\ - jnet dotnet clr jvm dotnetcore netcore dotnet6 net6 java bridge gateway + jnet dotnet clr jvm dotnetcore netcore dotnet6 net6 dotnet8 net8 java bridge gateway MASES.JNet usage.md true @@ -18,13 +18,13 @@ $(DefineConstants);JNET_SIMPLIFIED_GENERATION - + - + - + @@ -42,7 +42,7 @@ - + diff --git a/src/net/JNet/JNetCoreBase.cs b/src/net/JNet/JNetCoreBase.cs index aa44553254..5d6faccd0b 100644 --- a/src/net/JNet/JNetCoreBase.cs +++ b/src/net/JNet/JNetCoreBase.cs @@ -159,6 +159,7 @@ public abstract class JNetCoreBase : SetupJVMWrapper where T : JNetCoreBas /// public JNetCoreBase() { + JCOBridge.C2JBridge.JCOBridge.RegisterExceptions(typeof(JNetCoreBase<>).Assembly); } /// /// @@ -241,7 +242,7 @@ string buildClassPath() return classPath; } -#endregion + #endregion #region Auxiliary Methods /// @@ -330,6 +331,6 @@ public static dynamic New(string className, params object[] args) throw new ArgumentException($"{type} does not define any IJVMBridgeMain type or interface", "type"); } -#endregion + #endregion } } \ No newline at end of file diff --git a/src/net/JNetReflector/InternalMethods.cs b/src/net/JNetReflector/InternalMethods.cs index 27f16ec5d9..d0d1b801f6 100644 --- a/src/net/JNetReflector/InternalMethods.cs +++ b/src/net/JNetReflector/InternalMethods.cs @@ -335,7 +335,7 @@ static void AnalyzeSubItems(string package, IDictionary classDef allClassBlock.Append(classGenericBlock); } - var singleFileBlockStr = singleFileBlock.ToString(); + allClassBlock.AppendLine(); + allClassBlock.AppendLine(); + allClassBlock.Append(singleFileBlock.ToString()); + var singleFileBlockStr = allClassBlock.ToString(); if (!string.IsNullOrWhiteSpace(singleFileBlockStr)) { var singleClassFileTemplate = Template.GetTemplate(Template.SingleClassFileTemplate); diff --git a/src/net/JNetReflector/JNetReflector.csproj b/src/net/JNetReflector/JNetReflector.csproj index 166a3dbf4a..7ef25b25a1 100644 --- a/src/net/JNetReflector/JNetReflector.csproj +++ b/src/net/JNetReflector/JNetReflector.csproj @@ -54,7 +54,6 @@ - diff --git a/src/net/JNetReflector/Templates/AllPackageClassesStubClass.template b/src/net/JNetReflector/Templates/AllPackageClassesStubClass.template index 01a7bd751f..83948d556d 100644 --- a/src/net/JNetReflector/Templates/AllPackageClassesStubClass.template +++ b/src/net/JNetReflector/Templates/AllPackageClassesStubClass.template @@ -1,4 +1,4 @@ -#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER declaration ALLPACKAGE_CLASSES_STUB_CLASS_DECORATION_PLACEHOLDER public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER : ALLPACKAGE_CLASSES_STUB_BASECLASS_PLACEHOLDERALLPACKAGE_CLASSES_STUB_WHERECLAUSES_PLACEHOLDER { @@ -12,8 +12,8 @@ public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER : ALLPACKAGE_CLAS /// public ALLPACKAGE_CLASSES_STUB_SIMPLECLASS_PLACEHOLDER(params object[] args) : base(args) { } - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); /// /// diff --git a/src/net/JNetReflector/Templates/AllPackageClassesStubClassInterfaceOrAbstract.template b/src/net/JNetReflector/Templates/AllPackageClassesStubClassInterfaceOrAbstract.template index a5f9bd84a3..cb0ecc13f6 100644 --- a/src/net/JNetReflector/Templates/AllPackageClassesStubClassInterfaceOrAbstract.template +++ b/src/net/JNetReflector/Templates/AllPackageClassesStubClassInterfaceOrAbstract.template @@ -1,4 +1,4 @@ -#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER declaration ALLPACKAGE_CLASSES_STUB_CLASS_DECORATION_PLACEHOLDER public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER : ALLPACKAGE_CLASSES_STUB_BASECLASS_PLACEHOLDERALLPACKAGE_CLASSES_STUB_WHERECLAUSES_PLACEHOLDER { @@ -14,8 +14,8 @@ public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER : ALLPACKAGE_CLAS [global::System.Obsolete("ALLPACKAGE_CLASSES_STUB_SIMPLECLASS_PLACEHOLDER class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")] public ALLPACKAGE_CLASSES_STUB_SIMPLECLASS_PLACEHOLDER(params object[] args) : base(args) { } - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); /// /// diff --git a/src/net/JNetReflector/Templates/AllPackageClassesStubClassListener.template b/src/net/JNetReflector/Templates/AllPackageClassesStubClassListener.template index 2cda9caf65..fc08317696 100644 --- a/src/net/JNetReflector/Templates/AllPackageClassesStubClassListener.template +++ b/src/net/JNetReflector/Templates/AllPackageClassesStubClassListener.template @@ -1,4 +1,4 @@ -#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER declaration ALLPACKAGE_CLASSES_STUB_CLASS_DECORATION_PLACEHOLDER public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER : ALLPACKAGE_CLASSES_STUB_BASECLASS_PLACEHOLDER { @@ -14,7 +14,7 @@ ALLPACKAGE_CLASSES_STUB_LISTENER_CLASS_PLACEHOLDER } #endregion -#region ALLPACKAGE_CLASSES_STUB_CLASS_DIRECT_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_DIRECT_PLACEHOLDER declaration /// /// Direct override of or its generic type if there is one /// @@ -29,8 +29,8 @@ public partial class ALLPACKAGE_CLASSES_STUB_CLASS_DIRECT_PLACEHOLDER : ALLPACKA protected override void InitializeHandlers() { } const string _bridgeClassName = "ALLPACKAGE_CLASSES_STUB_JAVACLASS_DIRECT_PLACEHOLDER"; - private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName); - private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($"Class {_bridgeClassName} was not found."); + private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = JVMBridgeBase.ClazzOf(_bridgeClassName); + private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($"Class {_bridgeClassName} was not found."); /// /// diff --git a/src/net/JNetReflector/Templates/AllPackageClassesStubClassMainClass.template b/src/net/JNetReflector/Templates/AllPackageClassesStubClassMainClass.template index d0b6a1f2ac..064a14e788 100644 --- a/src/net/JNetReflector/Templates/AllPackageClassesStubClassMainClass.template +++ b/src/net/JNetReflector/Templates/AllPackageClassesStubClassMainClass.template @@ -1,4 +1,4 @@ -#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER declaration /// /// ALLPACKAGE_CLASSES_STUB_CLASS_HELP_PLACEHOLDER /// diff --git a/src/net/JNetReflector/Templates/AllPackageClassesStubException.template b/src/net/JNetReflector/Templates/AllPackageClassesStubException.template index 5069a439f4..bd4e060afc 100644 --- a/src/net/JNetReflector/Templates/AllPackageClassesStubException.template +++ b/src/net/JNetReflector/Templates/AllPackageClassesStubException.template @@ -1,4 +1,4 @@ -#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER declaration ALLPACKAGE_CLASSES_STUB_CLASS_DECORATION_PLACEHOLDER public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER : ALLPACKAGE_CLASSES_STUB_BASECLASS_PLACEHOLDER { diff --git a/src/net/JNetReflector/Templates/SingleClass.template b/src/net/JNetReflector/Templates/SingleClass.template index f2042a2d58..9c92b3985f 100644 --- a/src/net/JNetReflector/Templates/SingleClass.template +++ b/src/net/JNetReflector/Templates/SingleClass.template @@ -1,4 +1,4 @@ -#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER +#region ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDER implementation public partial class ALLPACKAGE_CLASSES_STUB_CLASS_PLACEHOLDERALLPACKAGE_CLASSES_STUB_CLASS_INTERFACE_PLACEHOLDER { #region Constructors diff --git a/src/net/JNetReflector/Templates/Templates.cs b/src/net/JNetReflector/Templates/Templates.cs index 86bf222056..3461db9ec9 100644 --- a/src/net/JNetReflector/Templates/Templates.cs +++ b/src/net/JNetReflector/Templates/Templates.cs @@ -157,8 +157,8 @@ public class ClassStub public const string LISTENER_CLASS_WARNING = "#warning Remember to build the Java class for event listener"; public static string LISTENER_CLASS_BLOCK = " const string _bridgeClassName = \"ALLPACKAGE_CLASSES_STUB_JAVACLASS_PLACEHOLDER\";" + Environment.NewLine - + " private static readonly IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName);" + Environment.NewLine - + " private static IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new InvalidOperationException($\"Class {_bridgeClassName} was not found.\");" + Environment.NewLine + + " private static readonly MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType _LocalBridgeClazz = ClazzOf(_bridgeClassName);" + Environment.NewLine + + " private static MASES.JCOBridge.C2JBridge.JVMInterop.IJavaType LocalBridgeClazz => _LocalBridgeClazz ?? throw new global::System.InvalidOperationException($\"Class {_bridgeClassName} was not found.\");" + Environment.NewLine + " " + Environment.NewLine + " /// " + Environment.NewLine + " /// " + Environment.NewLine